UNPKG

vuetify

Version:

Vue.js 2 Semantic Component Framework

179 lines (146 loc) 4.6 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _VIcon = require('../../components/VIcon'); var _VIcon2 = _interopRequireDefault(_VIcon); var _bootable = require('../../mixins/bootable'); var _bootable2 = _interopRequireDefault(_bootable); var _toggleable = require('../../mixins/toggleable'); var _toggleable2 = _interopRequireDefault(_toggleable); var _registrable = require('../../mixins/registrable'); var _transitions = require('../transitions'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } // Components // Mixins // Transitions /** * List group * * @component */ exports.default = { name: 'v-list-group', mixins: [_bootable2.default, (0, _registrable.inject)('list', 'v-list-group', 'v-list'), _toggleable2.default], inject: ['listClick'], data: function data() { return { groups: [] }; }, props: { activeClass: { type: String, default: 'primary--text' }, appendIcon: { type: String, default: 'keyboard_arrow_down' }, disabled: Boolean, group: String, noAction: Boolean, prependIcon: String, subGroup: Boolean }, computed: { groupClasses: function groupClasses() { return { 'list__group--active': this.isActive, 'list__group--disabled': this.disabled }; }, headerClasses: function headerClasses() { return { 'list__group__header--active': this.isActive, 'list__group__header--sub-group': this.subGroup }; }, itemsClasses: function itemsClasses() { return { 'list__group__items--no-action': this.noAction }; } }, watch: { isActive: function isActive(val) { if (!this.subGroup && val) { this.listClick(this._uid); } }, $route: function $route(to) { var isActive = this.matchRoute(to.path); if (this.group) { if (isActive && this.isActive !== isActive) { this.listClick(this._uid); } this.isActive = isActive; } } }, mounted: function mounted() { this.list.register(this._uid, this.toggle); if (this.group && this.$route && this.value == null) { this.isActive = this.matchRoute(this.$route.path); } }, beforeDestroy: function beforeDestroy() { this.list.unregister(this._uid); }, methods: { click: function click() { if (this.disabled) return; this.isActive = !this.isActive; }, genIcon: function genIcon(icon) { return this.$createElement(_VIcon2.default, icon); }, genAppendIcon: function genAppendIcon() { var icon = !this.subGroup ? this.appendIcon : ''; return this.$createElement('li', { staticClass: 'list__group__header__append-icon' }, [this.$slots.appendIcon || this.genIcon(icon)]); }, genGroup: function genGroup() { return this.$createElement('ul', { staticClass: 'list__group__header', 'class': this.headerClasses, on: Object.assign({}, { click: this.click }, this.$listeners), ref: 'item' }, [this.genPrependIcon(), this.$slots.activator, this.genAppendIcon()]); }, genItems: function genItems() { return this.$createElement('ul', { staticClass: 'list__group__items', 'class': this.itemsClasses, directives: [{ name: 'show', value: this.isActive }], ref: 'group' }, this.showLazyContent(this.$slots.default)); }, genPrependIcon: function genPrependIcon() { var icon = this.prependIcon ? this.prependIcon : this.subGroup ? 'arrow_drop_down' : ''; return this.$createElement('li', { staticClass: 'list__group__header__prepend-icon', 'class': _defineProperty({}, this.activeClass, this.isActive) }, [this.$slots.prependIcon || this.genIcon(icon)]); }, toggle: function toggle(uid) { this.isActive = this._uid === uid; }, matchRoute: function matchRoute(to) { if (!this.group) return false; return to.match(this.group) !== null; } }, render: function render(h) { return h('li', { staticClass: 'list__group', 'class': this.groupClasses }, [this.genGroup(), h(_transitions.VExpandTransition, [this.genItems()])]); } };