-
Notifications
You must be signed in to change notification settings - Fork 750
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make copy paste data agnostic (#909)
Copy paste of instances was implemented closly coupled to our schema. Here I make I implement it with simpler interface without dependency on types. Type and version are instead passed as configuration. Next step will be decoupling instance copy paste from react and simplifying data management with nanostores.
- Loading branch information
Showing
5 changed files
with
194 additions
and
202 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
apps/designer/app/shared/copy-paste/copy-paste-instance.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import ObjectId from "bson-objectid"; | ||
import { useEffect } from "react"; | ||
import { z } from "zod"; | ||
import { Instance, Props, Styles } from "@webstudio-is/project-build"; | ||
import { utils } from "@webstudio-is/project"; | ||
import { startCopyPaste } from "./copy-paste"; | ||
|
||
const InstanceCopyData = z.object({ | ||
instance: Instance, | ||
props: Props, | ||
styles: Styles, | ||
}); | ||
|
||
export type InstanceCopyData = z.infer<typeof InstanceCopyData>; | ||
|
||
type InstanceCopyPasteProps = { | ||
selectedInstanceData?: InstanceCopyData; | ||
allowAnyTarget?: boolean; | ||
onPaste: (data: InstanceCopyData) => void; | ||
onCut: (instance: Instance) => void; | ||
}; | ||
|
||
// to make it easier to remove React from canvas if we need to | ||
export const useInstanceCopyPaste = (props: InstanceCopyPasteProps): void => { | ||
const { selectedInstanceData, allowAnyTarget, onPaste, onCut } = props; | ||
useEffect(() => { | ||
return startCopyPaste({ | ||
version: "@webstudio/instance/v0.1", | ||
type: InstanceCopyData, | ||
onCopy: () => { | ||
return selectedInstanceData; | ||
}, | ||
onCut: () => { | ||
if (selectedInstanceData === undefined) { | ||
return; | ||
} | ||
onCut(selectedInstanceData.instance); | ||
return selectedInstanceData; | ||
}, | ||
onPaste: (data: InstanceCopyData) => { | ||
const instance = utils.tree.cloneInstance(data.instance); | ||
|
||
// copy props with new ids and link to new instance | ||
const props: Props = data.props.map((prop) => { | ||
return { | ||
...prop, | ||
id: ObjectId().toString(), | ||
instanceId: instance.id, | ||
}; | ||
}); | ||
|
||
const styles: Styles = data.styles.map((styleDecl) => { | ||
return { | ||
...styleDecl, | ||
instanceId: instance.id, | ||
}; | ||
}); | ||
|
||
onPaste({ instance, props, styles }); | ||
}, | ||
}); | ||
}, [selectedInstanceData, allowAnyTarget, onPaste, onCut]); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
import { z } from "zod"; | ||
|
||
const isValidClipboardEvent = ( | ||
event: ClipboardEvent, | ||
options: { allowAnyTarget: boolean } | ||
) => { | ||
const selection = document.getSelection(); | ||
if (selection?.type === "Range") { | ||
return false; | ||
} | ||
|
||
// Note on event.target: | ||
// | ||
// The spec (https://w3c.github.io/clipboard-apis/#to-fire-a-clipboard-event) | ||
// says that if the context is not editable, the target should be the focused node. | ||
// | ||
// But in practice it seems that the target is based | ||
// on where the cursor is, rather than which element has focus. | ||
// For example, if a <button> has focus, the target is the <body> element | ||
// (at least in Chrome). | ||
|
||
// If cursor is in input, | ||
// don't copy (we may want to add more exceptions here in the future) | ||
if ( | ||
options.allowAnyTarget === false && | ||
(event.target instanceof HTMLInputElement || | ||
event.target instanceof HTMLTextAreaElement) | ||
) { | ||
return false; | ||
} | ||
|
||
return true; | ||
}; | ||
|
||
type Props<Data> = { | ||
version: string; | ||
type: z.ZodType<Data>; | ||
allowAnyTarget?: boolean; | ||
onCopy: () => undefined | Data; | ||
onCut: () => undefined | Data; | ||
onPaste: (data: Data) => void; | ||
}; | ||
|
||
export const startCopyPaste = <Type>(props: Props<Type>) => { | ||
const { version, type, allowAnyTarget = false } = props; | ||
const versionLiteral = version; | ||
|
||
const DataType = z.object({ [versionLiteral]: type }); | ||
|
||
const serialize = (data: Type) => { | ||
return JSON.stringify({ [versionLiteral]: data }); | ||
}; | ||
|
||
const deserialize = (text: string) => { | ||
try { | ||
const data = DataType.parse(JSON.parse(text)); | ||
// zod provides invalid type without versionLiteral | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
return (data as any)[versionLiteral] as Type; | ||
} catch { | ||
return; | ||
} | ||
}; | ||
|
||
const handleCopy = (event: ClipboardEvent) => { | ||
if ( | ||
event.clipboardData === null || | ||
isValidClipboardEvent(event, { allowAnyTarget }) === false | ||
) { | ||
return; | ||
} | ||
|
||
const data = props.onCopy(); | ||
if (data === undefined) { | ||
return; | ||
} | ||
|
||
// must prevent default, otherwise setData() will not work | ||
event.preventDefault(); | ||
event.clipboardData.setData("application/json", serialize(data)); | ||
}; | ||
|
||
const handleCut = (event: ClipboardEvent) => { | ||
if ( | ||
event.clipboardData === null || | ||
isValidClipboardEvent(event, { allowAnyTarget }) === false | ||
) { | ||
return; | ||
} | ||
|
||
const data = props.onCut(); | ||
if (data === undefined) { | ||
return; | ||
} | ||
|
||
// must prevent default, otherwise setData() will not work | ||
event.preventDefault(); | ||
event.clipboardData.setData("application/json", serialize(data)); | ||
}; | ||
|
||
const handlePaste = (event: ClipboardEvent) => { | ||
if ( | ||
event.clipboardData === null || | ||
// we might want a separate predicate for paste, | ||
// but for now the logic is the same | ||
isValidClipboardEvent(event, { allowAnyTarget }) === false | ||
) { | ||
return; | ||
} | ||
|
||
// this shouldn't matter, but just in case | ||
event.preventDefault(); | ||
const data = deserialize(event.clipboardData.getData("application/json")); | ||
if (data === undefined) { | ||
return; | ||
} | ||
|
||
props.onPaste(data); | ||
}; | ||
|
||
document.addEventListener("copy", handleCopy); | ||
document.addEventListener("cut", handleCut); | ||
document.addEventListener("paste", handlePaste); | ||
|
||
return () => { | ||
document.removeEventListener("copy", handleCopy); | ||
document.removeEventListener("cut", handleCut); | ||
document.removeEventListener("paste", handlePaste); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
export * from "./use-instance-copy-paste"; | ||
export * from "./serialize"; | ||
export * from "./copy-paste-instance"; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.