Files
directus/app/src/utils/render-string-template.ts
2022-06-30 18:45:52 -04:00

105 lines
2.8 KiB
TypeScript

import useAliasFields from '@/composables/use-alias-fields';
import { getDisplay } from '@/displays';
import { useFieldsStore } from '@/stores';
import { DisplayConfig, Field } from '@directus/shared/types';
import { getFieldsFromTemplate } from '@directus/shared/utils';
import { render, renderFn } from 'micromustache';
import { computed, ComputedRef, Ref, ref, unref } from 'vue';
import { get, set } from 'lodash';
type StringTemplate = {
fieldsInTemplate: ComputedRef<string[]>;
displayValue: ComputedRef<string | false>;
};
function resolve(path: string, scope: any) {
const value = get(scope, path);
return typeof value === 'object' ? JSON.stringify(value) : value;
}
export function renderStringTemplate(
template: Ref<string | null> | string,
item: Record<string, any> | undefined | null | Ref<Record<string, any> | undefined | null>
): StringTemplate {
const values = unref(item);
const templateString = unref(template);
const fieldsInTemplate = computed(() => getFieldsFromTemplate(templateString));
const displayValue = computed(() => {
if (!values || !templateString || !fieldsInTemplate.value) return false;
try {
return renderFn(templateString, resolve, values, { propsExist: true });
} catch {
return false;
}
});
return { fieldsInTemplate, displayValue };
}
export function renderPlainStringTemplate(template: string, item?: Record<string, any> | null): string | null {
const fieldsInTemplate = getFieldsFromTemplate(template);
if (!item || !template || !fieldsInTemplate) return null;
try {
return render(template, item, { propsExist: true });
} catch {
return null;
}
}
export function renderDisplayStringTemplate(
collection: string,
template: string,
item: Record<string, any>
): string | null {
const fieldsStore = useFieldsStore();
const fields = getFieldsFromTemplate(template);
const fieldsUsed: Record<string, Field | null> = {};
for (const key of fields) {
set(fieldsUsed, key, fieldsStore.getField(collection, key));
}
const { aliasFields } = useAliasFields(ref(fields));
const parsedItem: Record<string, any> = {};
for (const key of fields) {
const value =
!aliasFields.value?.[key] || get(item, key) !== undefined
? get(item, key)
: get(item, aliasFields.value[key].fullAlias);
let display: DisplayConfig | undefined;
if (fieldsUsed[key]?.meta?.display) {
display = getDisplay(fieldsUsed[key]!.meta!.display);
}
if (value !== undefined && value !== null) {
set(
parsedItem,
key,
display?.handler
? display.handler(value, fieldsUsed[key]?.meta?.display_options ?? {}, {
interfaceOptions: fieldsUsed[key]?.meta?.options ?? {},
field: fieldsUsed[key] ?? undefined,
collection: collection,
})
: value
);
} else {
set(parsedItem, key, value);
}
}
return renderPlainStringTemplate(template, parsedItem);
}