123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- import baseComponent from '../helpers/baseComponent'
- baseComponent({
- relations: {
- '../accordion/index': {
- type: 'child',
- observer() {
- this.debounce(this.changeCurrent)
- },
- },
- },
- properties: {
- prefixCls: {
- type: String,
- value: 'wux-accordion-group',
- },
- cellGroupPrefixCls: {
- type: String,
- value: 'wux-cell-group',
- },
- defaultCurrent: {
- type: Array,
- value: [],
- },
- current: {
- type: Array,
- value: [],
- observer: 'changeCurrent',
- },
- controlled: {
- type: Boolean,
- value: false,
- },
- accordion: {
- type: Boolean,
- value: false,
- },
- title: {
- type: String,
- value: '',
- },
- label: {
- type: String,
- value: '',
- },
- },
- data: {
- activeKey: '',
- keys: [],
- },
- methods: {
- updated(activeKey, condition) {
- const elements = this.getRelationNodes('../accordion/index')
- if (elements.length > 0) {
- if (condition) {
- this.setData({
- activeKey,
- })
- elements.forEach((element, index) => {
- const key = element.data.key || String(index)
- const current = this.data.accordion ? activeKey[0] === key : activeKey.indexOf(key) !== -1
- element.changeCurrent(current, key)
- })
- }
- }
- if (this.data.keys.length !== elements.length) {
- this.setData({
- keys: elements.map((element) => element.data)
- })
- }
- },
- changeCurrent(activeKey = this.data.current) {
- this.updated(activeKey, this.data.controlled)
- },
- emitEvent(key) {
- this.triggerEvent('change', {
- key,
- keys: this.data.keys,
- })
- },
- setActiveKey(activeKey) {
- if (this.data.activeKey !== activeKey) {
- this.updated(activeKey, !this.data.controlled)
- }
- this.emitEvent(this.data.accordion ? activeKey[0] : activeKey)
- },
- onClickItem(key) {
- let activeKey = [...this.data.activeKey]
- if (this.data.accordion) {
- activeKey = activeKey[0] === key ? [] : [key]
- } else {
- activeKey = activeKey.indexOf(key) !== -1 ? activeKey.filter((n) => n !== key) : [...activeKey, key]
- }
- this.setActiveKey(activeKey)
- },
- },
- ready() {
- const { defaultCurrent, current, controlled } = this.data
- const activeKey = controlled ? current : defaultCurrent
- this.updated(activeKey, true)
- },
- })
|