2023-07-03 22:20:35 +00:00
|
|
|
import { loadBaseStyle } from 'primevue/base';
|
|
|
|
import { ObjectUtils } from 'primevue/utils';
|
|
|
|
import { mergeProps } from 'vue';
|
|
|
|
|
|
|
|
const BaseDirective = {
|
|
|
|
_getMeta: (...args) => [ObjectUtils.isObject(args[0]) ? undefined : args[0], ObjectUtils.getItemValue(ObjectUtils.isObject(args[0]) ? args[0] : args[1])],
|
|
|
|
_getOptionValue: (options, key = '', params = {}) => {
|
2023-07-10 09:34:48 +00:00
|
|
|
const fKeys = ObjectUtils.toFlatCase(key).split('.');
|
2023-07-03 22:20:35 +00:00
|
|
|
const fKey = fKeys.shift();
|
|
|
|
|
|
|
|
return fKey
|
|
|
|
? ObjectUtils.isObject(options)
|
2023-07-10 09:34:48 +00:00
|
|
|
? BaseDirective._getOptionValue(ObjectUtils.getItemValue(options[Object.keys(options).find((k) => ObjectUtils.toFlatCase(k) === fKey) || ''], params), fKeys.join('.'), params)
|
2023-07-03 22:20:35 +00:00
|
|
|
: undefined
|
|
|
|
: ObjectUtils.getItemValue(options, params);
|
|
|
|
},
|
|
|
|
_getPTValue: (instance = {}, obj = {}, key = '', params = {}, searchInDefaultPT = true) => {
|
2023-07-11 22:42:43 +00:00
|
|
|
const getValue = (...args) => {
|
|
|
|
const value = BaseDirective._getOptionValue(...args);
|
|
|
|
|
2023-07-17 12:31:09 +00:00
|
|
|
return ObjectUtils.isString(value) || ObjectUtils.isArray(value) ? { class: value } : value;
|
2023-07-11 22:42:43 +00:00
|
|
|
};
|
|
|
|
|
2023-07-07 12:00:11 +00:00
|
|
|
const datasetPrefix = 'data-pc-';
|
2023-09-04 21:36:12 +00:00
|
|
|
const { mergeSections = true, mergeProps: useMergeProps = false } = instance.binding?.value?.ptOptions || {};
|
|
|
|
const global = searchInDefaultPT ? BaseDirective._useDefaultPT(instance.defaultPT, getValue, key, params) : undefined;
|
|
|
|
const self = BaseDirective._usePT(BaseDirective._getPT(obj, instance.$name), getValue, key, { ...params, global });
|
|
|
|
const datasets = {
|
2023-07-10 09:34:48 +00:00
|
|
|
...(key === 'root' && { [`${datasetPrefix}name`]: ObjectUtils.toFlatCase(instance.$name) }),
|
|
|
|
[`${datasetPrefix}section`]: ObjectUtils.toFlatCase(key)
|
2023-09-04 21:36:12 +00:00
|
|
|
};
|
2023-07-03 22:20:35 +00:00
|
|
|
|
2023-09-04 21:36:12 +00:00
|
|
|
return mergeSections || (!mergeSections && self) ? (useMergeProps ? mergeProps(global, self, datasets) : { ...global, ...self, ...datasets }) : { ...self, ...datasets };
|
2023-07-03 22:20:35 +00:00
|
|
|
},
|
2023-09-04 21:36:12 +00:00
|
|
|
_getPT: (pt, key = '', callback) => {
|
2023-08-17 23:51:01 +00:00
|
|
|
const _usept = pt?.['_usept'];
|
|
|
|
|
|
|
|
const getValue = (value) => {
|
|
|
|
const computedValue = callback ? callback(value) : value;
|
|
|
|
|
|
|
|
return computedValue?.[ObjectUtils.toFlatCase(key)] ?? computedValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
return ObjectUtils.isNotEmpty(_usept)
|
|
|
|
? {
|
|
|
|
_usept,
|
|
|
|
originalValue: getValue(pt.originalValue),
|
|
|
|
value: getValue(pt.value)
|
|
|
|
}
|
|
|
|
: getValue(pt);
|
|
|
|
},
|
2023-09-04 21:36:12 +00:00
|
|
|
_usePT: (pt, callback, key, params) => {
|
2023-08-17 23:51:01 +00:00
|
|
|
const fn = (value) => callback(value, key, params);
|
|
|
|
|
|
|
|
if (pt?.hasOwnProperty('_usept')) {
|
2023-09-04 21:36:12 +00:00
|
|
|
const { mergeSections = true, mergeProps: useMergeProps = false } = pt['_usept'] || {};
|
2023-08-17 23:51:01 +00:00
|
|
|
const originalValue = fn(pt.originalValue);
|
|
|
|
const value = fn(pt.value);
|
|
|
|
|
|
|
|
if (originalValue === undefined && value === undefined) return undefined;
|
|
|
|
else if (ObjectUtils.isString(value)) return value;
|
|
|
|
else if (ObjectUtils.isString(originalValue)) return originalValue;
|
|
|
|
|
2023-08-28 21:00:10 +00:00
|
|
|
return mergeSections || (!mergeSections && value) ? (useMergeProps ? mergeProps(originalValue, value) : { ...originalValue, ...value }) : value;
|
2023-08-17 23:51:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return fn(pt);
|
|
|
|
},
|
2023-09-04 21:36:12 +00:00
|
|
|
_useDefaultPT: (defaultPT = {}, callback, key, params) => {
|
2023-08-17 23:51:01 +00:00
|
|
|
return BaseDirective._usePT(defaultPT, callback, key, params);
|
|
|
|
},
|
2023-07-03 22:20:35 +00:00
|
|
|
_hook: (directiveName, hookName, el, binding, vnode, prevVnode) => {
|
2023-07-10 09:34:48 +00:00
|
|
|
const name = `on${ObjectUtils.toCapitalCase(hookName)}`;
|
2023-07-03 22:20:35 +00:00
|
|
|
const config = binding?.instance?.$primevue?.config;
|
2023-08-17 23:51:01 +00:00
|
|
|
const selfHook = BaseDirective._usePT(BaseDirective._getPT(binding?.value?.pt, directiveName), BaseDirective._getOptionValue, `hooks.${name}`);
|
|
|
|
const defaultHook = BaseDirective._useDefaultPT(config?.pt?.directives?.[directiveName], BaseDirective._getOptionValue, `hooks.${name}`);
|
2023-07-10 09:34:48 +00:00
|
|
|
const options = { el, binding, vnode, prevVnode };
|
2023-07-03 22:20:35 +00:00
|
|
|
|
2023-07-10 09:34:48 +00:00
|
|
|
selfHook?.(el?.$instance, options);
|
2023-08-17 23:51:01 +00:00
|
|
|
defaultHook?.(el?.$instance, options);
|
2023-07-03 22:20:35 +00:00
|
|
|
},
|
|
|
|
_extend: (name, options = {}) => {
|
|
|
|
const handleHook = (hook, el, binding, vnode, prevVnode) => {
|
2023-07-03 23:12:09 +00:00
|
|
|
el._$instances = el._$instances || {};
|
2023-07-03 22:20:35 +00:00
|
|
|
|
|
|
|
const config = binding?.instance?.$primevue?.config;
|
2023-07-06 12:43:23 +00:00
|
|
|
const $prevInstance = el._$instances[name] || {};
|
|
|
|
const $options = ObjectUtils.isEmpty($prevInstance) ? { ...options, ...options?.methods } : {};
|
2023-07-03 22:20:35 +00:00
|
|
|
|
2023-07-03 23:12:09 +00:00
|
|
|
el._$instances[name] = {
|
2023-07-06 12:43:23 +00:00
|
|
|
...$prevInstance,
|
2023-07-03 22:20:35 +00:00
|
|
|
/* new instance variables to pass in directive methods */
|
|
|
|
$name: name,
|
|
|
|
$host: el,
|
|
|
|
$binding: binding,
|
2023-07-06 12:43:23 +00:00
|
|
|
$el: $prevInstance['$el'] || undefined,
|
2023-07-03 22:20:35 +00:00
|
|
|
$css: { classes: undefined, inlineStyles: undefined, loadStyle: () => {}, ...options?.css },
|
2023-08-11 01:34:02 +00:00
|
|
|
$config: config,
|
2023-07-03 22:20:35 +00:00
|
|
|
/* computed instance variables */
|
2023-08-17 23:51:01 +00:00
|
|
|
defaultPT: BaseDirective._getPT(config?.pt, undefined, (value) => value?.directives?.[name]),
|
2023-07-07 11:23:03 +00:00
|
|
|
isUnstyled: el.unstyled !== undefined ? el.unstyled : config?.unstyled,
|
2023-07-03 22:20:35 +00:00
|
|
|
/* instance's methods */
|
2023-07-06 12:43:23 +00:00
|
|
|
ptm: (key = '', params = {}) => BaseDirective._getPTValue(el.$instance, el.$instance?.$binding?.value?.pt, key, { ...params }),
|
|
|
|
ptmo: (obj = {}, key = '', params = {}) => BaseDirective._getPTValue(el.$instance, obj, key, params, false),
|
|
|
|
cx: (key = '', params = {}) => (!el.$instance?.isUnstyled ? BaseDirective._getOptionValue(el.$instance?.$css?.classes, key, { ...params }) : undefined),
|
|
|
|
sx: (key = '', when = true, params = {}) => (when ? BaseDirective._getOptionValue(el.$instance?.$css?.inlineStyles, key, { ...params }) : undefined),
|
2023-07-03 22:20:35 +00:00
|
|
|
...$options
|
|
|
|
};
|
|
|
|
|
2023-07-06 12:43:23 +00:00
|
|
|
el.$instance = el._$instances[name]; // pass instance data to hooks
|
|
|
|
el.$instance[hook]?.(el, binding, vnode, prevVnode); // handle hook in directive implementation
|
2023-07-03 22:20:35 +00:00
|
|
|
BaseDirective._hook(name, hook, el, binding, vnode, prevVnode); // handle hooks during directive uses (global and self-definition)
|
|
|
|
};
|
2023-06-21 13:48:00 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
created: (el, binding, vnode, prevVnode) => {
|
2023-07-03 22:20:35 +00:00
|
|
|
handleHook('created', el, binding, vnode, prevVnode);
|
2023-06-21 13:48:00 +00:00
|
|
|
},
|
|
|
|
beforeMount: (el, binding, vnode, prevVnode) => {
|
2023-08-11 01:34:02 +00:00
|
|
|
const config = binding?.instance?.$primevue?.config;
|
|
|
|
|
|
|
|
loadBaseStyle(undefined, { nonce: config?.csp?.nonce });
|
|
|
|
!el.$instance?.isUnstyled && el.$instance?.$css?.loadStyle(undefined, { nonce: config?.csp?.nonce });
|
2023-07-03 22:20:35 +00:00
|
|
|
handleHook('beforeMount', el, binding, vnode, prevVnode);
|
2023-06-21 13:48:00 +00:00
|
|
|
},
|
|
|
|
mounted: (el, binding, vnode, prevVnode) => {
|
2023-07-03 22:20:35 +00:00
|
|
|
handleHook('mounted', el, binding, vnode, prevVnode);
|
2023-06-21 13:48:00 +00:00
|
|
|
},
|
|
|
|
beforeUpdate: (el, binding, vnode, prevVnode) => {
|
2023-07-03 22:20:35 +00:00
|
|
|
handleHook('beforeUpdate', el, binding, vnode, prevVnode);
|
2023-06-21 13:48:00 +00:00
|
|
|
},
|
|
|
|
updated: (el, binding, vnode, prevVnode) => {
|
2023-07-03 22:20:35 +00:00
|
|
|
handleHook('updated', el, binding, vnode, prevVnode);
|
2023-06-21 13:48:00 +00:00
|
|
|
},
|
|
|
|
beforeUnmount: (el, binding, vnode, prevVnode) => {
|
2023-07-03 22:20:35 +00:00
|
|
|
handleHook('beforeUnmount', el, binding, vnode, prevVnode);
|
2023-06-21 13:48:00 +00:00
|
|
|
},
|
|
|
|
unmounted: (el, binding, vnode, prevVnode) => {
|
2023-07-03 22:20:35 +00:00
|
|
|
handleHook('unmounted', el, binding, vnode, prevVnode);
|
2023-06-21 13:48:00 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
2023-07-03 22:20:35 +00:00
|
|
|
extend: (...args) => {
|
|
|
|
const [name, options] = BaseDirective._getMeta(...args);
|
2023-06-21 13:48:00 +00:00
|
|
|
|
2023-07-03 22:20:35 +00:00
|
|
|
return {
|
|
|
|
extend: (..._args) => {
|
|
|
|
const [_name, _options] = BaseDirective._getMeta(..._args);
|
2023-06-21 13:48:00 +00:00
|
|
|
|
2023-07-03 22:20:35 +00:00
|
|
|
return BaseDirective.extend(_name, { ...options, ...options?.methods, ..._options });
|
|
|
|
},
|
|
|
|
...BaseDirective._extend(name, options)
|
|
|
|
};
|
2023-06-21 13:48:00 +00:00
|
|
|
}
|
|
|
|
};
|
2023-07-03 22:20:35 +00:00
|
|
|
|
|
|
|
export default BaseDirective;
|