You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.6 KiB
60 lines
1.6 KiB
2 years ago
|
import baseComponent from '../helpers/baseComponent'
|
||
|
import classNames from '../helpers/classNames'
|
||
|
|
||
|
baseComponent({
|
||
|
relations: {
|
||
|
'../skeleton-avatar/index': {
|
||
|
type: 'descendant',
|
||
|
observer() {
|
||
|
this.debounce(this.updated)
|
||
|
},
|
||
|
},
|
||
|
'../skeleton-paragraph/index': {
|
||
|
type: 'descendant',
|
||
|
observer() {
|
||
|
this.debounce(this.updated)
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
properties: {
|
||
|
prefixCls: {
|
||
|
type: String,
|
||
|
value: 'wux-skeleton',
|
||
|
},
|
||
|
active: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
observer: 'updated',
|
||
|
},
|
||
|
},
|
||
|
computed: {
|
||
|
classes: ['prefixCls, active', function(prefixCls, active) {
|
||
|
const wrap = classNames(prefixCls, {
|
||
|
[`${prefixCls}--active`]: active,
|
||
|
})
|
||
|
|
||
|
return {
|
||
|
wrap,
|
||
|
}
|
||
|
}],
|
||
|
},
|
||
|
methods: {
|
||
|
updated(active = this.data.active) {
|
||
|
const avatar = this.getRelationNodes('../skeleton-avatar/index')
|
||
|
const paragraph = this.getRelationNodes('../skeleton-paragraph/index')
|
||
|
|
||
|
if (avatar.length > 0) {
|
||
|
avatar.forEach((element) => {
|
||
|
element.updated(active)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
if (paragraph.length > 0) {
|
||
|
paragraph.forEach((element) => {
|
||
|
element.updated(active)
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
})
|