You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+69-45
Original file line number
Diff line number
Diff line change
@@ -13,79 +13,103 @@ The DOM structure of this component doesn't change once rendered. Comparing to o
13
13
14
14
There is an [issue](https://github.com/eidng8/vue-tree/issues/24) for this. Check out more detail there.
15
15
16
-
## Theming
16
+
## Props
17
17
18
-
The bundled style sheet can be imported from `'g8-vue-tree/dist/g8-vue-tree.css'`. This component provides a dark theme out of box. To use it, just add the `g8-tree__dark` class to the element.
18
+
| Prop name | Description | Type | Default |
19
+
| --- | --- | :-: | :-: |
20
+
| item-id | Key of the field in `item` to be used as element's `id` attribute. | string | 'id' |
21
+
| item-label | Key of the field in `item` that holds node label. | string | 'name' |
22
+
| tags-key | Key of the field in `item` that holds tags array. | string | 'tags' |
23
+
| children-key | Key of the field in `item` that holds child nodes array. | string | 'children' |
24
+
| tag-id | Key of the field in tags list of `item` to be used as tag element's `id` attribute. | string | 'id' |
25
+
| tag-label | Key of the field in tags list of `item` that holds tag label. | string | 'label' |
26
+
| tag-hint | Key of the field in tags list of `item` that holds tag tooltip. | string | 'hint' |
27
+
| checker | Whether to add a checkbox before each item,<br>allowing multiple nodes tobe checked. | boolean | false |
28
+
| item | The tree data to be rendered.<br>Please note that data passed **_may_** be mutated by this<br>component to reflect various states of tree nodes.<br>Mutated fields include:<br>- checked<br>- intermediate<br>- rendered |[G8TreeItem](#g8treeitem)||
19
29
20
-
```html
21
-
<ulclass="g8-tree-view g8-tree__dark">
22
-
<g8-tree-view></g8-tree-view>
23
-
</ul>
24
-
```
30
+
## Scoped slots
25
31
26
-
If you want to change the color of the component, just define two variables before importing the scss file.
32
+
#### Default slot
27
33
28
-
```scss
29
-
/* index.scss */
34
+
```vue
35
+
<span class="g8-tree__node_entry_label">
36
+
<slot :item="item">{{ item[itemLabel] }}</slot>
37
+
</span>
38
+
```
30
39
31
-
/* define these two variables before importing the scss file */
32
-
$g8-tree-bg: #ccc;
33
-
$g8-tree-fg: #333;
40
+
This is the entry's main content slot. Defaults to `{{ item[itemLabel] }}`. The current item entry is exposed as scoped variable `item`.
| itemLabel | Key of the field in `item` that holds node label. | string | 'name' |
43
-
| tagsKey | Key of the field in `item` that holds tags array. | string | 'tags' |
44
-
| childrenKey | Key of the field in `item` that holds child nodes array. | string | 'children' |
45
-
| tagLabel | Key of the field in tags list of `item` that holds tag label. | string | 'label' |
46
-
| tagHint | Key of the field in tags list of `item` that holds tag tooltip. | string | 'hint' |
47
-
| handleRightClick <aid="handleRightClick"></a> | Whether to intercept right mouse click. | boolean | false |
48
-
| checker | Whether to add a checkbox before each item,<br>allowing multiple nodes tobe checked. | boolean | false |
49
-
| item | The tree data to be rendered.<br>Please note that data passed **_may_** be mutated by this<br>component to reflect various states of tree nodes.<br>Mutated fields include:<br>- checked<br>- intermediate<br>- rendered |[G8TreeItem](#G8TreeItem)||
56
+
This is the entry's tag content slot. Defaults to `{{ tag[tagLabel] }}`. The current item entry is exposed as scoped variable `item`. The current tag is exposed as scoped variable `tag`.
50
57
51
58
## Events
52
59
53
60
| Event name | Type | Description |
54
61
| --- | :-: | --- |
55
-
| click |[G8TreeItem](#G8TreeItem)| A tree node has been clicked. |
56
-
| middle-click |[G8TreeItem](#G8TreeItem)| A tree node has been clicked with middle mouse button. |
57
-
| right-click |[G8TreeItem](#G8TreeItem)| A tree node has been clicked with right mouse button.<br>Only available if [handleRightClick](#handleRightClick) is `true`|
58
-
| dblclick |[G8TreeItem](#G8TreeItem)| A tree node has been double clicked. |
59
-
| tag-click |[G8TagClickEvent](#G8TagClickEvent)| A tree node tag has been clicked. |
60
-
| tag-middle-click |[G8TagClickEvent](#G8TagClickEvent)| A tree node tag has been clicked. |
61
-
| tag-right-click |[G8TagClickEvent](#G8TagClickEvent)| A tree node has been clicked with right mouse button.<br>Only available if [handleRightClick](#handleRightClick) is `true`|
62
-
| tag-dblclick |[G8TagClickEvent](#G8TagClickEvent)| A tree node tag has been double clicked. |
63
-
| state-changed |[G8TreeItem](#G8TreeItem)| Checkbox state of the node has changed. |
62
+
| click |[G8TreeItem](#g8treeitem)| A tree node has been clicked. |
63
+
| state-changed |[G8TreeItem](#g8treeitem)| Checkbox state of the node has changed. |
64
64
65
65
## Types
66
66
67
67
#### G8TreeItem
68
68
69
+
Below is a list of presumable fields, all of them are optional. You can place whatever data you want to a tree item, then use the [props](#props) mentioned above to specify content you want to display.
70
+
69
71
| Field name | Type | Description |
70
72
| --- | :-: | --- |
71
73
| name | string | Item name, serves as label, will be rendered as node label. |
72
-
| checked | boolean | Whether current node is checked. |
73
-
| intermediate | boolean | Intermediate check box state. Active while some of the children were checked, but not all. |
74
+
| checked | boolean | Whether the node is checked. |
75
+
| intermediate | boolean | Intermediate check box state. Active while some children were checked. |
74
76
| rendered | boolean | Whether the sub-tree of this node has been rendered. |
75
-
| tags |[G8TreeItemTag](#G8TreeItemTag)\[]| List of tags. |
76
-
| children |[G8TreeItem](#G8TreeItem)\[]| List of child nodes. |
77
+
| tags |[G8TreeItemTag](#g8treeitemtag)\[]| List of tags. |
78
+
| children |[G8TreeItem](#g8treeitem)\[]| List of child nodes. |
77
79
78
80
#### G8TreeItemTag
79
81
82
+
Below is a list of presumable fields, all of them are optional. You can place whatever data you want to tags, then use the [props](#props) mentioned above to specify content you want to display.
| data |[G8TreeItem](#g8treeitem)| The item triggered the event. |
94
+
95
+
## Theming
96
+
97
+
The bundled style sheet can be imported from `'g8-vue-tree/dist/g8-vue-tree.css'`. This component provides a dark theme out of box. To use it, just add the `g8-tree__dark` class to the element.
98
+
99
+
```html
100
+
<ulclass="g8-tree-view g8-tree__dark">
101
+
<g8-tree-view></g8-tree-view>
102
+
</ul>
103
+
```
104
+
105
+
If you want to change the color of the component, just define two variables before importing the scss file.
106
+
107
+
```scss
108
+
/* index.scss */
109
+
110
+
/* define these two variables before importing the scss file */
0 commit comments