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

34 lines
1.1 KiB
Vue
Raw Normal View History

2023-03-21 12:05:24 +00:00
<script>
import { ObjectUtils } from 'primevue/utils';
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
2023-03-21 12:05:24 +00:00
}
},
methods: {
2023-04-03 00:12:25 +00:00
getPTItem(obj = {}, key = '') {
const fKey = ObjectUtils.convertToFlatCase(key);
return obj[Object.keys(obj).find((k) => ObjectUtils.convertToFlatCase(k) === fKey) || ''];
},
getPTValue(obj = {}, key = '', params = {}) {
const self = ObjectUtils.getItemValue(this.getPTItem(obj, key), params);
const globalComponentPT = this.getPTItem(this.$primevue.config.pt, this.$.type.name);
const global = ObjectUtils.getItemValue(this.getPTItem(globalComponentPT, key), params);
return { ...global, ...self };
},
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-03-21 12:05:24 +00:00
}
}
};
</script>