@ohu-mobile/core
Version:
87 lines (86 loc) • 4.72 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _EntryItem = _interopRequireDefault(require("../EntryItem"));
var _EntryItem2 = require("../EntryItem/EntryItem");
var _vnode = require("../_utils/vnode");
var _variables = require("../_config/variables");
var _defineComponent = require("../_utils/defineComponent");
var _Tabbar = _interopRequireDefault(require("./Tabbar"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
var TabbarItemWrapper = function TabbarItemWrapper(Item) {
return (0, _defineComponent.defineComponent)('tabbar-item').create({
props: _objectSpread(_objectSpread({}, _EntryItem2.entryItemProps), {}, {
name: (0, _defineComponent.props)(String, Number).optional
}),
computed: {
index: function index() {
var _this$$parent;
return (_this$$parent = this.$parent) === null || _this$$parent === void 0 ? void 0 : _this$$parent.$children.indexOf(this);
},
selfKey: function selfKey() {
return this.name || this.index;
},
active: function active() {
var stateValue = this.$parent.stateValue;
return this.selfKey === stateValue;
}
},
methods: {
handleClick: function handleClick() {
var _this$$parent2;
var parent = this.$parent;
if (((_this$$parent2 = this.$parent) === null || _this$$parent2 === void 0 ? void 0 : _this$$parent2.constructor) === _Tabbar.default) {
parent.onChange(this.selfKey, this.index, this.name);
this.$nextTick(function () {
parent.scrollIntoCenter();
});
}
}
},
render: function render(h) {
var $props = this.$props,
$slots = this.$slots,
$scopedSlots = this.$scopedSlots,
$attrs = this.$attrs,
$listeners = this.$listeners,
icon = this.icon,
text = this.text;
var style = {};
var _this$$parent3 = this.$parent,
activeColor = _this$$parent3.activeColor,
inActiveColor = _this$$parent3.inActiveColor;
if (activeColor && inActiveColor) {
if (activeColor === 'primary') {
activeColor = _variables.$colorPrimary;
}
style.color = this.active ? activeColor : inActiveColor;
}
var root = this.$rootCls();
this.active && root.is('active');
!!(icon && (text || $slots.default)) && root.has('padding');
var nodeData = {
class: root,
on: _objectSpread(_objectSpread({}, $listeners), {}, {
click: this.handleClick
}),
attrs: $attrs,
props: _objectSpread(_objectSpread({}, $props), {}, {
textSize: icon ? 'xsm' : 'sm'
}),
scopedSlots: $scopedSlots,
style: style
};
return h(Item, nodeData, (0, _vnode.transformSlotsContext)($slots, this.$vnode.componentInstance));
}
});
};
var _default = exports.default = TabbarItemWrapper(_EntryItem.default);