This commit is contained in:
rizrmd 2024-05-16 22:50:27 -07:00
parent c09d6e2337
commit 356f1daf42
1 changed files with 13 additions and 74 deletions

View File

@ -1,6 +1,6 @@
import { createItem } from "@/gen/utils"; import { createItem } from "@/gen/utils";
import get from "lodash.get"; import get from "lodash.get";
import { FC, useEffect } from "react"; import { FC, isValidElement, useEffect } from "react";
import { FMLocal, FieldLocal, FieldProp } from "../typings"; import { FMLocal, FieldLocal, FieldProp } from "../typings";
import { genFieldMitem, updateFieldMItem } from "../utils/gen-mitem"; import { genFieldMitem, updateFieldMItem } from "../utils/gen-mitem";
import { fieldMapping } from "./mapping"; import { fieldMapping } from "./mapping";
@ -29,62 +29,15 @@ export const FieldInput: FC<{
// return <></> // return <></>
const prefix = typeof field.prefix === "function" ? field.prefix() : typeof field.prefix === "string" ? field.prefix : null; const prefix = typeof field.prefix === "function" ? field.prefix() : typeof field.prefix === "string" ? field.prefix : null;
const suffix = typeof field.suffix === "function" ? field.suffix() : typeof field.suffix === "string" ? field.prefix : null; const suffix = typeof field.suffix === "function" ? field.suffix() : typeof field.suffix === "string" ? field.prefix : null;
const errors = fm.error.get(field.name); const name = typeof field.name === 'function' ? field.name() : field.name;
const errors = fm.error.get(name);
const type_field = arg.type; // tipe field const type_field = arg.type; // tipe field
const sub_type_field = arg.sub_type; const sub_type_field = arg.sub_type;
// sudah gk pake children
// const childs = get(
// child,
// "props.meta.item.component.props.child.content.childs"
// );
// let found = null as any;
// if (childs && childs.length > 0 && field.type !== "custom") {
// for (const child of childs) {
// let mp = (fieldMapping as any)[field.type];
// if (!mp) {
// mp = (fieldMapping as any)["text"];
// }
// if (child.component?.id === mp.id) {
// found = child;
// if (mp.props) {
// const item = createItem({
// component: {
// id: "--",
// props:
// typeof mp.props === "function" ? mp.props(fm, field) : mp.props,
// },
// });
// const props = found.component.props;
// let should_update = false;
// for (const [k, v] of Object.entries(item.component.props) as any) {
// if (props[k] && props[k].valueBuilt === v.valueBuilt) {
// continue;
// } else {
// if (field.prop && !field.prop[k]) {
// props[k] = v;
// should_update = true;
// }
// }
// }
// if (should_update) {
// updateFieldMItem(_meta, found, _sync);
// }
// }
// }
// }
// }
// useEffect(() => {
// if (isEditor && !found && field.type !== "custom") {
// genFieldMitem({ _meta, _item, _sync, field, fm });
// }
// }, []);
return ( return (
<div <div
className={cx( className={cx(
!["toogle", "button", "radio","checkbox"].includes(arg.sub_type) !["toogle", "button", "radio", "checkbox"].includes(arg.sub_type)
? "field-outer c-flex c-flex-1 c-flex-row c-rounded c-border c-text-sm c-flex-wrap" ? "field-outer c-flex c-flex-1 c-flex-row c-rounded c-border c-text-sm c-flex-wrap"
: "", : "",
fm.status === "loading" fm.status === "loading"
@ -92,12 +45,12 @@ export const FieldInput: FC<{
border-color: transparent; border-color: transparent;
` `
: field.disabled : field.disabled
? "c-border-gray-100" ? "c-border-gray-100"
: errors.length > 0 : errors.length > 0
? field.focused ? field.focused
? "c-border-red-600 c-bg-red-50 c-outline c-outline-red-700" ? "c-border-red-600 c-bg-red-50 c-outline c-outline-red-700"
: "c-border-red-600 c-bg-red-50" : "c-border-red-600 c-bg-red-50"
: field.focused && "c-border-blue-700 c-outline c-outline-blue-700", : field.focused && "c-border-blue-700 c-outline c-outline-blue-700",
css` css`
& > .field-inner { & > .field-inner {
min-height: 35px; min-height: 35px;
@ -124,7 +77,6 @@ export const FieldInput: FC<{
field.disabled && "c-pointer-events-none", field.disabled && "c-pointer-events-none",
)} )}
> >
{/* <FieldToggle arg={arg} field={field} fm={fm} /> */}
{[ {[
"date", "date",
"input" "input"
@ -132,28 +84,15 @@ export const FieldInput: FC<{
<FieldTypeText <FieldTypeText
field={field} field={field}
fm={fm} fm={fm}
prop={{ type: arg.type, sub_type: arg.sub_type, prefix, suffix} as PropTypeText} prop={{ type: arg.type, sub_type: arg.sub_type, prefix, suffix } as PropTypeText}
/> />
) : ["single-option"].includes(type_field) ? ( ) : ["single-option"].includes(type_field) ? (
<SingleOption arg={arg} field={field} fm={fm} /> <SingleOption arg={arg} field={field} fm={fm} />
) : ["multi-option"].includes(type_field) ? ( ) : ["multi-option"].includes(type_field) ? (
<MultiOption arg={arg} field={field} fm={fm}/> <MultiOption arg={arg} field={field} fm={fm} />
) : ( ) : (
<>OTW</> <>{isValidElement(field.type) && field.type}</>
)} )}
{/* Komentar nanti diaktifkan setelah input */}
{/* {field.type === "custom" ? (
<TypeCustom fm={fm} field={field} />
) : (
<>
{!found && <FieldLoading />}
{found && (
<PassProp field={field} fm={fm}>
{found}
</PassProp>
)}
</>
)} */}
</div> </div>
)} )}
{suffix && suffix !== "" ? ( {suffix && suffix !== "" ? (