UNPKG

tt-mp

Version:

一套组件化、可复用、易扩展的头条小程序 UI 组件库

63 lines (58 loc) 1.31 kB
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) }) } }, }, })