import * as React from "react"; import { DndProvider } from "react-dnd"; import Backend from "react-dnd-html5-backend"; import App from "@sc/modules/app"; import PageBuilder from "@sc/modules/page/Page"; import "@sc/10mf/src/index.css"; import "@sc/10mf/src/style.css"; import WebFontLoader from "webfontloader"; // import { AppConfig } from "@sc/modules/app"; import settings from "@sc/10mf/src/config"; import { addThisAfterThat } from "@sc/modules/v2/Editor/actions"; import { ComponentTypes } from "@sc/plugins/webcomponents/v2/types"; import { BODY } from "@sc/modules/v2/Editor/types"; import { EditorProps } from "./types"; export default { title: "Modules|Editor/Classic Editor (v1)", excludeStories: /.*Data$/, }; export const sampleContentData = [ { parent: "u5j1r64m5rf", id: "bj51e45wmym", properties: { // marginTop: 50, marginTop: 0, color: "#95a5a6", textAlign: "center", fontFamily: "Advent Pro", fontSize: 36, padding: 5, display: "inline-block", }, type: "Paragraph", html: "

Replace this content with your own

", }, { parent: "u5j1r64m5rf", id: "hm3iurc13pd", properties: { marginTop: 2, color: "#95a5a6", textAlign: "center", fontFamily: "Advent Pro", fontSize: 20, padding: 5, mobile: { desktop: { marginTop: 2, color: "#95a5a6", textAlign: "center", fontFamily: "Advent Pro", fontSize: 20, }, }, display: "inline-block", }, type: "Paragraph", html: "

(Just select me and hit your keyboard's [DELETE] key)

", }, { parent: 2540, id: "u5j1r64m5rf", properties: { width: "100%", mobile: { desktop: { padding: 100, }, }, padding: 100, }, type: "Container", canHaveChildren: true, }, { parent: false, state: "normal", id: BODY, properties: { backgroundColor: "#ffffff", backgroundImage: "none", height: "100%", backgroundAttachment: "scroll", backgroundSize: "contain", backgroundPosition: "center center", backgroundRepeat: "repeat-y", mobile: { desktop: { backgroundColor: "#ffffff", backgroundImage: "none", backgroundAttachment: "scroll", backgroundSize: "contain", backgroundPosition: "center center", backgroundRepeat: "repeat-y", }, }, }, type: ComponentTypes.BODY, canHaveChildren: true, }, ]; // const xsampleContentData = settings.pages.blankPage; export const mobileStateData = { desktop: { type: "desktop", dimensions: { maxWidth: 1000, minHeight: "70vh", margin: "80px auto", overflow: "hidden", }, }, fullscreen: { type: "fullscreen", dimensions: { width: "100%", height: "100vh", marginTop: 57, }, }, }; export const buildContentData = (children) => { const content = addThisAfterThat( sampleContentData.filter((itm) => itm.type === ComponentTypes.BODY), { type: ComponentTypes.CONTAINER, canHaveChildren: true, properties: { display: "block" }, justAdded: true, children, }, BODY ); content[content.findIndex((itm) => itm.justAdded)]["parent"] = BODY; return content; }; export const EditorWithCustomData: React.FC = ({ content, defaultMobileState = mobileStateData.fullscreen, log = () => null, onSetActiveObject = () => null, onScheduleUpdate = () => null, onChangeState = () => null, onAddThisAfterThat = () => null, onRemoveItem = () => null, onDuplicateItem = () => null, onMoveThisByThat = () => null, onUpdateComponentSettings = () => null, onUpdateComponentStyle = () => null, onUpdateContent = () => null, onListComponents = (content = [], filterOut = [], filterOnly = []) => null, onDoUndoRedo = () => null, onSetMobileState = () => null, onGetMobileState = () => null, onActivePropertyWindows = () => null, onGetActivePropertyWindows = () => null, onHandleUpdatePageContent = () => null, onSetCanDrag = () => null, onGetCanDrag = () => null, }) => { WebFontLoader.load({ google: { families: [ "Roboto:300,400,500,700", "Material Icons", "Poppins:300,400,500,700", ], }, }); return (
{ return { data: { page: { content } }, }; }, }} updatePageContent={({ variables }) => { log("update", variables); return { then: (response) => response, }; }} show="builder" defaultMobileState={defaultMobileState} log={log} onSetActiveObject={onSetActiveObject} onScheduleUpdate={onScheduleUpdate} onChangeState={onChangeState} onAddThisAfterThat={onAddThisAfterThat} onRemoveItem={onRemoveItem} onDuplicateItem={onDuplicateItem} onMoveThisByThat={onMoveThisByThat} onUpdateComponentSettings={onUpdateComponentSettings} onUpdateComponentStyle={onUpdateComponentStyle} onUpdateContent={onUpdateContent} onListComponents={onListComponents} onDoUndoRedo={onDoUndoRedo} onSetMobileState={onSetMobileState} onGetMobileState={onGetMobileState} onActivePropertyWindows={onActivePropertyWindows} onGetActivePropertyWindows={onGetActivePropertyWindows} onHandleUpdatePageContent={onHandleUpdatePageContent} onSetCanDrag={onSetCanDrag} onGetCanDrag={onGetCanDrag} />
); }; export const Default = () => { return ; };