Profectus/src/util/vue.tsx

172 lines
5 KiB
TypeScript
Raw Normal View History

2022-03-04 03:39:48 +00:00
import Col from "components/layout/Column.vue";
import Row from "components/layout/Row.vue";
2022-01-14 04:25:47 +00:00
import {
CoercableComponent,
Component as ComponentKey,
GatherProps,
GenericComponent,
JSXFunction
2022-03-04 03:39:48 +00:00
} from "features/feature";
2022-01-25 04:25:34 +00:00
import {
Component,
computed,
ComputedRef,
DefineComponent,
defineComponent,
isRef,
2022-01-25 04:25:34 +00:00
PropType,
ref,
Ref,
ShallowRef,
shallowRef,
2022-01-25 04:25:34 +00:00
unref,
watchEffect
2022-01-25 04:25:34 +00:00
} from "vue";
import { DoNotCache, ProcessedComputable } from "./computed";
2022-01-14 04:25:47 +00:00
export function coerceComponent(
component: CoercableComponent,
defaultWrapper = "span"
): DefineComponent {
if (typeof component === "function") {
return defineComponent({ render: component });
}
2022-01-14 04:25:47 +00:00
if (typeof component === "string") {
if (component.length > 0) {
component = component.trim();
if (component.charAt(0) !== "<") {
component = `<${defaultWrapper}>${component}</${defaultWrapper}>`;
}
2022-01-14 04:25:47 +00:00
return defineComponent({ template: component });
}
return defineComponent({ render: () => ({}) });
2022-01-14 04:25:47 +00:00
}
return component;
}
export type VueFeature = {
[ComponentKey]: GenericComponent;
[GatherProps]: () => Record<string, unknown>;
};
export function render(object: VueFeature | CoercableComponent): JSX.Element | DefineComponent {
if (isCoercableComponent(object)) {
if (typeof object === "function") {
return (object as JSXFunction)();
2022-01-14 04:25:47 +00:00
}
return coerceComponent(object);
}
const Component = object[ComponentKey];
return <Component {...object[GatherProps]()} />;
2022-01-14 04:25:47 +00:00
}
export function renderRow(...objects: (VueFeature | CoercableComponent)[]): JSX.Element {
return <Row>{objects.map(render)}</Row>;
2022-01-14 04:25:47 +00:00
}
export function renderCol(...objects: (VueFeature | CoercableComponent)[]): JSX.Element {
return <Col>{objects.map(render)}</Col>;
2022-01-14 04:25:47 +00:00
}
export function isCoercableComponent(component: unknown): component is CoercableComponent {
if (typeof component === "string") {
return true;
} else if (typeof component === "object") {
if (component == null) {
return false;
}
return "render" in component || "component" in component;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} else if (typeof component === "function" && (component as any)[DoNotCache] === true) {
return true;
2022-01-14 04:25:47 +00:00
}
return false;
}
export function setupHoldToClick(
onClick?: Ref<VoidFunction | undefined>,
onHold?: Ref<VoidFunction | undefined>
): {
start: VoidFunction;
stop: VoidFunction;
handleHolding: VoidFunction;
} {
2022-01-25 04:25:34 +00:00
const interval = ref<null | number>(null);
2022-01-14 04:25:47 +00:00
function start() {
2022-01-25 04:25:34 +00:00
if (!interval.value) {
interval.value = setInterval(handleHolding, 250);
2022-01-14 04:25:47 +00:00
}
}
function stop() {
2022-01-25 04:25:34 +00:00
if (interval.value) {
clearInterval(interval.value);
interval.value = null;
2022-01-14 04:25:47 +00:00
}
}
function handleHolding() {
if (onHold && onHold.value) {
onHold.value();
} else if (onClick && onClick.value) {
onClick.value();
}
}
return { start, stop, handleHolding };
}
2022-01-25 04:25:34 +00:00
export function computeComponent(
component: Ref<ProcessedComputable<CoercableComponent>>,
defaultWrapper = "div"
): ShallowRef<Component | JSXFunction | ""> {
const comp = shallowRef<Component | JSXFunction | "">();
watchEffect(() => {
comp.value = coerceComponent(unwrapRef(component), defaultWrapper);
2022-01-25 04:25:34 +00:00
});
return comp as ShallowRef<Component | JSXFunction | "">;
2022-01-25 04:25:34 +00:00
}
export function computeOptionalComponent(
component: Ref<ProcessedComputable<CoercableComponent | undefined> | undefined>,
defaultWrapper = "div"
): ShallowRef<Component | JSXFunction | "" | null> {
const comp = shallowRef<Component | JSXFunction | "" | null>(null);
watchEffect(() => {
const currComponent = unwrapRef(component);
comp.value = currComponent == null ? null : coerceComponent(currComponent, defaultWrapper);
2022-01-25 04:25:34 +00:00
});
return comp;
2022-01-25 04:25:34 +00:00
}
export function wrapRef<T>(ref: Ref<ProcessedComputable<T>>): ComputedRef<T> {
return computed(() => unwrapRef(ref));
}
export function unwrapRef<T>(ref: Ref<ProcessedComputable<T>>): T {
return unref<T>(unref(ref));
}
export function setRefValue<T>(ref: Ref<T | Ref<T>>, value: T) {
if (isRef(ref.value)) {
ref.value.value = value;
} else {
ref.value = value;
}
2022-01-25 04:25:34 +00:00
}
2022-03-09 01:40:51 +00:00
export type PropTypes =
2022-01-25 04:25:34 +00:00
| typeof Boolean
| typeof String
| typeof Number
| typeof Function
| typeof Object
| typeof Array;
// TODO Unfortunately, the typescript engine gives up on typing completely when you use this method,
// Even though it has the same typing as when doing it manually
export function processedPropType<T>(...types: PropTypes[]): PropType<ProcessedComputable<T>> {
if (!types.includes(Object)) {
types.push(Object);
}
return types as PropType<ProcessedComputable<T>>;
}