iview/src/components/tree/node.vue

142 lines
4.9 KiB
Vue
Raw Normal View History

2017-03-24 20:50:13 +08:00
<template>
2017-06-02 14:30:03 +08:00
<collapse-transition>
2017-03-24 20:50:13 +08:00
<ul :class="classes" v-show="visible">
<li>
<span :class="arrowClasses" @click="handleExpand">
<Icon type="arrow-right-b"></Icon>
</span>
<Checkbox
2017-06-02 14:30:03 +08:00
v-if="showCheckbox"
:value="data.checked"
:indeterminate="indeterminate"
:disabled="data.disabled || data.disableCheckbox"
@click.native.prevent="handleCheck"></Checkbox>
2017-03-24 20:50:13 +08:00
<span :class="titleClasses" v-html="data.title" @click="handleSelect"></span>
<Tree-node
2017-06-02 14:30:03 +08:00
v-for="item in data.children"
2017-07-14 15:37:07 +08:00
:key="item.nodeKey"
2017-06-02 14:30:03 +08:00
:data="item"
:visible="data.expand"
:multiple="multiple"
:show-checkbox="showCheckbox">
2017-03-24 20:50:13 +08:00
</Tree-node>
</li>
</ul>
2017-06-02 14:30:03 +08:00
</collapse-transition>
2017-03-24 20:50:13 +08:00
</template>
<script>
import Checkbox from '../checkbox/checkbox.vue';
2017-04-07 11:29:31 +08:00
import Icon from '../icon/icon.vue';
2017-06-02 14:30:03 +08:00
import CollapseTransition from '../base/collapse-transition';
2017-03-24 20:50:13 +08:00
import Emitter from '../../mixins/emitter';
import { findComponentsDownward } from '../../utils/assist';
const prefixCls = 'ivu-tree';
export default {
name: 'TreeNode',
mixins: [ Emitter ],
2017-06-02 14:30:03 +08:00
components: { Checkbox, Icon, CollapseTransition },
2017-03-24 20:50:13 +08:00
props: {
data: {
type: Object,
default () {
return {};
}
},
multiple: {
type: Boolean,
default: false
},
showCheckbox: {
type: Boolean,
default: false
},
visible: {
type: Boolean,
default: false
}
},
data () {
return {
prefixCls: prefixCls,
2017-03-24 23:14:10 +08:00
indeterminate: false
2017-03-24 20:50:13 +08:00
};
},
computed: {
classes () {
return [
`${prefixCls}-children`
2017-03-24 21:06:49 +08:00
];
2017-03-24 20:50:13 +08:00
},
selectedCls () {
return [
{
[`${prefixCls}-node-selected`]: this.data.selected
}
];
},
arrowClasses () {
return [
`${prefixCls}-arrow`,
{
[`${prefixCls}-arrow-disabled`]: this.data.disabled,
[`${prefixCls}-arrow-open`]: this.data.expand,
[`${prefixCls}-arrow-hidden`]: !(this.data.children && this.data.children.length)
}
];
},
titleClasses () {
return [
`${prefixCls}-title`,
{
[`${prefixCls}-title-selected`]: this.data.selected
}
];
}
},
methods: {
handleExpand () {
if (this.data.disabled) return;
this.$set(this.data, 'expand', !this.data.expand);
2017-04-27 15:20:11 +08:00
this.dispatch('Tree', 'toggle-expand', this.data);
2017-03-24 20:50:13 +08:00
},
handleSelect () {
if (this.data.disabled) return;
if (this.data.selected) {
this.data.selected = false;
} else if (this.multiple) {
this.$set(this.data, 'selected', !this.data.selected);
} else {
this.dispatch('Tree', 'selected', this.data);
}
this.dispatch('Tree', 'on-selected');
},
handleCheck () {
if (this.disabled) return;
2017-03-24 21:06:49 +08:00
const checked = !this.data.checked;
if (!checked || this.indeterminate) {
findComponentsDownward(this, 'TreeNode').forEach(node => node.data.checked = false);
} else {
findComponentsDownward(this, 'TreeNode').forEach(node => node.data.checked = true);
}
this.data.checked = checked;
2017-03-24 20:50:13 +08:00
this.dispatch('Tree', 'checked');
2017-03-24 23:14:10 +08:00
this.dispatch('Tree', 'on-checked');
2017-03-24 20:50:13 +08:00
},
setIndeterminate () {
this.indeterminate = this.data.checked ? false : findComponentsDownward(this, 'TreeNode').some(node => node.data.checked);
}
},
created () {
// created node.vue first, mounted tree.vue second
if (!this.data.checked) this.$set(this.data, 'checked', false);
},
mounted () {
this.$on('indeterminate', () => {
2017-03-24 23:14:10 +08:00
this.broadcast('TreeNode', 'indeterminate');
2017-03-24 20:50:13 +08:00
this.setIndeterminate();
2017-03-24 21:06:49 +08:00
});
2017-03-24 20:50:13 +08:00
}
};
</script>