60 lines
2.1 KiB
JavaScript
60 lines
2.1 KiB
JavaScript
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
||
|
|
||
|
import '../../../src/stylus/components/_system-bars.styl';
|
||
|
import Applicationable from '../../mixins/applicationable';
|
||
|
import Colorable from '../../mixins/colorable';
|
||
|
import Themeable from '../../mixins/themeable';
|
||
|
import mixins from '../../util/mixins';
|
||
|
export default mixins(Applicationable('bar', ['height', 'window']), Colorable, Themeable
|
||
|
/* @vue/component */
|
||
|
).extend({
|
||
|
name: 'v-system-bar',
|
||
|
props: {
|
||
|
height: {
|
||
|
type: [Number, String],
|
||
|
validator: function validator(v) {
|
||
|
return !isNaN(parseInt(v));
|
||
|
}
|
||
|
},
|
||
|
lightsOut: Boolean,
|
||
|
status: Boolean,
|
||
|
window: Boolean
|
||
|
},
|
||
|
computed: {
|
||
|
classes: function classes() {
|
||
|
return _extends({
|
||
|
'v-system-bar--lights-out': this.lightsOut,
|
||
|
'v-system-bar--absolute': this.absolute,
|
||
|
'v-system-bar--fixed': !this.absolute && (this.app || this.fixed),
|
||
|
'v-system-bar--status': this.status,
|
||
|
'v-system-bar--window': this.window
|
||
|
}, this.themeClasses);
|
||
|
},
|
||
|
computedHeight: function computedHeight() {
|
||
|
if (this.height) return parseInt(this.height);
|
||
|
return this.window ? 32 : 24;
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
/**
|
||
|
* Update the application layout
|
||
|
*
|
||
|
* @return {number}
|
||
|
*/
|
||
|
updateApplication: function updateApplication() {
|
||
|
return this.computedHeight;
|
||
|
}
|
||
|
},
|
||
|
render: function render(h) {
|
||
|
var data = {
|
||
|
staticClass: 'v-system-bar',
|
||
|
'class': this.classes,
|
||
|
style: {
|
||
|
height: this.computedHeight + 'px'
|
||
|
}
|
||
|
};
|
||
|
return h('div', this.setBackgroundColor(this.color, data), this.$slots.default);
|
||
|
}
|
||
|
});
|
||
|
//# sourceMappingURL=VSystemBar.js.map
|