126 lines
4.3 KiB
JavaScript
126 lines
4.3 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = void 0;
|
||
|
|
||
|
require("../../../src/components/VStepper/VStepper.sass");
|
||
|
|
||
|
var _registrable = require("../../mixins/registrable");
|
||
|
|
||
|
var _proxyable = _interopRequireDefault(require("../../mixins/proxyable"));
|
||
|
|
||
|
var _themeable = _interopRequireDefault(require("../../mixins/themeable"));
|
||
|
|
||
|
var _mixins = _interopRequireDefault(require("../../util/mixins"));
|
||
|
|
||
|
var _console = require("../../util/console");
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
||
|
|
||
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
||
|
|
||
|
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; }
|
||
|
|
||
|
var baseMixins = (0, _mixins.default)((0, _registrable.provide)('stepper'), _proxyable.default, _themeable.default);
|
||
|
/* @vue/component */
|
||
|
|
||
|
var _default = baseMixins.extend({
|
||
|
name: 'v-stepper',
|
||
|
provide: function provide() {
|
||
|
return {
|
||
|
stepClick: this.stepClick,
|
||
|
isVertical: this.vertical
|
||
|
};
|
||
|
},
|
||
|
props: {
|
||
|
altLabels: Boolean,
|
||
|
nonLinear: Boolean,
|
||
|
vertical: Boolean
|
||
|
},
|
||
|
data: function data() {
|
||
|
return {
|
||
|
isBooted: false,
|
||
|
steps: [],
|
||
|
content: [],
|
||
|
isReverse: false
|
||
|
};
|
||
|
},
|
||
|
computed: {
|
||
|
classes: function classes() {
|
||
|
return _objectSpread({
|
||
|
'v-stepper--is-booted': this.isBooted,
|
||
|
'v-stepper--vertical': this.vertical,
|
||
|
'v-stepper--alt-labels': this.altLabels,
|
||
|
'v-stepper--non-linear': this.nonLinear
|
||
|
}, this.themeClasses);
|
||
|
}
|
||
|
},
|
||
|
watch: {
|
||
|
internalValue: function internalValue(val, oldVal) {
|
||
|
this.isReverse = Number(val) < Number(oldVal);
|
||
|
oldVal && (this.isBooted = true);
|
||
|
this.updateView();
|
||
|
}
|
||
|
},
|
||
|
created: function created() {
|
||
|
/* istanbul ignore next */
|
||
|
if (this.$listeners.input) {
|
||
|
(0, _console.breaking)('@input', '@change', this);
|
||
|
}
|
||
|
},
|
||
|
mounted: function mounted() {
|
||
|
this.internalLazyValue = this.value || (this.steps[0] || {}).step || 1;
|
||
|
this.updateView();
|
||
|
},
|
||
|
methods: {
|
||
|
register: function register(item) {
|
||
|
if (item.$options.name === 'v-stepper-step') {
|
||
|
this.steps.push(item);
|
||
|
} else if (item.$options.name === 'v-stepper-content') {
|
||
|
item.isVertical = this.vertical;
|
||
|
this.content.push(item);
|
||
|
}
|
||
|
},
|
||
|
unregister: function unregister(item) {
|
||
|
if (item.$options.name === 'v-stepper-step') {
|
||
|
this.steps = this.steps.filter(function (i) {
|
||
|
return i !== item;
|
||
|
});
|
||
|
} else if (item.$options.name === 'v-stepper-content') {
|
||
|
item.isVertical = this.vertical;
|
||
|
this.content = this.content.filter(function (i) {
|
||
|
return i !== item;
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
stepClick: function stepClick(step) {
|
||
|
var _this = this;
|
||
|
|
||
|
this.$nextTick(function () {
|
||
|
return _this.internalValue = step;
|
||
|
});
|
||
|
},
|
||
|
updateView: function updateView() {
|
||
|
for (var index = this.steps.length; --index >= 0;) {
|
||
|
this.steps[index].toggle(this.internalValue);
|
||
|
}
|
||
|
|
||
|
for (var _index = this.content.length; --_index >= 0;) {
|
||
|
this.content[_index].toggle(this.internalValue, this.isReverse);
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
render: function render(h) {
|
||
|
return h('div', {
|
||
|
staticClass: 'v-stepper',
|
||
|
class: this.classes
|
||
|
}, this.$slots.default);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
exports.default = _default;
|
||
|
//# sourceMappingURL=VStepper.js.map
|