Files
rowy/src/components/fields/Code/index.tsx

33 lines
969 B
TypeScript
Raw Normal View History

2022-05-24 20:34:28 +10:00
import { lazy } from "react";
import { IFieldConfig, FieldType } from "@src/components/fields/types";
import withBasicCell from "@src/components/fields/_withTableCell/withBasicCell";
import CodeIcon from "@mui/icons-material/Code";
import BasicCell from "./BasicCell";
import withSideDrawerEditor from "@src/components/Table/editors/withSideDrawerEditor";
const Settings = lazy(
2022-06-06 15:59:27 +10:00
() => import("./Settings" /* webpackChunkName: "Settings-Code" */)
2022-05-24 20:34:28 +10:00
);
const SideDrawerField = lazy(
() =>
import("./SideDrawerField" /* webpackChunkName: "SideDrawerField-Code" */)
);
export const config: IFieldConfig = {
type: FieldType.code,
name: "Code",
group: "Code",
dataType: "string",
initialValue: "",
initializable: true,
icon: <CodeIcon />,
description: "Raw code edited with the Monaco Editor.",
TableCell: withBasicCell(BasicCell),
TableEditor: withSideDrawerEditor(BasicCell),
SideDrawerField,
settings: Settings,
};
export default config;