Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 56a07a1

Browse files
committed
docu
1 parent fd9849a commit 56a07a1

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ The information you add or edit will be saved into the target obsidian note.
2323
- Global filters
2424
![GlobalFilter.gif](docs/resources/GlobalFilter.gif)
2525

26+
#### Event Driven
27+
- (*NEW*) Configurable select column with `group_folder_column` property. This column will be used to group the notes into subfolders with the same cell value. The subfolder will be created if it does not exist.
28+
![GroupFolderColumn.gif](docs/resources/GroupFolderColumn.gif)
29+
2630
### Whats inside the database view?
2731
Database view read the yaml configuration inside .md file and render a react DOM.
2832

@@ -40,8 +44,11 @@ Mandatory:
4044
- **label**: name of the column
4145
Optional:
4246
- **position**: order of the columns
43-
#### Local configuration
4447

48+
49+
#### Local configuration
50+
- **enable_show_state**: show react table state at bottom of the page. It has a default value & local value of each database.
51+
- **group_folder_column**: name of the column used to group the notes into subfolders with the same cell value. The subfolder will be created if it does not exist. It must be a select column type.
4552
```markdown
4653
---
4754

@@ -75,9 +82,16 @@ columns:
7582
accessor: Calification
7683
label: Calification
7784
key: Calification
85+
position: 5
86+
view_state:
87+
input: select
88+
accessor: view_state
89+
key: view_state
90+
label: view_state
7891
position: 4
7992
config:
8093
enable_show_state: false
94+
group_folder_column: view_state
8195
%%>
8296
```
8397

1.16 MB
Loading

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "0.0.6",
4+
"version": "0.0.7",
55
"minAppVersion": "0.14.6",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-dbfolder",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)