primevue-mirror/components/lib/basecomponent/BaseComponent.vue

94 lines
3.5 KiB
Vue
Raw Normal View History

2023-03-21 12:05:24 +00:00
<script>
import { ObjectUtils } from 'primevue/utils';
2023-05-10 11:49:54 +00:00
import { mergeProps } from 'vue';
2023-03-21 12:05:24 +00:00
2023-05-19 10:32:44 +00:00
const inlineStyles = {
hiddenAccessible: {
border: '0',
clip: 'rect(0 0 0 0)',
height: '1px',
margin: '-1px',
overflow: 'hidden',
padding: '0',
position: 'absolute',
width: '1px'
}
};
2023-03-21 12:05:24 +00:00
export default {
name: 'BaseComponent',
2023-03-21 12:05:24 +00:00
props: {
pt: {
type: Object,
2023-04-26 08:57:02 +00:00
default: undefined
},
unstyled: {
type: Boolean,
default: undefined
2023-03-21 12:05:24 +00:00
}
},
methods: {
_getOptionValue(options, key = '', params = {}) {
2023-05-23 21:10:36 +00:00
const fKeys = ObjectUtils.convertToFlatCase(key).split('.');
const fKey = fKeys.shift();
2023-04-03 00:12:25 +00:00
2023-05-23 23:40:14 +00:00
return fKey
? ObjectUtils.isObject(options)
? this._getOptionValue(ObjectUtils.getItemValue(options[Object.keys(options).find((k) => ObjectUtils.convertToFlatCase(k) === fKey) || ''], params), fKeys.join('.'), params)
2023-05-23 23:40:14 +00:00
: undefined
: ObjectUtils.getItemValue(options, params);
2023-04-03 00:12:25 +00:00
},
_getPTValue(obj = {}, key = '', params = {}) {
const datasetPrefix = 'data-pc-';
const self = this._getOptionValue(obj, key, params);
const globalPT = this._getOptionValue(this.defaultPT, key, params);
const merged = mergeProps(self, globalPT, {
2023-05-24 01:03:54 +00:00
...(key === 'root' && { [`${datasetPrefix}name`]: ObjectUtils.convertToFlatCase(this.$.type.name) }),
[`${datasetPrefix}section`]: ObjectUtils.convertToFlatCase(key)
});
2023-05-10 11:49:54 +00:00
return merged;
/*
* @todo: The 'class' option in self can always be more powerful to style the component easily.
*
* return self && self['class'] ? { ...merged, ...{ class: self['class'] } } : merged;
*/
},
2023-03-21 12:05:24 +00:00
ptm(key = '', params = {}) {
return this._getPTValue(this.pt, key, { props: this.$props, state: this.$data, ...params });
},
ptmo(obj = {}, key = '', params = {}) {
return this._getPTValue(obj, key, params);
2023-05-19 10:32:44 +00:00
},
2023-05-19 11:14:50 +00:00
cx(key = '', params = {}) {
return !this.isUnstyled ? this._getOptionValue(this.$options.css && this.$options.css.classes, key, { instance: this, props: this.$props, state: this.$data, ...params }) : undefined;
2023-05-19 10:32:44 +00:00
},
2023-05-23 09:15:04 +00:00
cxo(obj = {}, key = '', params = {}) {
2023-05-23 21:10:36 +00:00
// @todo
return !this.isUnstyled ? this._getOptionValue(obj.css && obj.css.classes, key, { instance: obj, props: obj && obj.props, state: obj && obj.data, ...params }) : undefined;
2023-05-23 09:15:04 +00:00
},
2023-05-19 11:14:50 +00:00
sx(key = '', when = true, params = {}) {
2023-05-19 10:32:44 +00:00
if (when) {
const self = this._getOptionValue(this.$options.css && this.$options.css.inlineStyles, key, { instance: this, props: this.$props, state: this.$data, ...params });
const base = this._getOptionValue(inlineStyles, key, { instance: this, props: this.$props, state: this.$data, ...params });
2023-05-19 10:32:44 +00:00
return [base, self];
}
return undefined;
2023-03-21 12:05:24 +00:00
}
2023-05-10 11:49:54 +00:00
},
computed: {
defaultPT() {
return this._getOptionValue(this.$primevue.config.pt, this.$.type.name, this.defaultsParams);
2023-05-10 11:49:54 +00:00
},
defaultsParams() {
2023-05-19 10:32:44 +00:00
return { instance: this };
},
isUnstyled() {
return this.unstyled !== undefined ? this.unstyled : this.$primevue.config.unstyled;
2023-05-10 11:49:54 +00:00
}
2023-03-21 12:05:24 +00:00
}
};
</script>