Resizable Sidebar - Resize your sidebar with mouse dragging!

Add a draggable border to the left edge of the sidebar, which will be visible when the mouse is moved to the left edge.

Dragging the border will change the width of the sidebar, and it will automatically close the sidebar when dragged near the right edge of the window.

SidebarResizerDemo

> View and Install here <


Update Description

v0.0.2

  • The sidebar can now be retracted by double-clicking on the border.
  • Fix the problem that other text or elements may be selected when dragging.
  • Add support for touch screen and stylus.

v0.0.3

  • Fix the problem that dragging still selects text under Firefox browser.
10 Likes

Nicely done.

A few observations for improvements from my own work in the same area:

  • you can avoid having text be selected when dragging by calling preventDefault or using pointer capture
    • this can also help with avoiding triggering accidental imports
  • I found it useful to have an option to double click the drag bar to hide the sidebar.

Thanks! I will try it in the next version.

@saqimtiaz These features have been added in v0.0.2 :tada:

Years! Years we have all been waiting for this! Thank you!

3 Likes

@Sttot this is very “shmick”, Its much better than my earlier sidebar width tool that used a modal and a range widget.

It is great,

Some feedback,
A key reason for me to use this tool is to respond to the size of content in the sidebar, how I have just discovered it runs out in the place I am most likely to need it. See the following image the blue is the draggable zone the red arrow is where I wanted it.

Ideally it would extend as far as the sidebar reaches (a variable height)

Thanks for considering this.

@TW_Tones Thank you, but I can’t find the “follow image” you said. It will be better if you upload a screenshot.

@TW_Tones It looks like a CSS layout issue. Because the CSS for this border itself is set to run from the top of the screen to the bottom of the screen:

div#gk0wk-sidebar-resize-area {
	height: 100vh;
	width: 10px;
	position: absolute;
	top: 0;
	left: -5px;
}

I’m not sure if it’s because your Wiki contains custom styles that cause the borders to be offset upwards, or if it’s a general styling issue. Would it be possible to send an empty template of the Wiki with your current style? I will debug based on this Wiki file. Thanks!

No worries, I assumed it was that way out of the box. The wiki it tried it on is a long used multi purpose wiki, no need to fix that, it is just as I want it thanks. It it works elsewhere.

1 Like

I would like to draw to others attention that there are a range of other plugins such as sidebar editors and maps that display in the side bar, I personally do not use because the sidebar is not the best of place to be. This easy resizing of the side bar makes these much more useful. If this were to find its way into the core UI someday, it would perhaps need the possibility to toggle off, but it makes sense to me.

Lovely work

1 Like

Very neat! Just FYI, no criticism, it is not ideal when you are only “touchscreen”. I tried it on a Windows 10 with mouse and it is fine. Using touch on that same platform it is a bit “juddery” and difficult to control.

TBH, not being a technical man, I’m not so sure how solvable that behaviour is??

(Side note: I think it is just a fact that mouse and touchscreen are not yet so well harmonised. It is unfortunate in that many users are now as much touchers as mousers.)

Just a comment
TT

I experimented on top of my iPad and concluded that dragging is feasible once you can press the edge. But unfortunately, there is no way to press on the edge most of the time.

I think the reason is that “one index finger” is much bigger than “5px”. But should I keep increasing the width of the edge? What’s a better way to do it? I’m not sure.

1 Like

Can you consider an OCD feature – Set the sidebar width value to an integer (maybe two decimal places) ? :frowning_face:

Thanks.

1 Like

I am not a tech. But maybe know that the narrowest touch-width of my little finger is 4mm and that is 15px? Might be a clue? Dunno.

Just a thought
TT

It might be worth debouncing the mousemove event using requestAnimationFrame() to see if that helps with the judder.

2 Likes

I just tried using your resizeable sidebar on Stroll and it works great. Really opens up new possibilities with Stroll.

I wonder what adjacent-possible insights and uses this might open up for my old Customizer plugin, that allows significant customization of the sidebar? (CustomizerPlugin — Reimagining TiddlyWiki)

I haven’t used the requestAnimationFrame() function, how can I use this function to fine-tune the mousemove event? Thanks!

@Sttot

I went to TiddlySeq Theme — Logseq-like TiddlyWiki Template
just to try it it out. As soon as I grab the border and pull to the right I get this. Dragging to left seems to works without problem.

1 Like

It seems like the issue come from the “MyPluginsMap” tab in the sidenav, when I switch to another tab the error popup doesnt appear while resizing.

I tried to fix this issue in 0.0.4.

Assuming that is the version in the demo link, i.e TiddlySeq Theme — Logseq-like TiddlyWiki Template then I still get the same error message in Chrome (and Brave), but it works in FF.