querymx / querym

Querym is free, open-source and cross-platform MySQL and PostgreSQL GUI client.
https://querym.net/
GNU General Public License v3.0
94 stars 28 forks source link

Tab should be draggable #7

Closed invisal closed 1 year ago

invisal commented 1 year ago

Currently, our tab does is not draggable to re-arrange its position. We can make it draggable like in Visual Studio Code as attached video.

https://github.com/invisal/query-master/assets/4539653/53704848-f12c-4df5-ad3a-f1a918e91732

Where to implement it?

The tab component is located in this files. https://github.com/invisal/query-master/blob/main/src/renderer/components/WindowTab/index.tsx

We can add drag functionality in this place. We can expose two more properties:

<WindowTab
   onTabChanged={setTab}
   draggable
 />