intlayer-editor 3.0.3 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/DictionaryEditionDrawer/DictionaryEditionDrawer.cjs +16 -18
- package/dist/cjs/DictionaryEditionDrawer/DictionaryEditionDrawer.cjs.map +1 -1
- package/dist/cjs/DictionaryEditionDrawer/useDictionaryEditionDrawer.cjs +4 -20
- package/dist/cjs/DictionaryEditionDrawer/useDictionaryEditionDrawer.cjs.map +1 -1
- package/dist/cjs/index.cjs +0 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/DictionaryEditionDrawer/DictionaryEditionDrawer.mjs +17 -19
- package/dist/esm/DictionaryEditionDrawer/DictionaryEditionDrawer.mjs.map +1 -1
- package/dist/esm/DictionaryEditionDrawer/useDictionaryEditionDrawer.mjs +4 -20
- package/dist/esm/DictionaryEditionDrawer/useDictionaryEditionDrawer.mjs.map +1 -1
- package/dist/esm/index.mjs +0 -1
- package/dist/esm/index.mjs.map +1 -1
- package/dist/types/DictionaryEditionDrawer/DictionaryEditionDrawer.d.ts +1 -0
- package/dist/types/DictionaryEditionDrawer/DictionaryEditionDrawer.d.ts.map +1 -1
- package/dist/types/DictionaryEditionDrawer/useDictionaryEditionDrawer.d.ts +0 -6
- package/dist/types/DictionaryEditionDrawer/useDictionaryEditionDrawer.d.ts.map +1 -1
- package/dist/types/index.d.ts +0 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +26 -26
- package/dist/cjs/useEditorServer.cjs +0 -56
- package/dist/cjs/useEditorServer.cjs.map +0 -1
- package/dist/esm/useEditorServer.mjs +0 -32
- package/dist/esm/useEditorServer.mjs.map +0 -1
- package/dist/types/useEditorServer.d.ts +0 -4
- package/dist/types/useEditorServer.d.ts.map +0 -1
|
@@ -30,18 +30,14 @@ var import_hooks = require("@intlayer/design-system/hooks");
|
|
|
30
30
|
var import_react = require("react");
|
|
31
31
|
var import_useDictionaryListDrawer = require('../DictionaryListDrawer/useDictionaryListDrawer.cjs');
|
|
32
32
|
var import_useDictionaryEditionDrawer = require('./useDictionaryEditionDrawer.cjs');
|
|
33
|
-
const DictionaryEditionDrawerContent = ({ locale, identifier }) => {
|
|
33
|
+
const DictionaryEditionDrawerContent = ({ locale, identifier, handleOnBack }) => {
|
|
34
34
|
const [keyPathEditionModal, setKeyPathEditionModal] = (0, import_react.useState)(null);
|
|
35
|
-
const {
|
|
36
|
-
setFocusedContent,
|
|
37
|
-
setDictionariesRecord,
|
|
38
|
-
editContentRequest,
|
|
39
|
-
editedContent,
|
|
40
|
-
focusedContent,
|
|
41
|
-
addEditedContent,
|
|
42
|
-
clearEditedDictionaryContent
|
|
43
|
-
} = (0, import_useDictionaryEditionDrawer.useDictionaryEditionDrawer)(identifier);
|
|
35
|
+
const { setDictionariesRecord, focusedContent } = (0, import_useDictionaryEditionDrawer.useDictionaryEditionDrawer)(identifier);
|
|
44
36
|
const { all: dictionaries } = (0, import_hooks.useGetAllDictionaries)();
|
|
37
|
+
const onClickDictionaryList = (0, import_react.useCallback)(() => {
|
|
38
|
+
setKeyPathEditionModal(null);
|
|
39
|
+
handleOnBack();
|
|
40
|
+
}, [handleOnBack]);
|
|
45
41
|
(0, import_react.useEffect)(() => {
|
|
46
42
|
if (dictionaries) {
|
|
47
43
|
setDictionariesRecord(dictionaries);
|
|
@@ -59,7 +55,14 @@ const DictionaryEditionDrawerContent = ({ locale, identifier }) => {
|
|
|
59
55
|
hasCloseButton: true,
|
|
60
56
|
title: "Edit field",
|
|
61
57
|
size: "xl",
|
|
62
|
-
|
|
58
|
+
transparency: "lg",
|
|
59
|
+
children: dictionary && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
60
|
+
import_design_system.DictionaryFieldEditor,
|
|
61
|
+
{
|
|
62
|
+
dictionary,
|
|
63
|
+
onClickDictionaryList
|
|
64
|
+
}
|
|
65
|
+
)
|
|
63
66
|
}
|
|
64
67
|
),
|
|
65
68
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
@@ -67,12 +70,6 @@ const DictionaryEditionDrawerContent = ({ locale, identifier }) => {
|
|
|
67
70
|
{
|
|
68
71
|
dictionary,
|
|
69
72
|
locale,
|
|
70
|
-
focusedKeyPath: focusedContent.keyPath,
|
|
71
|
-
editedContent: editedContent[dictionaryId],
|
|
72
|
-
onFocusKeyPath: (keyPath) => setFocusedContent({ ...focusedContent, keyPath }),
|
|
73
|
-
onContentChange: (keyPath, newValue) => addEditedContent(dictionaryId, newValue, keyPath),
|
|
74
|
-
onValidEdition: editContentRequest,
|
|
75
|
-
onCancelEdition: () => clearEditedDictionaryContent(dictionaryId),
|
|
76
73
|
onClickEdit: setKeyPathEditionModal
|
|
77
74
|
}
|
|
78
75
|
)
|
|
@@ -113,7 +110,8 @@ const DictionaryEditionDrawer = ({
|
|
|
113
110
|
{
|
|
114
111
|
focusedContent,
|
|
115
112
|
locale,
|
|
116
|
-
identifier: id
|
|
113
|
+
identifier: id,
|
|
114
|
+
handleOnBack
|
|
117
115
|
}
|
|
118
116
|
)
|
|
119
117
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/client/DictionaryEditionDrawer/DictionaryEditionDrawer.tsx"],"sourcesContent":["'use client';\n\nimport type { Locales } from '@intlayer/config/client';\nimport type { Dictionary, KeyPath } from '@intlayer/core';\nimport {\n RightDrawer,\n DictionaryEditor,\n LocaleSwitcher,\n Modal,\n useEditionPanelStore,\n DictionaryFieldEditor,\n} from '@intlayer/design-system';\nimport { useGetAllDictionaries } from '@intlayer/design-system/hooks';\nimport { useEffect, useState, type FC } from 'react';\nimport { useDictionaryListDrawer } from '../DictionaryListDrawer/useDictionaryListDrawer';\nimport {\n type FileContent as FileContentWithDictionaryPath,\n useDictionaryEditionDrawer,\n getDrawerIdentifier,\n} from './useDictionaryEditionDrawer';\n\ntype DictionaryEditionDrawerContentProps = {\n focusedContent: FileContentWithDictionaryPath;\n locale: Locales;\n identifier: string;\n};\n\nexport const DictionaryEditionDrawerContent: FC<\n DictionaryEditionDrawerContentProps\n> = ({ locale, identifier }) => {\n const [keyPathEditionModal, setKeyPathEditionModal] = useState<\n KeyPath[] | null\n >(null);\n const {
|
|
1
|
+
{"version":3,"sources":["../../../src/client/DictionaryEditionDrawer/DictionaryEditionDrawer.tsx"],"sourcesContent":["'use client';\n\nimport type { Locales } from '@intlayer/config/client';\nimport type { Dictionary, KeyPath } from '@intlayer/core';\nimport {\n RightDrawer,\n DictionaryEditor,\n LocaleSwitcher,\n Modal,\n useEditionPanelStore,\n DictionaryFieldEditor,\n} from '@intlayer/design-system';\nimport { useGetAllDictionaries } from '@intlayer/design-system/hooks';\nimport { useCallback, useEffect, useState, type FC } from 'react';\nimport { useDictionaryListDrawer } from '../DictionaryListDrawer/useDictionaryListDrawer';\nimport {\n type FileContent as FileContentWithDictionaryPath,\n useDictionaryEditionDrawer,\n getDrawerIdentifier,\n} from './useDictionaryEditionDrawer';\n\ntype DictionaryEditionDrawerContentProps = {\n focusedContent: FileContentWithDictionaryPath;\n locale: Locales;\n identifier: string;\n handleOnBack: () => void;\n};\n\nexport const DictionaryEditionDrawerContent: FC<\n DictionaryEditionDrawerContentProps\n> = ({ locale, identifier, handleOnBack }) => {\n const [keyPathEditionModal, setKeyPathEditionModal] = useState<\n KeyPath[] | null\n >(null);\n const { setDictionariesRecord, focusedContent } =\n useDictionaryEditionDrawer(identifier);\n const { all: dictionaries } = useGetAllDictionaries();\n\n const onClickDictionaryList = useCallback(() => {\n setKeyPathEditionModal(null);\n handleOnBack();\n }, [handleOnBack]);\n\n useEffect(() => {\n if (dictionaries) {\n setDictionariesRecord(dictionaries);\n }\n }, [setDictionariesRecord, dictionaries]);\n\n const dictionaryId = focusedContent?.dictionaryId;\n\n if (!dictionaryId) return <>No dictionary focused</>;\n\n const dictionary: Dictionary = dictionaries[dictionaryId];\n\n return (\n <>\n <Modal\n isOpen={keyPathEditionModal !== null}\n onClose={() => setKeyPathEditionModal(null)}\n hasCloseButton\n title=\"Edit field\"\n size=\"xl\"\n transparency=\"lg\"\n >\n {dictionary && (\n <DictionaryFieldEditor\n dictionary={dictionary}\n onClickDictionaryList={onClickDictionaryList}\n />\n )}\n </Modal>\n <DictionaryEditor\n dictionary={dictionary}\n locale={locale}\n onClickEdit={setKeyPathEditionModal}\n />\n </>\n );\n};\n\ntype DictionaryEditionDrawerProps = DictionaryEditionDrawerControllerProps & {\n dictionaryId: string;\n};\n\nexport const DictionaryEditionDrawer: FC<DictionaryEditionDrawerProps> = ({\n locale,\n localeList,\n setLocale,\n dictionaryId,\n}) => {\n const id = getDrawerIdentifier(dictionaryId);\n\n const { focusedContent, close } = useDictionaryEditionDrawer(dictionaryId);\n const { open: openDictionaryListDrawer } = useDictionaryListDrawer();\n\n const handleOnBack = () => {\n close();\n openDictionaryListDrawer();\n };\n\n return (\n <RightDrawer\n title={dictionaryId}\n identifier={id}\n header={\n <LocaleSwitcher\n setLocale={setLocale}\n locale={locale}\n localeList={localeList}\n />\n }\n backButton={{\n onBack: handleOnBack,\n text: 'Dictionary list',\n }}\n >\n {focusedContent && (\n <DictionaryEditionDrawerContent\n focusedContent={focusedContent}\n locale={locale}\n identifier={id}\n handleOnBack={handleOnBack}\n />\n )}\n </RightDrawer>\n );\n};\n\ntype DictionaryEditionDrawerControllerProps = {\n locale: Locales;\n localeList: Locales[];\n setLocale: (locale: Locales) => void;\n};\n\nexport const DictionaryEditionDrawerController: FC<\n DictionaryEditionDrawerControllerProps\n> = ({ locale, localeList, setLocale }) => {\n const focusedContent = useEditionPanelStore((s) => s.focusedContent);\n const dictionaryId: string | undefined = focusedContent?.dictionaryId;\n\n if (!dictionaryId) {\n return <></>;\n }\n\n return (\n <DictionaryEditionDrawer\n locale={locale}\n localeList={localeList}\n setLocale={setLocale}\n dictionaryId={dictionaryId}\n />\n );\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAmD4B;AA/C5B,2BAOO;AACP,mBAAsC;AACtC,mBAA0D;AAC1D,qCAAwC;AACxC,wCAIO;AASA,MAAM,iCAET,CAAC,EAAE,QAAQ,YAAY,aAAa,MAAM;AAC5C,QAAM,CAAC,qBAAqB,sBAAsB,QAAI,uBAEpD,IAAI;AACN,QAAM,EAAE,uBAAuB,eAAe,QAC5C,8DAA2B,UAAU;AACvC,QAAM,EAAE,KAAK,aAAa,QAAI,oCAAsB;AAEpD,QAAM,4BAAwB,0BAAY,MAAM;AAC9C,2BAAuB,IAAI;AAC3B,iBAAa;AAAA,EACf,GAAG,CAAC,YAAY,CAAC;AAEjB,8BAAU,MAAM;AACd,QAAI,cAAc;AAChB,4BAAsB,YAAY;AAAA,IACpC;AAAA,EACF,GAAG,CAAC,uBAAuB,YAAY,CAAC;AAExC,QAAM,eAAe,gBAAgB;AAErC,MAAI,CAAC,aAAc,QAAO,2EAAE,mCAAqB;AAEjD,QAAM,aAAyB,aAAa,YAAY;AAExD,SACE,4EACE;AAAA;AAAA,MAAC;AAAA;AAAA,QACC,QAAQ,wBAAwB;AAAA,QAChC,SAAS,MAAM,uBAAuB,IAAI;AAAA,QAC1C,gBAAc;AAAA,QACd,OAAM;AAAA,QACN,MAAK;AAAA,QACL,cAAa;AAAA,QAEZ,wBACC;AAAA,UAAC;AAAA;AAAA,YACC;AAAA,YACA;AAAA;AAAA,QACF;AAAA;AAAA,IAEJ;AAAA,IACA;AAAA,MAAC;AAAA;AAAA,QACC;AAAA,QACA;AAAA,QACA,aAAa;AAAA;AAAA,IACf;AAAA,KACF;AAEJ;AAMO,MAAM,0BAA4D,CAAC;AAAA,EACxE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MAAM;AACJ,QAAM,SAAK,uDAAoB,YAAY;AAE3C,QAAM,EAAE,gBAAgB,MAAM,QAAI,8DAA2B,YAAY;AACzE,QAAM,EAAE,MAAM,yBAAyB,QAAI,wDAAwB;AAEnE,QAAM,eAAe,MAAM;AACzB,UAAM;AACN,6BAAyB;AAAA,EAC3B;AAEA,SACE;AAAA,IAAC;AAAA;AAAA,MACC,OAAO;AAAA,MACP,YAAY;AAAA,MACZ,QACE;AAAA,QAAC;AAAA;AAAA,UACC;AAAA,UACA;AAAA,UACA;AAAA;AAAA,MACF;AAAA,MAEF,YAAY;AAAA,QACV,QAAQ;AAAA,QACR,MAAM;AAAA,MACR;AAAA,MAEC,4BACC;AAAA,QAAC;AAAA;AAAA,UACC;AAAA,UACA;AAAA,UACA,YAAY;AAAA,UACZ;AAAA;AAAA,MACF;AAAA;AAAA,EAEJ;AAEJ;AAQO,MAAM,oCAET,CAAC,EAAE,QAAQ,YAAY,UAAU,MAAM;AACzC,QAAM,qBAAiB,2CAAqB,CAAC,MAAM,EAAE,cAAc;AACnE,QAAM,eAAmC,gBAAgB;AAEzD,MAAI,CAAC,cAAc;AACjB,WAAO,2EAAE;AAAA,EACX;AAEA,SACE;AAAA,IAAC;AAAA;AAAA,MACC;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA;AAAA,EACF;AAEJ;","names":[]}
|
|
@@ -24,29 +24,18 @@ __export(useDictionaryEditionDrawer_exports, {
|
|
|
24
24
|
});
|
|
25
25
|
module.exports = __toCommonJS(useDictionaryEditionDrawer_exports);
|
|
26
26
|
var import_design_system = require("@intlayer/design-system");
|
|
27
|
-
var import_useEditorServer = require('../useEditorServer.cjs');
|
|
28
27
|
const getDrawerIdentifier = (dictionaryId) => `dictionary_edition_${dictionaryId}`;
|
|
29
28
|
const useDictionaryEditionDrawer = (dictionaryId) => {
|
|
30
29
|
const id = getDrawerIdentifier(dictionaryId);
|
|
31
30
|
const { isOpen, open, close } = (0, import_design_system.useRightDrawerStore)(id)();
|
|
32
|
-
const {
|
|
33
|
-
editedContent,
|
|
34
|
-
setDictionariesRecord,
|
|
35
|
-
getEditedContentValue,
|
|
36
|
-
addEditedContent,
|
|
37
|
-
clearEditedDictionaryContent
|
|
38
|
-
} = (0, import_design_system.useEditedContentStore)((s) => ({
|
|
39
|
-
editedContent: s.editedContent,
|
|
31
|
+
const { setDictionariesRecord, getEditedContentValue } = (0, import_design_system.useEditedContentStore)((s) => ({
|
|
40
32
|
setDictionariesRecord: s.setDictionariesRecord,
|
|
41
|
-
|
|
42
|
-
getEditedContentValue: s.getEditedContentValue,
|
|
43
|
-
clearEditedDictionaryContent: s.clearEditedDictionaryContent
|
|
33
|
+
getEditedContentValue: s.getEditedContentValue
|
|
44
34
|
}));
|
|
45
35
|
const { setFocusedContent, focusedContent } = (0, import_design_system.useEditionPanelStore)((s) => ({
|
|
46
36
|
focusedContent: s.focusedContent,
|
|
47
37
|
setFocusedContent: s.setFocusedContent
|
|
48
38
|
}));
|
|
49
|
-
const { editContentRequest } = (0, import_useEditorServer.useEditorServer)();
|
|
50
39
|
const openDictionaryEditionDrawer = ({
|
|
51
40
|
dictionaryId: dictionaryId2,
|
|
52
41
|
dictionaryPath,
|
|
@@ -62,15 +51,10 @@ const useDictionaryEditionDrawer = (dictionaryId) => {
|
|
|
62
51
|
return {
|
|
63
52
|
isOpen,
|
|
64
53
|
focusedContent,
|
|
65
|
-
setFocusedContent,
|
|
66
54
|
setDictionariesRecord,
|
|
67
|
-
open: openDictionaryEditionDrawer,
|
|
68
|
-
close,
|
|
69
55
|
getEditedContentValue,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
addEditedContent,
|
|
73
|
-
clearEditedDictionaryContent
|
|
56
|
+
open: openDictionaryEditionDrawer,
|
|
57
|
+
close
|
|
74
58
|
};
|
|
75
59
|
};
|
|
76
60
|
const useDictionaryEditionDrawerControl = () => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/client/DictionaryEditionDrawer/useDictionaryEditionDrawer.ts"],"sourcesContent":["import type { Dictionary, DictionaryValue, KeyPath } from '@intlayer/core';\nimport {\n useRightDrawerStore,\n useEditedContentStore,\n useEditionPanelStore,\n
|
|
1
|
+
{"version":3,"sources":["../../../src/client/DictionaryEditionDrawer/useDictionaryEditionDrawer.ts"],"sourcesContent":["import type { Dictionary, DictionaryValue, KeyPath } from '@intlayer/core';\nimport {\n useRightDrawerStore,\n useEditedContentStore,\n useEditionPanelStore,\n} from '@intlayer/design-system';\n\nexport const getDrawerIdentifier = (dictionaryId: string) =>\n `dictionary_edition_${dictionaryId}`;\n\ntype DictionaryId = string;\ntype DictionaryPath = string;\n\nexport type FileContent = {\n dictionaryPath?: DictionaryPath;\n dictionaryId: string;\n keyPath?: KeyPath[];\n};\n\ntype DictionaryEditionDrawer = {\n focusedContent: FileContent | null;\n isOpen: boolean;\n open: (content: FileContent) => void;\n close: () => void;\n setDictionariesRecord: (\n dictionariesRecord: Record<DictionaryId, Dictionary>\n ) => void;\n getEditedContentValue: (\n dictionaryId: DictionaryId,\n keyPath: KeyPath[]\n ) => DictionaryValue | undefined;\n};\n\ntype OpenDictionaryEditionDrawerProps = {\n dictionaryId: string;\n dictionaryPath?: string;\n keyPath?: KeyPath[];\n};\n\nexport const useDictionaryEditionDrawer = (\n dictionaryId: string\n): DictionaryEditionDrawer => {\n const id = getDrawerIdentifier(dictionaryId);\n const { isOpen, open, close } = useRightDrawerStore(id)();\n const { setDictionariesRecord, getEditedContentValue } =\n useEditedContentStore((s) => ({\n setDictionariesRecord: s.setDictionariesRecord,\n getEditedContentValue: s.getEditedContentValue,\n }));\n const { setFocusedContent, focusedContent } = useEditionPanelStore((s) => ({\n focusedContent: s.focusedContent,\n setFocusedContent: s.setFocusedContent,\n }));\n\n const openDictionaryEditionDrawer = ({\n dictionaryId,\n dictionaryPath,\n keyPath = [],\n }: OpenDictionaryEditionDrawerProps) => {\n setFocusedContent({\n dictionaryId,\n dictionaryPath,\n keyPath,\n });\n\n open();\n };\n\n return {\n isOpen,\n focusedContent,\n setDictionariesRecord,\n getEditedContentValue,\n open: openDictionaryEditionDrawer,\n close,\n };\n};\n\ntype DictionaryEditionDrawerControl = {\n open: (content: FileContent) => void;\n close: (dictionaryId: string) => void;\n};\n\nexport const useDictionaryEditionDrawerControl =\n (): DictionaryEditionDrawerControl => {\n const setFocusedContent = useEditionPanelStore((s) => s.setFocusedContent);\n\n const open = ({\n dictionaryId,\n dictionaryPath,\n keyPath = [],\n }: OpenDictionaryEditionDrawerProps) => {\n setFocusedContent({\n dictionaryId,\n dictionaryPath,\n keyPath,\n });\n\n const id = getDrawerIdentifier(dictionaryId);\n\n useRightDrawerStore(id).getState().open();\n };\n\n const close = (dictionaryId: string) => {\n const id = getDrawerIdentifier(dictionaryId);\n\n useRightDrawerStore(id).getState().close();\n };\n\n return {\n open,\n close,\n };\n };\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,2BAIO;AAEA,MAAM,sBAAsB,CAAC,iBAClC,sBAAsB,YAAY;AA+B7B,MAAM,6BAA6B,CACxC,iBAC4B;AAC5B,QAAM,KAAK,oBAAoB,YAAY;AAC3C,QAAM,EAAE,QAAQ,MAAM,MAAM,QAAI,0CAAoB,EAAE,EAAE;AACxD,QAAM,EAAE,uBAAuB,sBAAsB,QACnD,4CAAsB,CAAC,OAAO;AAAA,IAC5B,uBAAuB,EAAE;AAAA,IACzB,uBAAuB,EAAE;AAAA,EAC3B,EAAE;AACJ,QAAM,EAAE,mBAAmB,eAAe,QAAI,2CAAqB,CAAC,OAAO;AAAA,IACzE,gBAAgB,EAAE;AAAA,IAClB,mBAAmB,EAAE;AAAA,EACvB,EAAE;AAEF,QAAM,8BAA8B,CAAC;AAAA,IACnC,cAAAA;AAAA,IACA;AAAA,IACA,UAAU,CAAC;AAAA,EACb,MAAwC;AACtC,sBAAkB;AAAA,MAChB,cAAAA;AAAA,MACA;AAAA,MACA;AAAA,IACF,CAAC;AAED,SAAK;AAAA,EACP;AAEA,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA,MAAM;AAAA,IACN;AAAA,EACF;AACF;AAOO,MAAM,oCACX,MAAsC;AACpC,QAAM,wBAAoB,2CAAqB,CAAC,MAAM,EAAE,iBAAiB;AAEzE,QAAM,OAAO,CAAC;AAAA,IACZ;AAAA,IACA;AAAA,IACA,UAAU,CAAC;AAAA,EACb,MAAwC;AACtC,sBAAkB;AAAA,MAChB;AAAA,MACA;AAAA,MACA;AAAA,IACF,CAAC;AAED,UAAM,KAAK,oBAAoB,YAAY;AAE3C,kDAAoB,EAAE,EAAE,SAAS,EAAE,KAAK;AAAA,EAC1C;AAEA,QAAM,QAAQ,CAAC,iBAAyB;AACtC,UAAM,KAAK,oBAAoB,YAAY;AAE3C,kDAAoB,EAAE,EAAE,SAAS,EAAE,MAAM;AAAA,EAC3C;AAEA,SAAO;AAAA,IACL;AAAA,IACA;AAAA,EACF;AACF;","names":["dictionaryId"]}
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -18,7 +18,6 @@ module.exports = __toCommonJS(client_exports);
|
|
|
18
18
|
__reExport(client_exports, require('./DictionaryEditionDrawer/index.cjs'), module.exports);
|
|
19
19
|
__reExport(client_exports, require('./DictionaryListDrawer/index.cjs'), module.exports);
|
|
20
20
|
__reExport(client_exports, require('./ContentEditionLayout.cjs'), module.exports);
|
|
21
|
-
__reExport(client_exports, require('./useEditorServer.cjs'), module.exports);
|
|
22
21
|
__reExport(client_exports, require('./renderContentEditor.cjs'), module.exports);
|
|
23
22
|
__reExport(client_exports, require('./ContentEditorProvider.cjs'), module.exports);
|
|
24
23
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -26,7 +25,6 @@ __reExport(client_exports, require('./ContentEditorProvider.cjs'), module.export
|
|
|
26
25
|
...require('./DictionaryEditionDrawer/index.cjs'),
|
|
27
26
|
...require('./DictionaryListDrawer/index.cjs'),
|
|
28
27
|
...require('./ContentEditionLayout.cjs'),
|
|
29
|
-
...require('./useEditorServer.cjs'),
|
|
30
28
|
...require('./renderContentEditor.cjs'),
|
|
31
29
|
...require('./ContentEditorProvider.cjs')
|
|
32
30
|
});
|
package/dist/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/client/index.ts"],"sourcesContent":["export * from './DictionaryEditionDrawer/index';\nexport * from './DictionaryListDrawer/index';\nexport * from './ContentEditionLayout';\nexport * from './
|
|
1
|
+
{"version":3,"sources":["../../src/client/index.ts"],"sourcesContent":["export * from './DictionaryEditionDrawer/index';\nexport * from './DictionaryListDrawer/index';\nexport * from './ContentEditionLayout';\nexport * from './renderContentEditor';\nexport * from './ContentEditorProvider';\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,2BAAc,4CAAd;AACA,2BAAc,yCADd;AAEA,2BAAc,mCAFd;AAGA,2BAAc,kCAHd;AAIA,2BAAc,oCAJd;","names":[]}
|
|
@@ -9,24 +9,20 @@ import {
|
|
|
9
9
|
DictionaryFieldEditor
|
|
10
10
|
} from "@intlayer/design-system";
|
|
11
11
|
import { useGetAllDictionaries } from "@intlayer/design-system/hooks";
|
|
12
|
-
import { useEffect, useState } from "react";
|
|
12
|
+
import { useCallback, useEffect, useState } from "react";
|
|
13
13
|
import { useDictionaryListDrawer } from '../DictionaryListDrawer/useDictionaryListDrawer.mjs';
|
|
14
14
|
import {
|
|
15
15
|
useDictionaryEditionDrawer,
|
|
16
16
|
getDrawerIdentifier
|
|
17
17
|
} from './useDictionaryEditionDrawer.mjs';
|
|
18
|
-
const DictionaryEditionDrawerContent = ({ locale, identifier }) => {
|
|
18
|
+
const DictionaryEditionDrawerContent = ({ locale, identifier, handleOnBack }) => {
|
|
19
19
|
const [keyPathEditionModal, setKeyPathEditionModal] = useState(null);
|
|
20
|
-
const {
|
|
21
|
-
setFocusedContent,
|
|
22
|
-
setDictionariesRecord,
|
|
23
|
-
editContentRequest,
|
|
24
|
-
editedContent,
|
|
25
|
-
focusedContent,
|
|
26
|
-
addEditedContent,
|
|
27
|
-
clearEditedDictionaryContent
|
|
28
|
-
} = useDictionaryEditionDrawer(identifier);
|
|
20
|
+
const { setDictionariesRecord, focusedContent } = useDictionaryEditionDrawer(identifier);
|
|
29
21
|
const { all: dictionaries } = useGetAllDictionaries();
|
|
22
|
+
const onClickDictionaryList = useCallback(() => {
|
|
23
|
+
setKeyPathEditionModal(null);
|
|
24
|
+
handleOnBack();
|
|
25
|
+
}, [handleOnBack]);
|
|
30
26
|
useEffect(() => {
|
|
31
27
|
if (dictionaries) {
|
|
32
28
|
setDictionariesRecord(dictionaries);
|
|
@@ -44,7 +40,14 @@ const DictionaryEditionDrawerContent = ({ locale, identifier }) => {
|
|
|
44
40
|
hasCloseButton: true,
|
|
45
41
|
title: "Edit field",
|
|
46
42
|
size: "xl",
|
|
47
|
-
|
|
43
|
+
transparency: "lg",
|
|
44
|
+
children: dictionary && /* @__PURE__ */ jsx(
|
|
45
|
+
DictionaryFieldEditor,
|
|
46
|
+
{
|
|
47
|
+
dictionary,
|
|
48
|
+
onClickDictionaryList
|
|
49
|
+
}
|
|
50
|
+
)
|
|
48
51
|
}
|
|
49
52
|
),
|
|
50
53
|
/* @__PURE__ */ jsx(
|
|
@@ -52,12 +55,6 @@ const DictionaryEditionDrawerContent = ({ locale, identifier }) => {
|
|
|
52
55
|
{
|
|
53
56
|
dictionary,
|
|
54
57
|
locale,
|
|
55
|
-
focusedKeyPath: focusedContent.keyPath,
|
|
56
|
-
editedContent: editedContent[dictionaryId],
|
|
57
|
-
onFocusKeyPath: (keyPath) => setFocusedContent({ ...focusedContent, keyPath }),
|
|
58
|
-
onContentChange: (keyPath, newValue) => addEditedContent(dictionaryId, newValue, keyPath),
|
|
59
|
-
onValidEdition: editContentRequest,
|
|
60
|
-
onCancelEdition: () => clearEditedDictionaryContent(dictionaryId),
|
|
61
58
|
onClickEdit: setKeyPathEditionModal
|
|
62
59
|
}
|
|
63
60
|
)
|
|
@@ -98,7 +95,8 @@ const DictionaryEditionDrawer = ({
|
|
|
98
95
|
{
|
|
99
96
|
focusedContent,
|
|
100
97
|
locale,
|
|
101
|
-
identifier: id
|
|
98
|
+
identifier: id,
|
|
99
|
+
handleOnBack
|
|
102
100
|
}
|
|
103
101
|
)
|
|
104
102
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/client/DictionaryEditionDrawer/DictionaryEditionDrawer.tsx"],"sourcesContent":["'use client';\n\nimport type { Locales } from '@intlayer/config/client';\nimport type { Dictionary, KeyPath } from '@intlayer/core';\nimport {\n RightDrawer,\n DictionaryEditor,\n LocaleSwitcher,\n Modal,\n useEditionPanelStore,\n DictionaryFieldEditor,\n} from '@intlayer/design-system';\nimport { useGetAllDictionaries } from '@intlayer/design-system/hooks';\nimport { useEffect, useState, type FC } from 'react';\nimport { useDictionaryListDrawer } from '../DictionaryListDrawer/useDictionaryListDrawer';\nimport {\n type FileContent as FileContentWithDictionaryPath,\n useDictionaryEditionDrawer,\n getDrawerIdentifier,\n} from './useDictionaryEditionDrawer';\n\ntype DictionaryEditionDrawerContentProps = {\n focusedContent: FileContentWithDictionaryPath;\n locale: Locales;\n identifier: string;\n};\n\nexport const DictionaryEditionDrawerContent: FC<\n DictionaryEditionDrawerContentProps\n> = ({ locale, identifier }) => {\n const [keyPathEditionModal, setKeyPathEditionModal] = useState<\n KeyPath[] | null\n >(null);\n const {
|
|
1
|
+
{"version":3,"sources":["../../../src/client/DictionaryEditionDrawer/DictionaryEditionDrawer.tsx"],"sourcesContent":["'use client';\n\nimport type { Locales } from '@intlayer/config/client';\nimport type { Dictionary, KeyPath } from '@intlayer/core';\nimport {\n RightDrawer,\n DictionaryEditor,\n LocaleSwitcher,\n Modal,\n useEditionPanelStore,\n DictionaryFieldEditor,\n} from '@intlayer/design-system';\nimport { useGetAllDictionaries } from '@intlayer/design-system/hooks';\nimport { useCallback, useEffect, useState, type FC } from 'react';\nimport { useDictionaryListDrawer } from '../DictionaryListDrawer/useDictionaryListDrawer';\nimport {\n type FileContent as FileContentWithDictionaryPath,\n useDictionaryEditionDrawer,\n getDrawerIdentifier,\n} from './useDictionaryEditionDrawer';\n\ntype DictionaryEditionDrawerContentProps = {\n focusedContent: FileContentWithDictionaryPath;\n locale: Locales;\n identifier: string;\n handleOnBack: () => void;\n};\n\nexport const DictionaryEditionDrawerContent: FC<\n DictionaryEditionDrawerContentProps\n> = ({ locale, identifier, handleOnBack }) => {\n const [keyPathEditionModal, setKeyPathEditionModal] = useState<\n KeyPath[] | null\n >(null);\n const { setDictionariesRecord, focusedContent } =\n useDictionaryEditionDrawer(identifier);\n const { all: dictionaries } = useGetAllDictionaries();\n\n const onClickDictionaryList = useCallback(() => {\n setKeyPathEditionModal(null);\n handleOnBack();\n }, [handleOnBack]);\n\n useEffect(() => {\n if (dictionaries) {\n setDictionariesRecord(dictionaries);\n }\n }, [setDictionariesRecord, dictionaries]);\n\n const dictionaryId = focusedContent?.dictionaryId;\n\n if (!dictionaryId) return <>No dictionary focused</>;\n\n const dictionary: Dictionary = dictionaries[dictionaryId];\n\n return (\n <>\n <Modal\n isOpen={keyPathEditionModal !== null}\n onClose={() => setKeyPathEditionModal(null)}\n hasCloseButton\n title=\"Edit field\"\n size=\"xl\"\n transparency=\"lg\"\n >\n {dictionary && (\n <DictionaryFieldEditor\n dictionary={dictionary}\n onClickDictionaryList={onClickDictionaryList}\n />\n )}\n </Modal>\n <DictionaryEditor\n dictionary={dictionary}\n locale={locale}\n onClickEdit={setKeyPathEditionModal}\n />\n </>\n );\n};\n\ntype DictionaryEditionDrawerProps = DictionaryEditionDrawerControllerProps & {\n dictionaryId: string;\n};\n\nexport const DictionaryEditionDrawer: FC<DictionaryEditionDrawerProps> = ({\n locale,\n localeList,\n setLocale,\n dictionaryId,\n}) => {\n const id = getDrawerIdentifier(dictionaryId);\n\n const { focusedContent, close } = useDictionaryEditionDrawer(dictionaryId);\n const { open: openDictionaryListDrawer } = useDictionaryListDrawer();\n\n const handleOnBack = () => {\n close();\n openDictionaryListDrawer();\n };\n\n return (\n <RightDrawer\n title={dictionaryId}\n identifier={id}\n header={\n <LocaleSwitcher\n setLocale={setLocale}\n locale={locale}\n localeList={localeList}\n />\n }\n backButton={{\n onBack: handleOnBack,\n text: 'Dictionary list',\n }}\n >\n {focusedContent && (\n <DictionaryEditionDrawerContent\n focusedContent={focusedContent}\n locale={locale}\n identifier={id}\n handleOnBack={handleOnBack}\n />\n )}\n </RightDrawer>\n );\n};\n\ntype DictionaryEditionDrawerControllerProps = {\n locale: Locales;\n localeList: Locales[];\n setLocale: (locale: Locales) => void;\n};\n\nexport const DictionaryEditionDrawerController: FC<\n DictionaryEditionDrawerControllerProps\n> = ({ locale, localeList, setLocale }) => {\n const focusedContent = useEditionPanelStore((s) => s.focusedContent);\n const dictionaryId: string | undefined = focusedContent?.dictionaryId;\n\n if (!dictionaryId) {\n return <></>;\n }\n\n return (\n <DictionaryEditionDrawer\n locale={locale}\n localeList={localeList}\n setLocale={setLocale}\n dictionaryId={dictionaryId}\n />\n );\n};\n"],"mappings":";AAmD4B,wBAKxB,YALwB;AA/C5B;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,6BAA6B;AACtC,SAAS,aAAa,WAAW,gBAAyB;AAC1D,SAAS,+BAA+B;AACxC;AAAA,EAEE;AAAA,EACA;AAAA,OACK;AASA,MAAM,iCAET,CAAC,EAAE,QAAQ,YAAY,aAAa,MAAM;AAC5C,QAAM,CAAC,qBAAqB,sBAAsB,IAAI,SAEpD,IAAI;AACN,QAAM,EAAE,uBAAuB,eAAe,IAC5C,2BAA2B,UAAU;AACvC,QAAM,EAAE,KAAK,aAAa,IAAI,sBAAsB;AAEpD,QAAM,wBAAwB,YAAY,MAAM;AAC9C,2BAAuB,IAAI;AAC3B,iBAAa;AAAA,EACf,GAAG,CAAC,YAAY,CAAC;AAEjB,YAAU,MAAM;AACd,QAAI,cAAc;AAChB,4BAAsB,YAAY;AAAA,IACpC;AAAA,EACF,GAAG,CAAC,uBAAuB,YAAY,CAAC;AAExC,QAAM,eAAe,gBAAgB;AAErC,MAAI,CAAC,aAAc,QAAO,gCAAE,mCAAqB;AAEjD,QAAM,aAAyB,aAAa,YAAY;AAExD,SACE,iCACE;AAAA;AAAA,MAAC;AAAA;AAAA,QACC,QAAQ,wBAAwB;AAAA,QAChC,SAAS,MAAM,uBAAuB,IAAI;AAAA,QAC1C,gBAAc;AAAA,QACd,OAAM;AAAA,QACN,MAAK;AAAA,QACL,cAAa;AAAA,QAEZ,wBACC;AAAA,UAAC;AAAA;AAAA,YACC;AAAA,YACA;AAAA;AAAA,QACF;AAAA;AAAA,IAEJ;AAAA,IACA;AAAA,MAAC;AAAA;AAAA,QACC;AAAA,QACA;AAAA,QACA,aAAa;AAAA;AAAA,IACf;AAAA,KACF;AAEJ;AAMO,MAAM,0BAA4D,CAAC;AAAA,EACxE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MAAM;AACJ,QAAM,KAAK,oBAAoB,YAAY;AAE3C,QAAM,EAAE,gBAAgB,MAAM,IAAI,2BAA2B,YAAY;AACzE,QAAM,EAAE,MAAM,yBAAyB,IAAI,wBAAwB;AAEnE,QAAM,eAAe,MAAM;AACzB,UAAM;AACN,6BAAyB;AAAA,EAC3B;AAEA,SACE;AAAA,IAAC;AAAA;AAAA,MACC,OAAO;AAAA,MACP,YAAY;AAAA,MACZ,QACE;AAAA,QAAC;AAAA;AAAA,UACC;AAAA,UACA;AAAA,UACA;AAAA;AAAA,MACF;AAAA,MAEF,YAAY;AAAA,QACV,QAAQ;AAAA,QACR,MAAM;AAAA,MACR;AAAA,MAEC,4BACC;AAAA,QAAC;AAAA;AAAA,UACC;AAAA,UACA;AAAA,UACA,YAAY;AAAA,UACZ;AAAA;AAAA,MACF;AAAA;AAAA,EAEJ;AAEJ;AAQO,MAAM,oCAET,CAAC,EAAE,QAAQ,YAAY,UAAU,MAAM;AACzC,QAAM,iBAAiB,qBAAqB,CAAC,MAAM,EAAE,cAAc;AACnE,QAAM,eAAmC,gBAAgB;AAEzD,MAAI,CAAC,cAAc;AACjB,WAAO,gCAAE;AAAA,EACX;AAEA,SACE;AAAA,IAAC;AAAA;AAAA,MACC;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA;AAAA,EACF;AAEJ;","names":[]}
|
|
@@ -3,29 +3,18 @@ import {
|
|
|
3
3
|
useEditedContentStore,
|
|
4
4
|
useEditionPanelStore
|
|
5
5
|
} from "@intlayer/design-system";
|
|
6
|
-
import { useEditorServer } from '../useEditorServer.mjs';
|
|
7
6
|
const getDrawerIdentifier = (dictionaryId) => `dictionary_edition_${dictionaryId}`;
|
|
8
7
|
const useDictionaryEditionDrawer = (dictionaryId) => {
|
|
9
8
|
const id = getDrawerIdentifier(dictionaryId);
|
|
10
9
|
const { isOpen, open, close } = useRightDrawerStore(id)();
|
|
11
|
-
const {
|
|
12
|
-
editedContent,
|
|
13
|
-
setDictionariesRecord,
|
|
14
|
-
getEditedContentValue,
|
|
15
|
-
addEditedContent,
|
|
16
|
-
clearEditedDictionaryContent
|
|
17
|
-
} = useEditedContentStore((s) => ({
|
|
18
|
-
editedContent: s.editedContent,
|
|
10
|
+
const { setDictionariesRecord, getEditedContentValue } = useEditedContentStore((s) => ({
|
|
19
11
|
setDictionariesRecord: s.setDictionariesRecord,
|
|
20
|
-
|
|
21
|
-
getEditedContentValue: s.getEditedContentValue,
|
|
22
|
-
clearEditedDictionaryContent: s.clearEditedDictionaryContent
|
|
12
|
+
getEditedContentValue: s.getEditedContentValue
|
|
23
13
|
}));
|
|
24
14
|
const { setFocusedContent, focusedContent } = useEditionPanelStore((s) => ({
|
|
25
15
|
focusedContent: s.focusedContent,
|
|
26
16
|
setFocusedContent: s.setFocusedContent
|
|
27
17
|
}));
|
|
28
|
-
const { editContentRequest } = useEditorServer();
|
|
29
18
|
const openDictionaryEditionDrawer = ({
|
|
30
19
|
dictionaryId: dictionaryId2,
|
|
31
20
|
dictionaryPath,
|
|
@@ -41,15 +30,10 @@ const useDictionaryEditionDrawer = (dictionaryId) => {
|
|
|
41
30
|
return {
|
|
42
31
|
isOpen,
|
|
43
32
|
focusedContent,
|
|
44
|
-
setFocusedContent,
|
|
45
33
|
setDictionariesRecord,
|
|
46
|
-
open: openDictionaryEditionDrawer,
|
|
47
|
-
close,
|
|
48
34
|
getEditedContentValue,
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
addEditedContent,
|
|
52
|
-
clearEditedDictionaryContent
|
|
35
|
+
open: openDictionaryEditionDrawer,
|
|
36
|
+
close
|
|
53
37
|
};
|
|
54
38
|
};
|
|
55
39
|
const useDictionaryEditionDrawerControl = () => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/client/DictionaryEditionDrawer/useDictionaryEditionDrawer.ts"],"sourcesContent":["import type { Dictionary, DictionaryValue, KeyPath } from '@intlayer/core';\nimport {\n useRightDrawerStore,\n useEditedContentStore,\n useEditionPanelStore,\n
|
|
1
|
+
{"version":3,"sources":["../../../src/client/DictionaryEditionDrawer/useDictionaryEditionDrawer.ts"],"sourcesContent":["import type { Dictionary, DictionaryValue, KeyPath } from '@intlayer/core';\nimport {\n useRightDrawerStore,\n useEditedContentStore,\n useEditionPanelStore,\n} from '@intlayer/design-system';\n\nexport const getDrawerIdentifier = (dictionaryId: string) =>\n `dictionary_edition_${dictionaryId}`;\n\ntype DictionaryId = string;\ntype DictionaryPath = string;\n\nexport type FileContent = {\n dictionaryPath?: DictionaryPath;\n dictionaryId: string;\n keyPath?: KeyPath[];\n};\n\ntype DictionaryEditionDrawer = {\n focusedContent: FileContent | null;\n isOpen: boolean;\n open: (content: FileContent) => void;\n close: () => void;\n setDictionariesRecord: (\n dictionariesRecord: Record<DictionaryId, Dictionary>\n ) => void;\n getEditedContentValue: (\n dictionaryId: DictionaryId,\n keyPath: KeyPath[]\n ) => DictionaryValue | undefined;\n};\n\ntype OpenDictionaryEditionDrawerProps = {\n dictionaryId: string;\n dictionaryPath?: string;\n keyPath?: KeyPath[];\n};\n\nexport const useDictionaryEditionDrawer = (\n dictionaryId: string\n): DictionaryEditionDrawer => {\n const id = getDrawerIdentifier(dictionaryId);\n const { isOpen, open, close } = useRightDrawerStore(id)();\n const { setDictionariesRecord, getEditedContentValue } =\n useEditedContentStore((s) => ({\n setDictionariesRecord: s.setDictionariesRecord,\n getEditedContentValue: s.getEditedContentValue,\n }));\n const { setFocusedContent, focusedContent } = useEditionPanelStore((s) => ({\n focusedContent: s.focusedContent,\n setFocusedContent: s.setFocusedContent,\n }));\n\n const openDictionaryEditionDrawer = ({\n dictionaryId,\n dictionaryPath,\n keyPath = [],\n }: OpenDictionaryEditionDrawerProps) => {\n setFocusedContent({\n dictionaryId,\n dictionaryPath,\n keyPath,\n });\n\n open();\n };\n\n return {\n isOpen,\n focusedContent,\n setDictionariesRecord,\n getEditedContentValue,\n open: openDictionaryEditionDrawer,\n close,\n };\n};\n\ntype DictionaryEditionDrawerControl = {\n open: (content: FileContent) => void;\n close: (dictionaryId: string) => void;\n};\n\nexport const useDictionaryEditionDrawerControl =\n (): DictionaryEditionDrawerControl => {\n const setFocusedContent = useEditionPanelStore((s) => s.setFocusedContent);\n\n const open = ({\n dictionaryId,\n dictionaryPath,\n keyPath = [],\n }: OpenDictionaryEditionDrawerProps) => {\n setFocusedContent({\n dictionaryId,\n dictionaryPath,\n keyPath,\n });\n\n const id = getDrawerIdentifier(dictionaryId);\n\n useRightDrawerStore(id).getState().open();\n };\n\n const close = (dictionaryId: string) => {\n const id = getDrawerIdentifier(dictionaryId);\n\n useRightDrawerStore(id).getState().close();\n };\n\n return {\n open,\n close,\n };\n };\n"],"mappings":"AACA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEA,MAAM,sBAAsB,CAAC,iBAClC,sBAAsB,YAAY;AA+B7B,MAAM,6BAA6B,CACxC,iBAC4B;AAC5B,QAAM,KAAK,oBAAoB,YAAY;AAC3C,QAAM,EAAE,QAAQ,MAAM,MAAM,IAAI,oBAAoB,EAAE,EAAE;AACxD,QAAM,EAAE,uBAAuB,sBAAsB,IACnD,sBAAsB,CAAC,OAAO;AAAA,IAC5B,uBAAuB,EAAE;AAAA,IACzB,uBAAuB,EAAE;AAAA,EAC3B,EAAE;AACJ,QAAM,EAAE,mBAAmB,eAAe,IAAI,qBAAqB,CAAC,OAAO;AAAA,IACzE,gBAAgB,EAAE;AAAA,IAClB,mBAAmB,EAAE;AAAA,EACvB,EAAE;AAEF,QAAM,8BAA8B,CAAC;AAAA,IACnC,cAAAA;AAAA,IACA;AAAA,IACA,UAAU,CAAC;AAAA,EACb,MAAwC;AACtC,sBAAkB;AAAA,MAChB,cAAAA;AAAA,MACA;AAAA,MACA;AAAA,IACF,CAAC;AAED,SAAK;AAAA,EACP;AAEA,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA,MAAM;AAAA,IACN;AAAA,EACF;AACF;AAOO,MAAM,oCACX,MAAsC;AACpC,QAAM,oBAAoB,qBAAqB,CAAC,MAAM,EAAE,iBAAiB;AAEzE,QAAM,OAAO,CAAC;AAAA,IACZ;AAAA,IACA;AAAA,IACA,UAAU,CAAC;AAAA,EACb,MAAwC;AACtC,sBAAkB;AAAA,MAChB;AAAA,MACA;AAAA,MACA;AAAA,IACF,CAAC;AAED,UAAM,KAAK,oBAAoB,YAAY;AAE3C,wBAAoB,EAAE,EAAE,SAAS,EAAE,KAAK;AAAA,EAC1C;AAEA,QAAM,QAAQ,CAAC,iBAAyB;AACtC,UAAM,KAAK,oBAAoB,YAAY;AAE3C,wBAAoB,EAAE,EAAE,SAAS,EAAE,MAAM;AAAA,EAC3C;AAEA,SAAO;AAAA,IACL;AAAA,IACA;AAAA,EACF;AACF;","names":["dictionaryId"]}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export * from './DictionaryEditionDrawer/index.mjs';
|
|
2
2
|
export * from './DictionaryListDrawer/index.mjs';
|
|
3
3
|
export * from './ContentEditionLayout.mjs';
|
|
4
|
-
export * from './useEditorServer.mjs';
|
|
5
4
|
export * from './renderContentEditor.mjs';
|
|
6
5
|
export * from './ContentEditorProvider.mjs';
|
|
7
6
|
//# sourceMappingURL=index.mjs.map
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/client/index.ts"],"sourcesContent":["export * from './DictionaryEditionDrawer/index';\nexport * from './DictionaryListDrawer/index';\nexport * from './ContentEditionLayout';\nexport * from './
|
|
1
|
+
{"version":3,"sources":["../../src/client/index.ts"],"sourcesContent":["export * from './DictionaryEditionDrawer/index';\nexport * from './DictionaryListDrawer/index';\nexport * from './ContentEditionLayout';\nexport * from './renderContentEditor';\nexport * from './ContentEditorProvider';\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
|
@@ -5,6 +5,7 @@ type DictionaryEditionDrawerContentProps = {
|
|
|
5
5
|
focusedContent: FileContentWithDictionaryPath;
|
|
6
6
|
locale: Locales;
|
|
7
7
|
identifier: string;
|
|
8
|
+
handleOnBack: () => void;
|
|
8
9
|
};
|
|
9
10
|
export declare const DictionaryEditionDrawerContent: FC<DictionaryEditionDrawerContentProps>;
|
|
10
11
|
type DictionaryEditionDrawerProps = DictionaryEditionDrawerControllerProps & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DictionaryEditionDrawer.d.ts","sourceRoot":"","sources":["../../../src/client/DictionaryEditionDrawer/DictionaryEditionDrawer.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAWvD,OAAO,
|
|
1
|
+
{"version":3,"file":"DictionaryEditionDrawer.d.ts","sourceRoot":"","sources":["../../../src/client/DictionaryEditionDrawer/DictionaryEditionDrawer.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAWvD,OAAO,EAAoC,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAElE,OAAO,EACL,KAAK,WAAW,IAAI,6BAA6B,EAGlD,MAAM,8BAA8B,CAAC;AAEtC,KAAK,mCAAmC,GAAG;IACzC,cAAc,EAAE,6BAA6B,CAAC;IAC9C,MAAM,EAAE,OAAO,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,IAAI,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,EAAE,CAC7C,mCAAmC,CAkDpC,CAAC;AAEF,KAAK,4BAA4B,GAAG,sCAAsC,GAAG;IAC3E,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,EAAE,CAAC,4BAA4B,CA0CpE,CAAC;AAEF,KAAK,sCAAsC,GAAG;IAC5C,MAAM,EAAE,OAAO,CAAC;IAChB,UAAU,EAAE,OAAO,EAAE,CAAC;IACtB,SAAS,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;CACtC,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,EAAE,CAChD,sCAAsC,CAiBvC,CAAC"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { Dictionary, DictionaryValue, KeyPath } from '@intlayer/core';
|
|
2
|
-
import { type DictionaryContent } from '@intlayer/design-system';
|
|
3
2
|
export declare const getDrawerIdentifier: (dictionaryId: string) => string;
|
|
4
3
|
type DictionaryId = string;
|
|
5
4
|
type DictionaryPath = string;
|
|
@@ -10,16 +9,11 @@ export type FileContent = {
|
|
|
10
9
|
};
|
|
11
10
|
type DictionaryEditionDrawer = {
|
|
12
11
|
focusedContent: FileContent | null;
|
|
13
|
-
setFocusedContent: (content: FileContent | null) => void;
|
|
14
12
|
isOpen: boolean;
|
|
15
13
|
open: (content: FileContent) => void;
|
|
16
14
|
close: () => void;
|
|
17
|
-
editContentRequest: () => Promise<void>;
|
|
18
|
-
editedContent: DictionaryContent;
|
|
19
|
-
addEditedContent: (dictionaryId: DictionaryId, newValue: DictionaryValue, keyPath: KeyPath[]) => void;
|
|
20
15
|
setDictionariesRecord: (dictionariesRecord: Record<DictionaryId, Dictionary>) => void;
|
|
21
16
|
getEditedContentValue: (dictionaryId: DictionaryId, keyPath: KeyPath[]) => DictionaryValue | undefined;
|
|
22
|
-
clearEditedDictionaryContent: (dictionaryPath: DictionaryPath) => void;
|
|
23
17
|
};
|
|
24
18
|
export declare const useDictionaryEditionDrawer: (dictionaryId: string) => DictionaryEditionDrawer;
|
|
25
19
|
type DictionaryEditionDrawerControl = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useDictionaryEditionDrawer.d.ts","sourceRoot":"","sources":["../../../src/client/DictionaryEditionDrawer/useDictionaryEditionDrawer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"useDictionaryEditionDrawer.d.ts","sourceRoot":"","sources":["../../../src/client/DictionaryEditionDrawer/useDictionaryEditionDrawer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAO3E,eAAO,MAAM,mBAAmB,iBAAkB,MAAM,WAClB,CAAC;AAEvC,KAAK,YAAY,GAAG,MAAM,CAAC;AAC3B,KAAK,cAAc,GAAG,MAAM,CAAC;AAE7B,MAAM,MAAM,WAAW,GAAG;IACxB,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,EAAE,CAAC;CACrB,CAAC;AAEF,KAAK,uBAAuB,GAAG;IAC7B,cAAc,EAAE,WAAW,GAAG,IAAI,CAAC;IACnC,MAAM,EAAE,OAAO,CAAC;IAChB,IAAI,EAAE,CAAC,OAAO,EAAE,WAAW,KAAK,IAAI,CAAC;IACrC,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,qBAAqB,EAAE,CACrB,kBAAkB,EAAE,MAAM,CAAC,YAAY,EAAE,UAAU,CAAC,KACjD,IAAI,CAAC;IACV,qBAAqB,EAAE,CACrB,YAAY,EAAE,YAAY,EAC1B,OAAO,EAAE,OAAO,EAAE,KACf,eAAe,GAAG,SAAS,CAAC;CAClC,CAAC;AAQF,eAAO,MAAM,0BAA0B,iBACvB,MAAM,KACnB,uBAmCF,CAAC;AAEF,KAAK,8BAA8B,GAAG;IACpC,IAAI,EAAE,CAAC,OAAO,EAAE,WAAW,KAAK,IAAI,CAAC;IACrC,KAAK,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;CACvC,CAAC;AAEF,eAAO,MAAM,iCAAiC,QACxC,8BA6BH,CAAC"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export * from './DictionaryEditionDrawer/index';
|
|
2
2
|
export * from './DictionaryListDrawer/index';
|
|
3
3
|
export * from './ContentEditionLayout';
|
|
4
|
-
export * from './useEditorServer';
|
|
5
4
|
export * from './renderContentEditor';
|
|
6
5
|
export * from './ContentEditorProvider';
|
|
7
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intlayer-editor",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "IntLayer Editor is a tool that allow you to edit your IntLayer declaration files using a graphical interface.",
|
|
6
6
|
"keywords": [
|
|
@@ -62,42 +62,42 @@
|
|
|
62
62
|
"@types/body-parser": "^1.19.5",
|
|
63
63
|
"body-parser": "^1.20.3",
|
|
64
64
|
"commander": "^12.1.0",
|
|
65
|
-
"express": "^4.21.
|
|
66
|
-
"lucide-react": "^0.
|
|
65
|
+
"express": "^4.21.1",
|
|
66
|
+
"lucide-react": "^0.456.0",
|
|
67
67
|
"magic-regexp": "^0.8.0",
|
|
68
68
|
"react": "^18.3.1",
|
|
69
69
|
"react-dom": "^18.3.1",
|
|
70
|
-
"webpack": "^5.
|
|
71
|
-
"zustand": "^
|
|
72
|
-
"@intlayer/
|
|
73
|
-
"@intlayer/
|
|
74
|
-
"intlayer": "^3.0
|
|
75
|
-
"@intlayer/config": "^3.0
|
|
76
|
-
"
|
|
70
|
+
"webpack": "^5.96.1",
|
|
71
|
+
"zustand": "^5.0.1",
|
|
72
|
+
"@intlayer/core": "^3.1.0",
|
|
73
|
+
"@intlayer/design-system": "^3.1.0",
|
|
74
|
+
"@intlayer/dictionaries-entry": "^3.1.0",
|
|
75
|
+
"@intlayer/config": "^3.1.0",
|
|
76
|
+
"intlayer": "^3.1.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@babel/generator": "7.
|
|
80
|
-
"@babel/parser": "7.
|
|
81
|
-
"@babel/types": "7.
|
|
79
|
+
"@babel/generator": "7.26.2",
|
|
80
|
+
"@babel/parser": "7.26.2",
|
|
81
|
+
"@babel/types": "7.26.0",
|
|
82
82
|
"@changesets/changelog-github": "0.5.0",
|
|
83
|
-
"@changesets/cli": "2.27.
|
|
83
|
+
"@changesets/cli": "2.27.9",
|
|
84
84
|
"@types/babel__generator": "^7.6.8",
|
|
85
|
-
"@types/express": "^
|
|
86
|
-
"@types/node": "^
|
|
87
|
-
"@types/react": "^18.3.
|
|
88
|
-
"@types/react-dom": "^18.3.
|
|
89
|
-
"concurrently": "^
|
|
90
|
-
"eslint": "^9.
|
|
91
|
-
"prettier": "3.3.3",
|
|
92
|
-
"rimraf": "
|
|
85
|
+
"@types/express": "^5.0.0",
|
|
86
|
+
"@types/node": "^22.9.0",
|
|
87
|
+
"@types/react": "^18.3.12",
|
|
88
|
+
"@types/react-dom": "^18.3.1",
|
|
89
|
+
"concurrently": "^9.1.0",
|
|
90
|
+
"eslint": "^9.14.0",
|
|
91
|
+
"prettier": "^3.3.3",
|
|
92
|
+
"rimraf": "^6.0.1",
|
|
93
93
|
"ts-node": "^10.9.2",
|
|
94
94
|
"tsc-alias": "^1.8.10",
|
|
95
|
-
"tsup": "^8.3.
|
|
96
|
-
"typescript": "^5.
|
|
95
|
+
"tsup": "^8.3.5",
|
|
96
|
+
"typescript": "^5.6.3",
|
|
97
97
|
"@utils/eslint-config": "^1.0.4",
|
|
98
|
+
"@utils/ts-config": "^1.0.4",
|
|
98
99
|
"@utils/ts-config-types": "^1.0.4",
|
|
99
|
-
"@utils/tsup-config": "^1.0.4"
|
|
100
|
-
"@utils/ts-config": "^1.0.4"
|
|
100
|
+
"@utils/tsup-config": "^1.0.4"
|
|
101
101
|
},
|
|
102
102
|
"engines": {
|
|
103
103
|
"node": ">=14.18"
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var useEditorServer_exports = {};
|
|
20
|
-
__export(useEditorServer_exports, {
|
|
21
|
-
useEditorServer: () => useEditorServer
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(useEditorServer_exports);
|
|
24
|
-
var import_client = require("@intlayer/config/client");
|
|
25
|
-
var import_design_system = require("@intlayer/design-system");
|
|
26
|
-
const useEditorServer = () => {
|
|
27
|
-
const { editedContent, clearEditedContent } = (0, import_design_system.useEditedContentStore)((s) => ({
|
|
28
|
-
editedContent: s.editedContent,
|
|
29
|
-
clearEditedContent: s.clearEditedContent
|
|
30
|
-
}));
|
|
31
|
-
const editContentRequest = async () => {
|
|
32
|
-
const {
|
|
33
|
-
editor: { backendURL }
|
|
34
|
-
} = (0, import_client.getConfiguration)();
|
|
35
|
-
await fetch(backendURL, {
|
|
36
|
-
method: "POST",
|
|
37
|
-
headers: {
|
|
38
|
-
"Content-Type": "application/json"
|
|
39
|
-
},
|
|
40
|
-
body: JSON.stringify(editedContent)
|
|
41
|
-
}).then((response) => {
|
|
42
|
-
if (!response.ok) {
|
|
43
|
-
throw new Error("Failed to edit content");
|
|
44
|
-
}
|
|
45
|
-
clearEditedContent();
|
|
46
|
-
}).catch((error) => {
|
|
47
|
-
console.error("Failed to edit content:", error);
|
|
48
|
-
});
|
|
49
|
-
};
|
|
50
|
-
return { editContentRequest };
|
|
51
|
-
};
|
|
52
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
-
0 && (module.exports = {
|
|
54
|
-
useEditorServer
|
|
55
|
-
});
|
|
56
|
-
//# sourceMappingURL=useEditorServer.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/client/useEditorServer.ts"],"sourcesContent":["import { getConfiguration } from '@intlayer/config/client';\nimport { useEditedContentStore } from '@intlayer/design-system';\n\nexport const useEditorServer = () => {\n const { editedContent, clearEditedContent } = useEditedContentStore((s) => ({\n editedContent: s.editedContent,\n clearEditedContent: s.clearEditedContent,\n }));\n\n const editContentRequest = async () => {\n const {\n editor: { backendURL },\n } = getConfiguration();\n\n await fetch(backendURL, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(editedContent),\n })\n .then((response) => {\n if (!response.ok) {\n throw new Error('Failed to edit content');\n }\n clearEditedContent();\n })\n .catch((error) => {\n console.error('Failed to edit content:', error);\n });\n };\n\n return { editContentRequest };\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAAiC;AACjC,2BAAsC;AAE/B,MAAM,kBAAkB,MAAM;AACnC,QAAM,EAAE,eAAe,mBAAmB,QAAI,4CAAsB,CAAC,OAAO;AAAA,IAC1E,eAAe,EAAE;AAAA,IACjB,oBAAoB,EAAE;AAAA,EACxB,EAAE;AAEF,QAAM,qBAAqB,YAAY;AACrC,UAAM;AAAA,MACJ,QAAQ,EAAE,WAAW;AAAA,IACvB,QAAI,gCAAiB;AAErB,UAAM,MAAM,YAAY;AAAA,MACtB,QAAQ;AAAA,MACR,SAAS;AAAA,QACP,gBAAgB;AAAA,MAClB;AAAA,MACA,MAAM,KAAK,UAAU,aAAa;AAAA,IACpC,CAAC,EACE,KAAK,CAAC,aAAa;AAClB,UAAI,CAAC,SAAS,IAAI;AAChB,cAAM,IAAI,MAAM,wBAAwB;AAAA,MAC1C;AACA,yBAAmB;AAAA,IACrB,CAAC,EACA,MAAM,CAAC,UAAU;AAChB,cAAQ,MAAM,2BAA2B,KAAK;AAAA,IAChD,CAAC;AAAA,EACL;AAEA,SAAO,EAAE,mBAAmB;AAC9B;","names":[]}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { getConfiguration } from "@intlayer/config/client";
|
|
2
|
-
import { useEditedContentStore } from "@intlayer/design-system";
|
|
3
|
-
const useEditorServer = () => {
|
|
4
|
-
const { editedContent, clearEditedContent } = useEditedContentStore((s) => ({
|
|
5
|
-
editedContent: s.editedContent,
|
|
6
|
-
clearEditedContent: s.clearEditedContent
|
|
7
|
-
}));
|
|
8
|
-
const editContentRequest = async () => {
|
|
9
|
-
const {
|
|
10
|
-
editor: { backendURL }
|
|
11
|
-
} = getConfiguration();
|
|
12
|
-
await fetch(backendURL, {
|
|
13
|
-
method: "POST",
|
|
14
|
-
headers: {
|
|
15
|
-
"Content-Type": "application/json"
|
|
16
|
-
},
|
|
17
|
-
body: JSON.stringify(editedContent)
|
|
18
|
-
}).then((response) => {
|
|
19
|
-
if (!response.ok) {
|
|
20
|
-
throw new Error("Failed to edit content");
|
|
21
|
-
}
|
|
22
|
-
clearEditedContent();
|
|
23
|
-
}).catch((error) => {
|
|
24
|
-
console.error("Failed to edit content:", error);
|
|
25
|
-
});
|
|
26
|
-
};
|
|
27
|
-
return { editContentRequest };
|
|
28
|
-
};
|
|
29
|
-
export {
|
|
30
|
-
useEditorServer
|
|
31
|
-
};
|
|
32
|
-
//# sourceMappingURL=useEditorServer.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/client/useEditorServer.ts"],"sourcesContent":["import { getConfiguration } from '@intlayer/config/client';\nimport { useEditedContentStore } from '@intlayer/design-system';\n\nexport const useEditorServer = () => {\n const { editedContent, clearEditedContent } = useEditedContentStore((s) => ({\n editedContent: s.editedContent,\n clearEditedContent: s.clearEditedContent,\n }));\n\n const editContentRequest = async () => {\n const {\n editor: { backendURL },\n } = getConfiguration();\n\n await fetch(backendURL, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(editedContent),\n })\n .then((response) => {\n if (!response.ok) {\n throw new Error('Failed to edit content');\n }\n clearEditedContent();\n })\n .catch((error) => {\n console.error('Failed to edit content:', error);\n });\n };\n\n return { editContentRequest };\n};\n"],"mappings":"AAAA,SAAS,wBAAwB;AACjC,SAAS,6BAA6B;AAE/B,MAAM,kBAAkB,MAAM;AACnC,QAAM,EAAE,eAAe,mBAAmB,IAAI,sBAAsB,CAAC,OAAO;AAAA,IAC1E,eAAe,EAAE;AAAA,IACjB,oBAAoB,EAAE;AAAA,EACxB,EAAE;AAEF,QAAM,qBAAqB,YAAY;AACrC,UAAM;AAAA,MACJ,QAAQ,EAAE,WAAW;AAAA,IACvB,IAAI,iBAAiB;AAErB,UAAM,MAAM,YAAY;AAAA,MACtB,QAAQ;AAAA,MACR,SAAS;AAAA,QACP,gBAAgB;AAAA,MAClB;AAAA,MACA,MAAM,KAAK,UAAU,aAAa;AAAA,IACpC,CAAC,EACE,KAAK,CAAC,aAAa;AAClB,UAAI,CAAC,SAAS,IAAI;AAChB,cAAM,IAAI,MAAM,wBAAwB;AAAA,MAC1C;AACA,yBAAmB;AAAA,IACrB,CAAC,EACA,MAAM,CAAC,UAAU;AAChB,cAAQ,MAAM,2BAA2B,KAAK;AAAA,IAChD,CAAC;AAAA,EACL;AAEA,SAAO,EAAE,mBAAmB;AAC9B;","names":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useEditorServer.d.ts","sourceRoot":"","sources":["../../src/client/useEditorServer.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe;;CA8B3B,CAAC"}
|