joplin-plugin-explorer 1.1.3 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +66 -66
- package/package.json +26 -26
- package/publish/index.js +1 -636
- package/publish/manifest.json +18 -18
- package/publish/plugin.jpl +0 -0
- package/publish/webview/panel.css +176 -8
- package/publish/webview/panel.js +1 -507
package/README.md
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
# Joplin Explorer
|
|
2
|
-
|
|
3
|
-
A unified sidebar plugin for [Joplin](https://joplinapp.org/) that displays notebooks and notes together in a single tree view — like a file explorer.
|
|
4
|
-
|
|
5
|
-
[中文说明](README-CN.md)
|
|
6
|
-
|
|
7
|
-
## Screenshot
|
|
8
|
-
|
|
9
|
-
> TODO: Add screenshot
|
|
10
|
-
|
|
11
|
-
## Features
|
|
12
|
-
|
|
13
|
-
- **Unified Tree View** — Notebooks and notes displayed in one collapsible panel
|
|
14
|
-
- **Custom Icons** — Shows emoji icons set in notebook settings
|
|
15
|
-
- **Search** — Real-time filter to quickly find notes by title
|
|
16
|
-
- **Sort** — Toggle between sorting by update time or title (ascending/descending)
|
|
17
|
-
- **Context Menus**
|
|
18
|
-
- Notebooks: new note, new to-do, new sub-notebook, rename, export, delete
|
|
19
|
-
- Notes: open, open in new window, copy Markdown link, duplicate, switch note/to-do type, toggle completed, rename, move to notebook, view properties, delete
|
|
20
|
-
- **Drag & Drop** — Move notes between notebooks, reorganize folder hierarchy
|
|
21
|
-
- **Sync Button** — Trigger synchronization with status feedback (syncing → done)
|
|
22
|
-
- **Auto Expand** — Automatically expands to the currently selected note on startup
|
|
23
|
-
- **Collapse All** — One-click collapse all notebooks
|
|
24
|
-
- **Scroll Position** — Preserved when navigating between notes
|
|
25
|
-
- **i18n** — Supports Simplified Chinese, Traditional Chinese, and English (follows Joplin's locale setting)
|
|
26
|
-
|
|
27
|
-
## Install
|
|
28
|
-
|
|
29
|
-
### From File
|
|
30
|
-
|
|
31
|
-
1. Download `joplin-explorer.jpl` from the [latest release](https://github.com/lim0513/joplin-explorer/releases/latest)
|
|
32
|
-
2. In Joplin, go to **Tools → Options → Plugins**
|
|
33
|
-
3. Click the gear icon and select **Install from file**
|
|
34
|
-
4. Choose the downloaded `.jpl` file
|
|
35
|
-
5. Restart Joplin
|
|
36
|
-
|
|
37
|
-
## Usage
|
|
38
|
-
|
|
39
|
-
After installation, the Explorer panel appears on the side of the editor. You can:
|
|
40
|
-
|
|
41
|
-
- **Click** a notebook to expand/collapse it
|
|
42
|
-
- **Click** a note to open it
|
|
43
|
-
- **Right-click** for context menu actions
|
|
44
|
-
- **Drag** notes or notebooks to reorganize them
|
|
45
|
-
- Use the **toolbar** at the top for quick actions (new notebook/note/to-do, sort, collapse all)
|
|
46
|
-
- Use the **search bar** to filter notes by title
|
|
47
|
-
- Click **Sync** at the bottom to trigger synchronization
|
|
48
|
-
|
|
49
|
-
## Development
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
# Install dependencies
|
|
53
|
-
npm install
|
|
54
|
-
|
|
55
|
-
# Build
|
|
56
|
-
npm run dist
|
|
57
|
-
|
|
58
|
-
# Watch mode
|
|
59
|
-
npm run dev
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
The built plugin is output to the `publish/` directory. To test locally, set `plugins.devPluginPaths` in Joplin's settings to point to the `publish/` directory.
|
|
63
|
-
|
|
64
|
-
## License
|
|
65
|
-
|
|
66
|
-
MIT
|
|
1
|
+
# Joplin Explorer
|
|
2
|
+
|
|
3
|
+
A unified sidebar plugin for [Joplin](https://joplinapp.org/) that displays notebooks and notes together in a single tree view — like a file explorer.
|
|
4
|
+
|
|
5
|
+
[中文说明](README-CN.md)
|
|
6
|
+
|
|
7
|
+
## Screenshot
|
|
8
|
+
|
|
9
|
+
> TODO: Add screenshot
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- **Unified Tree View** — Notebooks and notes displayed in one collapsible panel
|
|
14
|
+
- **Custom Icons** — Shows emoji icons set in notebook settings
|
|
15
|
+
- **Search** — Real-time filter to quickly find notes by title
|
|
16
|
+
- **Sort** — Toggle between sorting by update time or title (ascending/descending)
|
|
17
|
+
- **Context Menus**
|
|
18
|
+
- Notebooks: new note, new to-do, new sub-notebook, rename, export, delete
|
|
19
|
+
- Notes: open, open in new window, copy Markdown link, duplicate, switch note/to-do type, toggle completed, rename, move to notebook, view properties, delete
|
|
20
|
+
- **Drag & Drop** — Move notes between notebooks, reorganize folder hierarchy
|
|
21
|
+
- **Sync Button** — Trigger synchronization with status feedback (syncing → done)
|
|
22
|
+
- **Auto Expand** — Automatically expands to the currently selected note on startup
|
|
23
|
+
- **Collapse All** — One-click collapse all notebooks
|
|
24
|
+
- **Scroll Position** — Preserved when navigating between notes
|
|
25
|
+
- **i18n** — Supports Simplified Chinese, Traditional Chinese, and English (follows Joplin's locale setting)
|
|
26
|
+
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
### From File
|
|
30
|
+
|
|
31
|
+
1. Download `joplin-explorer.jpl` from the [latest release](https://github.com/lim0513/joplin-explorer/releases/latest)
|
|
32
|
+
2. In Joplin, go to **Tools → Options → Plugins**
|
|
33
|
+
3. Click the gear icon and select **Install from file**
|
|
34
|
+
4. Choose the downloaded `.jpl` file
|
|
35
|
+
5. Restart Joplin
|
|
36
|
+
|
|
37
|
+
## Usage
|
|
38
|
+
|
|
39
|
+
After installation, the Explorer panel appears on the side of the editor. You can:
|
|
40
|
+
|
|
41
|
+
- **Click** a notebook to expand/collapse it
|
|
42
|
+
- **Click** a note to open it
|
|
43
|
+
- **Right-click** for context menu actions
|
|
44
|
+
- **Drag** notes or notebooks to reorganize them
|
|
45
|
+
- Use the **toolbar** at the top for quick actions (new notebook/note/to-do, sort, collapse all)
|
|
46
|
+
- Use the **search bar** to filter notes by title
|
|
47
|
+
- Click **Sync** at the bottom to trigger synchronization
|
|
48
|
+
|
|
49
|
+
## Development
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
# Install dependencies
|
|
53
|
+
npm install
|
|
54
|
+
|
|
55
|
+
# Build
|
|
56
|
+
npm run dist
|
|
57
|
+
|
|
58
|
+
# Watch mode
|
|
59
|
+
npm run dev
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
The built plugin is output to the `publish/` directory. To test locally, set `plugins.devPluginPaths` in Joplin's settings to point to the `publish/` directory.
|
|
63
|
+
|
|
64
|
+
## License
|
|
65
|
+
|
|
66
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "joplin-plugin-explorer",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "A unified sidebar that displays notebooks and notes together in a single tree view",
|
|
5
|
-
"author": "lim0513",
|
|
6
|
-
"homepage": "https://github.com/lim0513/joplin-explorer",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/lim0513/joplin-explorer.git"
|
|
10
|
-
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"dist": "webpack --env production",
|
|
13
|
-
"dev": "webpack --watch"
|
|
14
|
-
},
|
|
15
|
-
"keywords": ["joplin-plugin", "joplin", "sidebar", "explorer", "tree-view", "notebooks"],
|
|
16
|
-
"license": "MIT",
|
|
17
|
-
"devDependencies": {
|
|
18
|
-
"api": "file:api",
|
|
19
|
-
"copy-webpack-plugin": "^11.0.0",
|
|
20
|
-
"ts-loader": "^9.5.1",
|
|
21
|
-
"typescript": "^5.3.3",
|
|
22
|
-
"webpack": "^5.89.0",
|
|
23
|
-
"webpack-cli": "^5.1.4"
|
|
24
|
-
},
|
|
25
|
-
"files": ["publish"]
|
|
26
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "joplin-plugin-explorer",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "A unified sidebar that displays notebooks and notes together in a single tree view",
|
|
5
|
+
"author": "lim0513",
|
|
6
|
+
"homepage": "https://github.com/lim0513/joplin-explorer",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/lim0513/joplin-explorer.git"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dist": "webpack --env production",
|
|
13
|
+
"dev": "webpack --watch"
|
|
14
|
+
},
|
|
15
|
+
"keywords": ["joplin-plugin", "joplin", "sidebar", "explorer", "tree-view", "notebooks"],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"api": "file:api",
|
|
19
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
20
|
+
"ts-loader": "^9.5.1",
|
|
21
|
+
"typescript": "^5.3.3",
|
|
22
|
+
"webpack": "^5.89.0",
|
|
23
|
+
"webpack-cli": "^5.1.4"
|
|
24
|
+
},
|
|
25
|
+
"files": ["publish"]
|
|
26
|
+
}
|