-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathlaunch_tree.vue
229 lines (203 loc) · 5.03 KB
/
launch_tree.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<style lang="scss">
.tree-box {
padding: 10px 25px;
height: 100%;
overflow: hidden;
overflow-y: auto;
min-height: 400px;
background-color: #dddddd;
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
p {
padding: 0;
margin: 0;
}
.tree-ul {
padding-left: 20px !important;
}
.tree-ul:first-child {
padding-left: 0 !important
}
.folder, .node {
cursor: pointer;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.folder-box {
cursor: pointer;
}
.folder-logo {
display: inline-block;
width: 12px;
height: 11px;
line-height: 7px;
font-weight: 400;
border: 1px solid #8e7878;
color: #000;
background: rgba(91, 192, 222, 0.1);
text-align: center;
float: left;
margin-left: -15px;
margin-top: 6px;
margin-right: 5px;
}
.folder-true {
color: #2494f2;
}
.node-true {
color: #2494f2;
}
}
</style>
<template>
<div id = 'tree-box' class = 'tree-box' v-if='list'>
<tree_item :list='list' :pnode.once='{root: true, isOpen: true}'></tree_item>
</div>
</template>
<script type="text/javascript">
let DEFAULT_NODE = [
{
name: '一级目录', // 目录名字
isOpen: true, // 是否初始展开目录
hightLight: true, // 是否初始高亮
className: undefined, // 添加自定义样式
childs: [], // 二级目录
...{} // 其他用户额外参数
}
]
let DEFAULT_OPTIONS = {
callback: undefined // 自定义点击事件,callback(node)
}
let pageParams = {
node: {default: true},
folder: {default: true}
}
let vm = null
export default {
name: 'launchTree',
props: {
list: {
type: Array,
required: false,
default: function () {
return DEFAULT_NODE
}
},
options: {
type: Object,
default: function () {
return DEFAULT_OPTIONS
}
}
},
methods: {
initTree() {
let tempList = JSON.parse(JSON.stringify(this.list))
let loadDatas = function(datas) {
datas.forEach((item) => {
item.isOpen = item.isOpen || false
item.hightLight = item.hightLight || false
item.className = item.className || ''
item.childs = item.childs || []
if(item.childs.length > 0) {
if(item.hightLight) {
pageParams.folder = item
}
loadDatas(item.childs)
}else {
if(item.hightLight) {
pageParams.node = item
}
item.isOpen = false
}
})
}
loadDatas(tempList)
this.list = tempList
}
},
components: {
tree_item: {
name: 'tree_item',
props: {
list: {
type: Array,
required: false,
default: function() {
return DEFAULT_NODE
}
},
pnode: {
type: Object,
default: function() {
return {isOpen: true}
}
}
},
methods: {
defaultClickFun(node) {
pageParams.node.hightLight = pageParams.folder.hightLight = false
node.isOpen = !node.isOpen
node.hightLight = true
if(node.childs.length > 0 && node.isOpen === false) { // 需要递归关闭子目录
node.hightLight = false
closeFolder(node)
}
if(node.childs.length > 0 && !checkChildNode(node, pageParams.folder)) { // 查询上一次点击的目录是当前目录的父目录还是兄弟目录
pageParams.folder.isOpen = false
}
if(node.childs.length > 0) {
pageParams.folder = node
}else {
pageParams.node = node
}
},
clickFun(node) {
if(vm.options.callback) {
vm.options.callback(node)
}
this.defaultClickFun(node)
}
},
template: `
<div>
<div @click='clickFun(pnode)' v-if='!pnode.root' class='folder-box'>
<span v-if='!pnode.isOpen' class='folder-logo'>+</span>
<span v-if='pnode.isOpen' class='folder-logo'>-</span>
<p class='folder folder-{{pnode.hightLight}}'>{{pnode ? pnode.name : ''}}</p>
</div>
<ul class='tree-ul' v-show='pnode.isOpen'>
<template v-for='item in list'>
<tree_item v-if='item.childs.length > 0' :list='item.childs' :pnode='item'></tree_item>
<li @click='clickFun(item)' v-if='item.childs.length == 0' class='node node-{{item.hightLight}}'>{{ item.name }}</li>
</template>
</ul>
</div>
`
}
},
created: function() {
vm = this
this.initTree()
}
}
function closeFolder(node) {
node.isOpen = false
node.childs.forEach((item) => {
closeFolder(item)
})
}
function checkChildNode(comNode, node) {
if(comNode === node || node.default) {
return true
}
for(let i = 0; i < node.childs.length; ++i) {
if(checkChildNode(comNode, node.childs[i])) return true
}
return false
}
</script>