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
+77-47
Original file line number
Diff line number
Diff line change
@@ -13,79 +13,109 @@ 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
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.
19
-
20
-
```html
21
-
<ulclass="g8-tree-view g8-tree__dark">
22
-
<g8-tree-view></g8-tree-view>
23
-
</ul>
24
-
```
16
+
## Props
25
17
26
-
If you want to change the color of the component, just define two variables before importing the scss file.
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)||
27
29
28
-
```scss
29
-
/* index.scss */
30
+
## Scoped slots
30
31
31
-
/* define these two variables before importing the scss file */
32
-
$g8-tree-bg: #ccc;
33
-
$g8-tree-fg: #333;
32
+
#### Default slot
34
33
35
-
@import'~vue-tree/src/components/tree-view.scss';
34
+
```vue
35
+
<span class="g8-tree__node_entry_label">
36
+
<slot :item="item">{{ item[itemLabel] }}</slot>
37
+
</span>
36
38
```
37
39
38
-
## Props
40
+
This is the entry's main content slot. Defaults to `{{ item[itemLabel] }}`. The current item entry is exposed as scoped variable `item`.
39
41
40
-
| Prop name | Description | Type | Default |
41
-
| --- | --- | :-: | :-: |
42
-
| 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)||
| 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. |
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`.
64
57
65
58
## Types
66
59
67
60
#### G8TreeItem
68
61
62
+
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.
63
+
69
64
| Field name | Type | Description |
70
65
| --- | :-: | --- |
71
66
| 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. |
67
+
| checked | boolean | Whether the node is checked. |
68
+
| intermediate | boolean | Intermediate check box state. Active while some children were checked. |
74
69
| 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. |
70
+
| tags |[G8TreeItemTag](#g8treeitemtag)\[]| List of tags. |
71
+
| children |[G8TreeItem](#g8treeitem)\[]| List of child nodes. |
77
72
78
73
#### G8TreeItemTag
79
74
75
+
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.
| hint | string | Tag tooltip. Visible when mouse hovers on the tag. |
84
81
85
-
#### G8TagClickEvent
82
+
#### G8ClickEvent
83
+
84
+
extends `MouseEvent`
86
85
87
86
| Field name | Type | Description |
88
87
| --- | :-: | --- |
89
-
| node |[G8TreeItem](#G8TreeItem)| Key of the node that triggered the event. |
90
-
| tag |[G8TreeItemTag](#G8TreeItemTag)| The tag that triggered the event. |
91
-
| index | number | Numeric index of the entry in the tag list. |
88
+
| data | { expanded: boolean, item: [G8TreeItem](#g8treeitem)} | The item triggered the event and if it were expanded (`true`). |
89
+
90
+
## Events
91
+
92
+
This component defines only two events, for expanding/collapsing nodes, and checkbox state changes.
93
+
94
+
| Event name | Type | Description |
95
+
| --- | :-: | --- |
96
+
| click |[G8ClickEvent](#g8clickevent)| A tree node has been clicked. Use the `data.expanded` to determine if the node were expanded (`true`). |
97
+
| state-changed |[G8TreeItem](#g8treeitem)| Checkbox state of the node has changed. |
98
+
99
+
#### Other events
100
+
101
+
## Theming
102
+
103
+
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.
104
+
105
+
```html
106
+
<ulclass="g8-tree-view g8-tree__dark">
107
+
<g8-tree-view></g8-tree-view>
108
+
</ul>
109
+
```
110
+
111
+
If you want to change the color of the component, just define two variables before importing the scss file.
112
+
113
+
```scss
114
+
/* index.scss */
115
+
116
+
/* define these two variables before importing the scss file */
0 commit comments