primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
137 lines (131 loc) • 4.18 kB
JavaScript
import { isNotEmpty } from '@primeuix/utils/object';
import Ripple from 'primevue/ripple';
import BaseEditableHolder from '@primevue/core/baseeditableholder';
import ToggleButtonStyle from 'primevue/togglebutton/style';
import { resolveDirective, withDirectives, openBlock, createElementBlock, mergeProps, createElementVNode, renderSlot, normalizeClass, createCommentVNode, toDisplayString } from 'vue';
var script$1 = {
name: 'BaseToggleButton',
"extends": BaseEditableHolder,
props: {
onIcon: String,
offIcon: String,
onLabel: {
type: String,
"default": 'Yes'
},
offLabel: {
type: String,
"default": 'No'
},
iconPos: {
type: String,
"default": 'left'
},
readonly: {
type: Boolean,
"default": false
},
tabindex: {
type: Number,
"default": null
},
ariaLabelledby: {
type: String,
"default": null
},
ariaLabel: {
type: String,
"default": null
},
size: {
type: String,
"default": null
}
},
style: ToggleButtonStyle,
provide: function provide() {
return {
$pcToggleButton: this,
$parentInstance: this
};
}
};
var script = {
name: 'ToggleButton',
"extends": script$1,
inheritAttrs: false,
emits: ['change'],
methods: {
getPTOptions: function getPTOptions(key) {
var _ptm = key === 'root' ? this.ptmi : this.ptm;
return _ptm(key, {
context: {
active: this.active,
disabled: this.disabled
}
});
},
onChange: function onChange(event) {
if (!this.disabled && !this.readonly) {
this.writeValue(!this.d_value, event);
this.$emit('change', event);
}
},
onBlur: function onBlur(event) {
var _this$formField$onBlu, _this$formField;
(_this$formField$onBlu = (_this$formField = this.formField).onBlur) === null || _this$formField$onBlu === void 0 || _this$formField$onBlu.call(_this$formField, event);
}
},
computed: {
active: function active() {
return this.d_value === true;
},
hasLabel: function hasLabel() {
return isNotEmpty(this.onLabel) && isNotEmpty(this.offLabel);
},
label: function label() {
return this.hasLabel ? this.d_value ? this.onLabel : this.offLabel : ' ';
}
},
directives: {
ripple: Ripple
}
};
var _hoisted_1 = ["tabindex", "disabled", "aria-pressed", "aria-labelledby", "data-p-checked", "data-p-disabled"];
function render(_ctx, _cache, $props, $setup, $data, $options) {
var _directive_ripple = resolveDirective("ripple");
return withDirectives((openBlock(), createElementBlock("button", mergeProps({
type: "button",
"class": _ctx.cx('root'),
tabindex: _ctx.tabindex,
disabled: _ctx.disabled,
"aria-pressed": _ctx.d_value,
onClick: _cache[0] || (_cache[0] = function () {
return $options.onChange && $options.onChange.apply($options, arguments);
}),
onBlur: _cache[1] || (_cache[1] = function () {
return $options.onBlur && $options.onBlur.apply($options, arguments);
})
}, $options.getPTOptions('root'), {
"aria-labelledby": _ctx.ariaLabelledby,
"data-p-checked": $options.active,
"data-p-disabled": _ctx.disabled
}), [createElementVNode("span", mergeProps({
"class": _ctx.cx('content')
}, $options.getPTOptions('content')), [renderSlot(_ctx.$slots, "default", {}, function () {
return [renderSlot(_ctx.$slots, "icon", {
value: _ctx.d_value,
"class": normalizeClass(_ctx.cx('icon'))
}, function () {
return [_ctx.onIcon || _ctx.offIcon ? (openBlock(), createElementBlock("span", mergeProps({
key: 0,
"class": [_ctx.cx('icon'), _ctx.d_value ? _ctx.onIcon : _ctx.offIcon]
}, $options.getPTOptions('icon')), null, 16)) : createCommentVNode("", true)];
}), createElementVNode("span", mergeProps({
"class": _ctx.cx('label')
}, $options.getPTOptions('label')), toDisplayString($options.label), 17)];
})], 16)], 16, _hoisted_1)), [[_directive_ripple]]);
}
script.render = render;
export { script as default };
//# sourceMappingURL=index.mjs.map