@pega/cosmos-react-rte 5.0.0-dev.4.9 → 5.0.0-dev.6.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/lib/components/DynamicContentEditor/DynamicContentEditor.d.ts +12 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.d.ts.map +1 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.js +252 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.js.map +1 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.test-ids.d.ts +2 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.test-ids.d.ts.map +1 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.test-ids.js +8 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.test-ids.js.map +1 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.types.d.ts +35 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.types.d.ts.map +1 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.types.js +3 -0
- package/lib/components/DynamicContentEditor/DynamicContentEditor.types.js.map +1 -0
- package/lib/components/DynamicContentEditor/PegaCustomElement.d.ts +329 -0
- package/lib/components/DynamicContentEditor/PegaCustomElement.d.ts.map +1 -0
- package/lib/components/DynamicContentEditor/PegaCustomElement.js +27 -0
- package/lib/components/DynamicContentEditor/PegaCustomElement.js.map +1 -0
- package/lib/components/DynamicContentEditor/index.d.ts +3 -0
- package/lib/components/DynamicContentEditor/index.d.ts.map +1 -0
- package/lib/components/DynamicContentEditor/index.js +2 -0
- package/lib/components/DynamicContentEditor/index.js.map +1 -0
- package/lib/components/Editor/Editor.context.d.ts +10 -0
- package/lib/components/Editor/Editor.context.d.ts.map +1 -0
- package/lib/components/Editor/Editor.context.js +10 -0
- package/lib/components/Editor/Editor.context.js.map +1 -0
- package/lib/components/Editor/Editor.d.ts +19 -0
- package/lib/components/Editor/Editor.d.ts.map +1 -0
- package/lib/components/Editor/Editor.js +366 -0
- package/lib/components/Editor/Editor.js.map +1 -0
- package/lib/components/Editor/Editor.styles.d.ts +5 -0
- package/lib/components/Editor/Editor.styles.d.ts.map +1 -0
- package/lib/components/Editor/Editor.styles.js +50 -0
- package/lib/components/Editor/Editor.styles.js.map +1 -0
- package/lib/components/Editor/Editor.test-ids.d.ts +2 -0
- package/lib/components/Editor/Editor.test-ids.d.ts.map +1 -0
- package/lib/components/Editor/Editor.test-ids.js +8 -0
- package/lib/components/Editor/Editor.test-ids.js.map +1 -0
- package/lib/components/Editor/Editor.types.d.ts +69 -0
- package/lib/components/Editor/Editor.types.d.ts.map +1 -0
- package/lib/components/Editor/Editor.types.js +2 -0
- package/lib/components/Editor/Editor.types.js.map +1 -0
- package/lib/components/Editor/ImageEditor.d.ts +10 -0
- package/lib/components/Editor/ImageEditor.d.ts.map +1 -0
- package/lib/components/Editor/ImageEditor.js +276 -0
- package/lib/components/Editor/ImageEditor.js.map +1 -0
- package/lib/components/Editor/Toolbar/AnchorButton.d.ts +10 -0
- package/lib/components/Editor/Toolbar/AnchorButton.d.ts.map +1 -0
- package/lib/components/Editor/Toolbar/AnchorButton.js +161 -0
- package/lib/components/Editor/Toolbar/AnchorButton.js.map +1 -0
- package/lib/components/Editor/Toolbar/ImageButton.d.ts +8 -0
- package/lib/components/Editor/Toolbar/ImageButton.d.ts.map +1 -0
- package/lib/components/Editor/Toolbar/ImageButton.js +30 -0
- package/lib/components/Editor/Toolbar/ImageButton.js.map +1 -0
- package/lib/components/Editor/Toolbar/TextSelect.d.ts +14 -0
- package/lib/components/Editor/Toolbar/TextSelect.d.ts.map +1 -0
- package/lib/components/Editor/Toolbar/TextSelect.js +131 -0
- package/lib/components/Editor/Toolbar/TextSelect.js.map +1 -0
- package/lib/components/Editor/Toolbar/Toolbar.d.ts +17 -0
- package/lib/components/Editor/Toolbar/Toolbar.d.ts.map +1 -0
- package/lib/components/Editor/Toolbar/Toolbar.js +164 -0
- package/lib/components/Editor/Toolbar/Toolbar.js.map +1 -0
- package/lib/components/Editor/Toolbar/Toolbar.test-ids.d.ts +3 -0
- package/lib/components/Editor/Toolbar/Toolbar.test-ids.d.ts.map +1 -0
- package/lib/components/Editor/Toolbar/Toolbar.test-ids.js +16 -0
- package/lib/components/Editor/Toolbar/Toolbar.test-ids.js.map +1 -0
- package/lib/components/Editor/index.d.ts +4 -0
- package/lib/components/Editor/index.d.ts.map +1 -0
- package/lib/components/Editor/index.js +3 -0
- package/lib/components/Editor/index.js.map +1 -0
- package/lib/components/RichTextEditor/DecoratorComponents/CodeBlock.d.ts +4 -0
- package/lib/components/RichTextEditor/DecoratorComponents/CodeBlock.d.ts.map +1 -0
- package/lib/components/RichTextEditor/DecoratorComponents/CodeBlock.js +15 -0
- package/lib/components/RichTextEditor/DecoratorComponents/CodeBlock.js.map +1 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Image.d.ts +4 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Image.d.ts.map +1 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Image.js +7 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Image.js.map +1 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Link.d.ts +4 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Link.d.ts.map +1 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Link.js +8 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Link.js.map +1 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Table.d.ts +6 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Table.d.ts.map +1 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Table.js +24 -0
- package/lib/components/RichTextEditor/DecoratorComponents/Table.js.map +1 -0
- package/lib/components/RichTextEditor/RichTextEditor.context.d.ts +15 -0
- package/lib/components/RichTextEditor/RichTextEditor.context.d.ts.map +1 -0
- package/lib/components/RichTextEditor/RichTextEditor.context.js +11 -0
- package/lib/components/RichTextEditor/RichTextEditor.context.js.map +1 -0
- package/lib/components/RichTextEditor/RichTextEditor.d.ts +6 -0
- package/lib/components/RichTextEditor/RichTextEditor.d.ts.map +1 -0
- package/lib/components/RichTextEditor/RichTextEditor.js +346 -0
- package/lib/components/RichTextEditor/RichTextEditor.js.map +1 -0
- package/lib/components/RichTextEditor/RichTextEditor.styles.d.ts +10 -0
- package/lib/components/RichTextEditor/RichTextEditor.styles.d.ts.map +1 -0
- package/lib/components/RichTextEditor/RichTextEditor.styles.js +73 -0
- package/lib/components/RichTextEditor/RichTextEditor.styles.js.map +1 -0
- package/lib/components/RichTextEditor/RichTextEditor.types.d.ts +72 -0
- package/lib/components/RichTextEditor/RichTextEditor.types.d.ts.map +1 -0
- package/lib/components/RichTextEditor/RichTextEditor.types.js +2 -0
- package/lib/components/RichTextEditor/RichTextEditor.types.js.map +1 -0
- package/lib/components/RichTextEditor/RichTextTreeRenderer.d.ts +9 -0
- package/lib/components/RichTextEditor/RichTextTreeRenderer.d.ts.map +1 -0
- package/lib/components/RichTextEditor/RichTextTreeRenderer.js +15 -0
- package/lib/components/RichTextEditor/RichTextTreeRenderer.js.map +1 -0
- package/lib/components/RichTextEditor/RichTextViewer.d.ts +7 -0
- package/lib/components/RichTextEditor/RichTextViewer.d.ts.map +1 -0
- package/lib/components/RichTextEditor/RichTextViewer.js +38 -0
- package/lib/components/RichTextEditor/RichTextViewer.js.map +1 -0
- package/lib/components/RichTextEditor/RichTextViewer.types.d.ts +33 -0
- package/lib/components/RichTextEditor/RichTextViewer.types.d.ts.map +1 -0
- package/lib/components/RichTextEditor/RichTextViewer.types.js +2 -0
- package/lib/components/RichTextEditor/RichTextViewer.types.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/AnchorButton.d.ts +8 -0
- package/lib/components/RichTextEditor/Toolbar/AnchorButton.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/AnchorButton.js +156 -0
- package/lib/components/RichTextEditor/Toolbar/AnchorButton.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/ImageButton.d.ts +5 -0
- package/lib/components/RichTextEditor/Toolbar/ImageButton.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/ImageButton.js +30 -0
- package/lib/components/RichTextEditor/Toolbar/ImageButton.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/IndentButton.d.ts +8 -0
- package/lib/components/RichTextEditor/Toolbar/IndentButton.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/IndentButton.js +31 -0
- package/lib/components/RichTextEditor/Toolbar/IndentButton.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/TableButton.d.ts +5 -0
- package/lib/components/RichTextEditor/Toolbar/TableButton.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/TableButton.js +20 -0
- package/lib/components/RichTextEditor/Toolbar/TableButton.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/TextSelect.d.ts +6 -0
- package/lib/components/RichTextEditor/Toolbar/TextSelect.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/TextSelect.js +119 -0
- package/lib/components/RichTextEditor/Toolbar/TextSelect.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/Toolbar.d.ts +10 -0
- package/lib/components/RichTextEditor/Toolbar/Toolbar.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/Toolbar.js +155 -0
- package/lib/components/RichTextEditor/Toolbar/Toolbar.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/Toolbar.types.d.ts +9 -0
- package/lib/components/RichTextEditor/Toolbar/Toolbar.types.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/Toolbar.types.js +2 -0
- package/lib/components/RichTextEditor/Toolbar/Toolbar.types.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/ToolbarButton.d.ts +14 -0
- package/lib/components/RichTextEditor/Toolbar/ToolbarButton.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/ToolbarButton.js +67 -0
- package/lib/components/RichTextEditor/Toolbar/ToolbarButton.js.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/utils.d.ts +7 -0
- package/lib/components/RichTextEditor/Toolbar/utils.d.ts.map +1 -0
- package/lib/components/RichTextEditor/Toolbar/utils.js +13 -0
- package/lib/components/RichTextEditor/Toolbar/utils.js.map +1 -0
- package/lib/components/RichTextEditor/index.d.ts +9 -0
- package/lib/components/RichTextEditor/index.d.ts.map +1 -0
- package/lib/components/RichTextEditor/index.js +6 -0
- package/lib/components/RichTextEditor/index.js.map +1 -0
- package/lib/components/RichTextEditor/utils/EditorCommands.d.ts +35 -0
- package/lib/components/RichTextEditor/utils/EditorCommands.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/EditorCommands.js +447 -0
- package/lib/components/RichTextEditor/utils/EditorCommands.js.map +1 -0
- package/lib/components/RichTextEditor/utils/ListCommands.d.ts +10 -0
- package/lib/components/RichTextEditor/utils/ListCommands.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/ListCommands.js +346 -0
- package/lib/components/RichTextEditor/utils/ListCommands.js.map +1 -0
- package/lib/components/RichTextEditor/utils/htmlConverter.d.ts +29 -0
- package/lib/components/RichTextEditor/utils/htmlConverter.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/htmlConverter.js +156 -0
- package/lib/components/RichTextEditor/utils/htmlConverter.js.map +1 -0
- package/lib/components/RichTextEditor/utils/interactionRenderer.d.ts +6 -0
- package/lib/components/RichTextEditor/utils/interactionRenderer.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/interactionRenderer.js +132 -0
- package/lib/components/RichTextEditor/utils/interactionRenderer.js.map +1 -0
- package/lib/components/RichTextEditor/utils/markdownConverter.d.ts +6 -0
- package/lib/components/RichTextEditor/utils/markdownConverter.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/markdownConverter.js +130 -0
- package/lib/components/RichTextEditor/utils/markdownConverter.js.map +1 -0
- package/lib/components/RichTextEditor/utils/renderers.d.ts +22 -0
- package/lib/components/RichTextEditor/utils/renderers.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/renderers.js +163 -0
- package/lib/components/RichTextEditor/utils/renderers.js.map +1 -0
- package/lib/components/RichTextEditor/utils/search.d.ts +11 -0
- package/lib/components/RichTextEditor/utils/search.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/search.js +37 -0
- package/lib/components/RichTextEditor/utils/search.js.map +1 -0
- package/lib/components/RichTextEditor/utils/slateConverter.d.ts +25 -0
- package/lib/components/RichTextEditor/utils/slateConverter.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/slateConverter.js +88 -0
- package/lib/components/RichTextEditor/utils/slateConverter.js.map +1 -0
- package/lib/components/RichTextEditor/utils/utils.types.d.ts +3 -0
- package/lib/components/RichTextEditor/utils/utils.types.d.ts.map +1 -0
- package/lib/components/RichTextEditor/utils/utils.types.js +3 -0
- package/lib/components/RichTextEditor/utils/utils.types.js.map +1 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +6 -0
- package/lib/index.js.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { FunctionComponent } from 'react';
|
|
2
|
+
import type { ForwardProps } from '@pega/cosmos-react-core';
|
|
3
|
+
import type { DynamicContentEditorProps } from './DynamicContentEditor.types';
|
|
4
|
+
export declare const StyledSearchPopover: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5
|
+
offset?: number | undefined;
|
|
6
|
+
portal?: boolean | undefined;
|
|
7
|
+
}, never>;
|
|
8
|
+
declare const _default: FunctionComponent<DynamicContentEditorProps & ForwardProps> & {
|
|
9
|
+
getTestIds: (testIdProp?: string | undefined) => import("@pega/cosmos-react-core").TestIdsRecord<readonly ["insert-field", "insert-field-modal", "insert-field-modal-cancel", "insert-field-modal-submit"]>;
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
12
|
+
//# sourceMappingURL=DynamicContentEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicContentEditor.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicContentEditor/DynamicContentEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAmB,MAAM,OAAO,CAAC;AAmBhE,OAAO,KAAK,EAAE,YAAY,EAAmC,MAAM,yBAAyB,CAAC;AAO7F,OAAO,KAAK,EAAE,yBAAyB,EAAwB,MAAM,8BAA8B,CAAC;AAQpG,eAAO,MAAM,mBAAmB;;;SAE/B,CAAC;;;;AA4VF,wBAAiF"}
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef, useRef, useEffect, useState } from 'react';
|
|
3
|
+
import styled from 'styled-components';
|
|
4
|
+
import { Button, defaultThemeProp, Menu, menuHelpers, Modal, Popover, StyledPopover, useModalManager, useConsolidatedRef, useI18n, useUID, useTestIds, withTestIds } from '@pega/cosmos-react-core';
|
|
5
|
+
import { getKeyCommand } from '@pega/cosmos-react-rte/lib/components/RichTextEditor/Toolbar/utils';
|
|
6
|
+
import { Editor } from '../Editor';
|
|
7
|
+
import { isFieldMenuItem } from './DynamicContentEditor.types';
|
|
8
|
+
import { pegaReferenceElementStyle, createPegaReferenceElement } from './PegaCustomElement';
|
|
9
|
+
import { getDynamicContentEditorTestIds } from './DynamicContentEditor.test-ids';
|
|
10
|
+
const StyledDynamicContentEditor = styled.div ``;
|
|
11
|
+
export const StyledSearchPopover = styled(StyledPopover) `
|
|
12
|
+
min-width: 20rem;
|
|
13
|
+
`;
|
|
14
|
+
StyledDynamicContentEditor.defaultProps = defaultThemeProp;
|
|
15
|
+
const DynamicContentEditor = forwardRef(function DynamicContentEditor({ testId, form: { dynamicContentPicker, onSubmit }, onActiveFieldChange, label, toolbar, fieldItems, defaultValue, onBlur, ...restProps }, ref) {
|
|
16
|
+
const menuID = useUID();
|
|
17
|
+
const { create } = useModalManager();
|
|
18
|
+
const t = useI18n();
|
|
19
|
+
const testIds = useTestIds(testId, getDynamicContentEditorTestIds);
|
|
20
|
+
const modalMethods = useRef();
|
|
21
|
+
const [editor, setEditor] = useState();
|
|
22
|
+
const [bookmark, setBookmark] = useState();
|
|
23
|
+
const [fieldMenuItems, setFieldMenuItems] = useState(fieldItems || []);
|
|
24
|
+
const [currentElementId, setCurrentElementId] = useState('');
|
|
25
|
+
const [currentElementContent, setCurrentElementContent] = useState('');
|
|
26
|
+
const [currentElementNamespace, setCurrentElementNamespace] = useState('');
|
|
27
|
+
const [currentCursorPosition, setCurrentCursorPosition] = useState({
|
|
28
|
+
bottom: 0,
|
|
29
|
+
height: 0,
|
|
30
|
+
left: 0,
|
|
31
|
+
right: 0,
|
|
32
|
+
top: 0,
|
|
33
|
+
width: 0,
|
|
34
|
+
x: 0,
|
|
35
|
+
y: 0,
|
|
36
|
+
toJSON: () => { }
|
|
37
|
+
});
|
|
38
|
+
const [showFieldsPopover, setShowFieldsPopover] = useState(false);
|
|
39
|
+
const fieldPopoverRef = useRef(null);
|
|
40
|
+
const editorRef = useConsolidatedRef(ref);
|
|
41
|
+
const tooltip = getKeyCommand(navigator.appVersion.includes('Mac'), ({ ctrl }) => `${t('rte_insert_field')} (${ctrl}/)`);
|
|
42
|
+
const insertField = (field) => {
|
|
43
|
+
if (!editor)
|
|
44
|
+
return;
|
|
45
|
+
const fieldContent = `<pega-reference role="button" contenteditable="false" data-rule-type='field' data-rule-id=${field.id} ${field.namespace && `data-rule-namespace=${field.namespace}`}>${field.text}</pega-reference>`;
|
|
46
|
+
if (bookmark) {
|
|
47
|
+
editor.selection.moveToBookmark(bookmark);
|
|
48
|
+
editor.selection.setContent(fieldContent);
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
editor.insertContent(fieldContent);
|
|
52
|
+
}
|
|
53
|
+
modalMethods.current?.dismiss();
|
|
54
|
+
};
|
|
55
|
+
const modalProps = {
|
|
56
|
+
'data-testid': testIds.insertFieldModal,
|
|
57
|
+
children: dynamicContentPicker,
|
|
58
|
+
heading: t('rte_insert_field'),
|
|
59
|
+
actions: (_jsxs(_Fragment, { children: [_jsx(Button, { "data-testid": testIds.insertFieldModalCancel, variant: 'secondary', onClick: () => modalMethods.current?.dismiss(), children: t('cancel') }), _jsx(Button, { "data-testid": testIds.insertFieldModalSubmit, variant: 'primary', onClick: () => onSubmit(insertField), children: t('submit') })] })),
|
|
60
|
+
center: true,
|
|
61
|
+
onAfterClose: () => {
|
|
62
|
+
setBookmark(undefined);
|
|
63
|
+
setCurrentElementId('');
|
|
64
|
+
setCurrentElementContent('');
|
|
65
|
+
setCurrentElementNamespace('');
|
|
66
|
+
onActiveFieldChange({ id: '', text: '', namespace: '' });
|
|
67
|
+
},
|
|
68
|
+
onBeforeOpen: () => {
|
|
69
|
+
if (currentElementId) {
|
|
70
|
+
onActiveFieldChange({
|
|
71
|
+
id: currentElementId,
|
|
72
|
+
text: currentElementContent,
|
|
73
|
+
namespace: currentElementNamespace
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
const findAndRenameField = (fieldId) => {
|
|
79
|
+
if (!editor || !fieldMenuItems)
|
|
80
|
+
return;
|
|
81
|
+
const selectedRange = editor.selection.getRng();
|
|
82
|
+
const endOffset = selectedRange.endOffset;
|
|
83
|
+
const stringToSearch = selectedRange.commonAncestorContainer.nodeValue?.slice(0, endOffset);
|
|
84
|
+
if (stringToSearch === undefined)
|
|
85
|
+
return;
|
|
86
|
+
const splitSearch = stringToSearch.split(' ');
|
|
87
|
+
const fieldString = splitSearch[splitSearch.length - 1];
|
|
88
|
+
const range = editor.getDoc().createRange();
|
|
89
|
+
const startPos = stringToSearch.lastIndexOf(fieldString);
|
|
90
|
+
const endPos = startPos + fieldString.length;
|
|
91
|
+
range.setStart(selectedRange.commonAncestorContainer, startPos);
|
|
92
|
+
range.setEnd(selectedRange.commonAncestorContainer, endPos);
|
|
93
|
+
editor.getDoc().getSelection()?.removeAllRanges();
|
|
94
|
+
editor.getDoc().getSelection()?.addRange(range);
|
|
95
|
+
const selectedField = menuHelpers.getItem(fieldMenuItems, fieldId);
|
|
96
|
+
if (selectedField && isFieldMenuItem(selectedField)) {
|
|
97
|
+
editor.selection.setContent(`<pega-reference role="button" contenteditable="false" data-rule-type="field" data-rule-id="${selectedField.id}" ${selectedField.namespace && `data-rule-namespace=${selectedField.namespace}`}>${selectedField.primary}</pega-reference>`);
|
|
98
|
+
setShowFieldsPopover(false);
|
|
99
|
+
}
|
|
100
|
+
};
|
|
101
|
+
const hidePopover = () => {
|
|
102
|
+
if (fieldPopoverRef)
|
|
103
|
+
setShowFieldsPopover(false);
|
|
104
|
+
};
|
|
105
|
+
const filterFieldMenu = (searchString) => {
|
|
106
|
+
setShowFieldsPopover(true);
|
|
107
|
+
setFieldMenuItems(fieldItems || []);
|
|
108
|
+
if (/\s/.test(searchString)) {
|
|
109
|
+
setShowFieldsPopover(false);
|
|
110
|
+
return;
|
|
111
|
+
}
|
|
112
|
+
if (searchString && fieldMenuItems) {
|
|
113
|
+
const newFieldMenuItems = menuHelpers
|
|
114
|
+
.flatten(fieldMenuItems)
|
|
115
|
+
.filter(({ primary }) => primary.toLowerCase().startsWith(searchString.toLocaleLowerCase()));
|
|
116
|
+
if (newFieldMenuItems) {
|
|
117
|
+
setShowFieldsPopover(true);
|
|
118
|
+
setFieldMenuItems(newFieldMenuItems);
|
|
119
|
+
}
|
|
120
|
+
else
|
|
121
|
+
setShowFieldsPopover(false);
|
|
122
|
+
}
|
|
123
|
+
};
|
|
124
|
+
const updateBookmarkAndCurrentElement = (editorSelection) => {
|
|
125
|
+
const targetEl = editorSelection.getNode();
|
|
126
|
+
const fieldId = targetEl.getAttribute('data-rule-id');
|
|
127
|
+
const fieldNamespace = targetEl.getAttribute('data-rule-namespace');
|
|
128
|
+
const fieldValue = targetEl.innerText;
|
|
129
|
+
setBookmark(editorSelection.getBookmark());
|
|
130
|
+
setCurrentElementId(fieldId || '');
|
|
131
|
+
setCurrentElementContent(fieldValue);
|
|
132
|
+
setCurrentElementNamespace(fieldNamespace || '');
|
|
133
|
+
};
|
|
134
|
+
const handleElementClick = ({ target }) => {
|
|
135
|
+
if (editor && target && target.tagName === 'PEGA-REFERENCE') {
|
|
136
|
+
updateBookmarkAndCurrentElement(editor.selection);
|
|
137
|
+
}
|
|
138
|
+
hidePopover();
|
|
139
|
+
};
|
|
140
|
+
const onInsertField = (incEditor) => {
|
|
141
|
+
const targetEl = incEditor.selection.getNode();
|
|
142
|
+
if (targetEl.tagName === 'PEGA-REFERENCE') {
|
|
143
|
+
updateBookmarkAndCurrentElement(incEditor.selection);
|
|
144
|
+
}
|
|
145
|
+
else {
|
|
146
|
+
modalMethods.current = create(Modal, modalProps);
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
const isPegaRefActive = (incEditor) => {
|
|
150
|
+
const targetEl = incEditor.selection.getNode();
|
|
151
|
+
return targetEl.tagName === 'PEGA-REFERENCE';
|
|
152
|
+
};
|
|
153
|
+
const fieldSelectionPopover = (_jsx(Popover, { show: showFieldsPopover, strategy: 'fixed', ref: fieldPopoverRef, target: {
|
|
154
|
+
getBoundingClientRect() {
|
|
155
|
+
return currentCursorPosition;
|
|
156
|
+
}
|
|
157
|
+
}, modifiers: [
|
|
158
|
+
{
|
|
159
|
+
name: 'offset',
|
|
160
|
+
options: {
|
|
161
|
+
offset: () => {
|
|
162
|
+
const iframe = editorRef.current?.element?.querySelector('iframe');
|
|
163
|
+
const iframeRect = iframe?.getBoundingClientRect();
|
|
164
|
+
const x = iframeRect?.x ?? 0;
|
|
165
|
+
const y = iframeRect?.y ?? 0;
|
|
166
|
+
return [x, y];
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
], placement: 'bottom-start', children: fieldMenuItems && (_jsx(Menu, { id: menuID, items: fieldMenuItems, as: StyledSearchPopover, focusControlEl: editor?.getBody() || undefined, mode: 'action', onItemClick: findAndRenameField, variant: 'drill-down' })) }));
|
|
171
|
+
useEffect(() => {
|
|
172
|
+
if (currentElementId && currentElementContent)
|
|
173
|
+
modalMethods.current = create(Modal, modalProps);
|
|
174
|
+
}, [currentElementId, currentElementContent]);
|
|
175
|
+
useEffect(() => {
|
|
176
|
+
editor?.getDoc().addEventListener('click', handleElementClick);
|
|
177
|
+
return () => {
|
|
178
|
+
editor?.getDoc().removeEventListener('click', handleElementClick);
|
|
179
|
+
};
|
|
180
|
+
}, [editor, editorRef.current]);
|
|
181
|
+
useEffect(() => {
|
|
182
|
+
if (modalMethods.current) {
|
|
183
|
+
modalMethods.current.update(modalProps);
|
|
184
|
+
}
|
|
185
|
+
}, [modalProps]);
|
|
186
|
+
const onEditorChange = (formEditor) => {
|
|
187
|
+
if (formEditor) {
|
|
188
|
+
const targetEl = formEditor.selection.getBoundingClientRect();
|
|
189
|
+
const { left = 0, top = 0 } = targetEl ?? {};
|
|
190
|
+
setCurrentCursorPosition({
|
|
191
|
+
...formEditor.selection.getBoundingClientRect(),
|
|
192
|
+
x: left,
|
|
193
|
+
y: top,
|
|
194
|
+
toJSON: () => { }
|
|
195
|
+
});
|
|
196
|
+
if (formEditor.selection.isCollapsed()) {
|
|
197
|
+
// get the full line string
|
|
198
|
+
const selectedRange = formEditor.selection.getRng();
|
|
199
|
+
const endOffset = selectedRange.endOffset;
|
|
200
|
+
const stringToSearch = selectedRange.commonAncestorContainer.nodeValue?.slice(0, endOffset);
|
|
201
|
+
const fieldString = stringToSearch?.split(' ')[stringToSearch.split(' ').length - 1];
|
|
202
|
+
if (fieldString?.startsWith('@') &&
|
|
203
|
+
fieldString.indexOf('@') === fieldString.lastIndexOf('@')) {
|
|
204
|
+
filterFieldMenu(fieldString.slice(1));
|
|
205
|
+
}
|
|
206
|
+
else
|
|
207
|
+
setShowFieldsPopover(false);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
};
|
|
211
|
+
const onKeyDown = event => {
|
|
212
|
+
if ((event?.key === 'Enter' ||
|
|
213
|
+
event?.key === 'ArrowLeft' ||
|
|
214
|
+
event?.key === 'ArrowRight' ||
|
|
215
|
+
event?.key === 'ArrowDown' ||
|
|
216
|
+
event?.key === 'ArrowUp') &&
|
|
217
|
+
!!fieldPopoverRef.current) {
|
|
218
|
+
event?.preventDefault();
|
|
219
|
+
}
|
|
220
|
+
if (event?.key === 'Escape' && !!fieldPopoverRef.current) {
|
|
221
|
+
hidePopover();
|
|
222
|
+
}
|
|
223
|
+
};
|
|
224
|
+
return (_jsx(Editor, { "data-testid": testIds.root, ref: editorRef, ...restProps, label: label, toolbar: toolbar, customComponents: [
|
|
225
|
+
{
|
|
226
|
+
createCustomElement: createPegaReferenceElement,
|
|
227
|
+
name: 'pega-reference',
|
|
228
|
+
extensionAttributes: ['contenteditable'],
|
|
229
|
+
style: pegaReferenceElementStyle
|
|
230
|
+
}
|
|
231
|
+
], customActions: [
|
|
232
|
+
{
|
|
233
|
+
'data-testid': testIds.insertField,
|
|
234
|
+
icon: 'code',
|
|
235
|
+
text: tooltip,
|
|
236
|
+
onMouseDown: () => {
|
|
237
|
+
modalMethods.current = create(Modal, modalProps);
|
|
238
|
+
},
|
|
239
|
+
active: isPegaRefActive,
|
|
240
|
+
shortcut: {
|
|
241
|
+
pattern: 'meta+191',
|
|
242
|
+
description: tooltip,
|
|
243
|
+
command: onInsertField
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
], onInit: setEditor, onChange: onEditorChange, onBlur: () => {
|
|
247
|
+
onBlur?.();
|
|
248
|
+
hidePopover();
|
|
249
|
+
}, onKeyDown: onKeyDown, defaultValue: defaultValue, children: fieldSelectionPopover }));
|
|
250
|
+
});
|
|
251
|
+
export default withTestIds(DynamicContentEditor, getDynamicContentEditorTestIds);
|
|
252
|
+
//# sourceMappingURL=DynamicContentEditor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicContentEditor.js","sourceRoot":"","sources":["../../../src/components/DynamicContentEditor/DynamicContentEditor.tsx"],"names":[],"mappings":"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","sourcesContent":["import { forwardRef, useRef, useEffect, useState } from 'react';\nimport type { FunctionComponent, PropsWithoutRef } from 'react';\nimport styled from 'styled-components';\nimport type { Bookmark, Editor as TinyMCEEditor, EditorSelection } from 'tinymce';\n\nimport {\n Button,\n defaultThemeProp,\n Menu,\n menuHelpers,\n Modal,\n Popover,\n StyledPopover,\n useModalManager,\n useConsolidatedRef,\n useI18n,\n useUID,\n useTestIds,\n withTestIds\n} from '@pega/cosmos-react-core';\nimport type { ForwardProps, ModalMethods, PropsWithDefaults } from '@pega/cosmos-react-core';\nimport { getKeyCommand } from '@pega/cosmos-react-rte/lib/components/RichTextEditor/Toolbar/utils';\n\nimport { Editor } from '../Editor';\nimport type { EditorProps } from '../Editor';\n\nimport { isFieldMenuItem } from './DynamicContentEditor.types';\nimport type { DynamicContentEditorProps, FieldItems, ItemType } from './DynamicContentEditor.types';\nimport { pegaReferenceElementStyle, createPegaReferenceElement } from './PegaCustomElement';\nimport { getDynamicContentEditorTestIds } from './DynamicContentEditor.test-ids';\n\ntype DynamicContentEditorPropsWithDefaults = PropsWithDefaults<DynamicContentEditorProps>;\n\nconst StyledDynamicContentEditor = styled.div<DynamicContentEditorPropsWithDefaults>``;\n\nexport const StyledSearchPopover = styled(StyledPopover)`\n min-width: 20rem;\n`;\n\nStyledDynamicContentEditor.defaultProps = defaultThemeProp;\n\nconst DynamicContentEditor: FunctionComponent<DynamicContentEditorProps & ForwardProps> =\n forwardRef(function DynamicContentEditor(\n {\n testId,\n form: { dynamicContentPicker, onSubmit },\n onActiveFieldChange,\n label,\n toolbar,\n fieldItems,\n defaultValue,\n onBlur,\n ...restProps\n }: PropsWithoutRef<DynamicContentEditorProps>,\n ref: DynamicContentEditorProps['ref']\n ) {\n const menuID = useUID();\n const { create } = useModalManager();\n const t = useI18n();\n const testIds = useTestIds(testId, getDynamicContentEditorTestIds);\n\n const modalMethods = useRef<ModalMethods>();\n const [editor, setEditor] = useState<TinyMCEEditor | undefined>();\n const [bookmark, setBookmark] = useState<Bookmark | undefined>();\n const [fieldMenuItems, setFieldMenuItems] = useState<FieldItems[]>(fieldItems || []);\n const [currentElementId, setCurrentElementId] = useState('');\n const [currentElementContent, setCurrentElementContent] = useState('');\n const [currentElementNamespace, setCurrentElementNamespace] = useState('');\n const [currentCursorPosition, setCurrentCursorPosition] = useState({\n bottom: 0,\n height: 0,\n left: 0,\n right: 0,\n top: 0,\n width: 0,\n x: 0,\n y: 0,\n toJSON: () => {}\n });\n const [showFieldsPopover, setShowFieldsPopover] = useState<boolean>(false);\n\n const fieldPopoverRef = useRef<HTMLDivElement>(null);\n const editorRef = useConsolidatedRef(ref);\n\n const tooltip = getKeyCommand(\n navigator.appVersion.includes('Mac'),\n ({ ctrl }) => `${t('rte_insert_field')} (${ctrl}/)`\n );\n\n const insertField = (field: ItemType) => {\n if (!editor) return;\n\n const fieldContent = `<pega-reference role=\"button\" contenteditable=\"false\" data-rule-type='field' data-rule-id=${\n field.id\n } ${field.namespace && `data-rule-namespace=${field.namespace}`}>${\n field.text\n }</pega-reference>`;\n if (bookmark) {\n editor.selection.moveToBookmark(bookmark);\n editor.selection.setContent(fieldContent);\n } else {\n editor.insertContent(fieldContent);\n }\n\n modalMethods.current?.dismiss();\n };\n\n const modalProps = {\n 'data-testid': testIds.insertFieldModal,\n children: dynamicContentPicker,\n heading: t('rte_insert_field'),\n actions: (\n <>\n <Button\n data-testid={testIds.insertFieldModalCancel}\n variant='secondary'\n onClick={() => modalMethods.current?.dismiss()}\n >\n {t('cancel')}\n </Button>\n <Button\n data-testid={testIds.insertFieldModalSubmit}\n variant='primary'\n onClick={() => onSubmit(insertField)}\n >\n {t('submit')}\n </Button>\n </>\n ),\n center: true,\n onAfterClose: () => {\n setBookmark(undefined);\n setCurrentElementId('');\n setCurrentElementContent('');\n setCurrentElementNamespace('');\n onActiveFieldChange({ id: '', text: '', namespace: '' });\n },\n onBeforeOpen: () => {\n if (currentElementId) {\n onActiveFieldChange({\n id: currentElementId,\n text: currentElementContent,\n namespace: currentElementNamespace\n });\n }\n }\n };\n\n const findAndRenameField = (fieldId: string) => {\n if (!editor || !fieldMenuItems) return;\n\n const selectedRange = editor.selection.getRng();\n const endOffset = selectedRange.endOffset;\n const stringToSearch = selectedRange.commonAncestorContainer.nodeValue?.slice(0, endOffset);\n if (stringToSearch === undefined) return;\n\n const splitSearch = stringToSearch.split(' ');\n const fieldString = splitSearch[splitSearch.length - 1];\n const range = editor.getDoc().createRange();\n\n const startPos = stringToSearch.lastIndexOf(fieldString);\n const endPos = startPos + fieldString.length;\n range.setStart(selectedRange.commonAncestorContainer, startPos);\n range.setEnd(selectedRange.commonAncestorContainer, endPos);\n editor.getDoc().getSelection()?.removeAllRanges();\n editor.getDoc().getSelection()?.addRange(range);\n\n const selectedField = menuHelpers.getItem(fieldMenuItems, fieldId);\n if (selectedField && isFieldMenuItem(selectedField)) {\n editor.selection.setContent(\n `<pega-reference role=\"button\" contenteditable=\"false\" data-rule-type=\"field\" data-rule-id=\"${\n selectedField.id\n }\" ${selectedField.namespace && `data-rule-namespace=${selectedField.namespace}`}>${\n selectedField.primary\n }</pega-reference>`\n );\n setShowFieldsPopover(false);\n }\n };\n\n const hidePopover = () => {\n if (fieldPopoverRef) setShowFieldsPopover(false);\n };\n\n const filterFieldMenu = (searchString: string) => {\n setShowFieldsPopover(true);\n setFieldMenuItems(fieldItems || []);\n if (/\\s/.test(searchString)) {\n setShowFieldsPopover(false);\n return;\n }\n if (searchString && fieldMenuItems) {\n const newFieldMenuItems: FieldItems[] = menuHelpers\n .flatten(fieldMenuItems)\n .filter(({ primary }) =>\n primary.toLowerCase().startsWith(searchString.toLocaleLowerCase())\n );\n if (newFieldMenuItems) {\n setShowFieldsPopover(true);\n setFieldMenuItems(newFieldMenuItems);\n } else setShowFieldsPopover(false);\n }\n };\n\n const updateBookmarkAndCurrentElement = (editorSelection: EditorSelection) => {\n const targetEl = editorSelection.getNode() as HTMLElement;\n const fieldId = targetEl.getAttribute('data-rule-id');\n const fieldNamespace = targetEl.getAttribute('data-rule-namespace');\n const fieldValue = targetEl.innerText;\n setBookmark(editorSelection.getBookmark());\n setCurrentElementId(fieldId || '');\n setCurrentElementContent(fieldValue);\n setCurrentElementNamespace(fieldNamespace || '');\n };\n\n const handleElementClick = ({ target }: MouseEvent) => {\n if (editor && target && (target as HTMLElement).tagName === 'PEGA-REFERENCE') {\n updateBookmarkAndCurrentElement(editor.selection);\n }\n hidePopover();\n };\n\n const onInsertField = (incEditor: TinyMCEEditor) => {\n const targetEl = incEditor.selection.getNode();\n if (targetEl.tagName === 'PEGA-REFERENCE') {\n updateBookmarkAndCurrentElement(incEditor.selection);\n } else {\n modalMethods.current = create(Modal, modalProps);\n }\n };\n\n const isPegaRefActive = (incEditor: TinyMCEEditor) => {\n const targetEl = incEditor.selection.getNode();\n return targetEl.tagName === 'PEGA-REFERENCE';\n };\n\n const fieldSelectionPopover = (\n <Popover\n show={showFieldsPopover}\n strategy='fixed'\n ref={fieldPopoverRef}\n target={{\n getBoundingClientRect() {\n return currentCursorPosition;\n }\n }}\n modifiers={[\n {\n name: 'offset',\n options: {\n offset: () => {\n const iframe = editorRef.current?.element?.querySelector('iframe');\n const iframeRect = iframe?.getBoundingClientRect();\n const x = iframeRect?.x ?? 0;\n const y = iframeRect?.y ?? 0;\n return [x, y];\n }\n }\n }\n ]}\n placement='bottom-start'\n >\n {fieldMenuItems && (\n <Menu\n id={menuID}\n items={fieldMenuItems}\n as={StyledSearchPopover}\n focusControlEl={editor?.getBody() || undefined}\n mode='action'\n onItemClick={findAndRenameField}\n variant='drill-down'\n />\n )}\n </Popover>\n );\n\n useEffect(() => {\n if (currentElementId && currentElementContent)\n modalMethods.current = create(Modal, modalProps);\n }, [currentElementId, currentElementContent]);\n\n useEffect(() => {\n editor?.getDoc().addEventListener('click', handleElementClick);\n return () => {\n editor?.getDoc().removeEventListener('click', handleElementClick);\n };\n }, [editor, editorRef.current]);\n\n useEffect(() => {\n if (modalMethods.current) {\n modalMethods.current.update(modalProps);\n }\n }, [modalProps]);\n\n const onEditorChange: EditorProps['onChange'] = (formEditor?: TinyMCEEditor) => {\n if (formEditor) {\n const targetEl = formEditor.selection.getBoundingClientRect();\n const { left = 0, top = 0 } = targetEl ?? {};\n setCurrentCursorPosition({\n ...formEditor.selection.getBoundingClientRect(),\n x: left,\n y: top,\n toJSON: () => {}\n });\n\n if (formEditor.selection.isCollapsed()) {\n // get the full line string\n const selectedRange = formEditor.selection.getRng();\n const endOffset = selectedRange.endOffset;\n const stringToSearch = selectedRange.commonAncestorContainer.nodeValue?.slice(\n 0,\n endOffset\n );\n const fieldString = stringToSearch?.split(' ')[stringToSearch.split(' ').length - 1];\n if (\n fieldString?.startsWith('@') &&\n fieldString.indexOf('@') === fieldString.lastIndexOf('@')\n ) {\n filterFieldMenu(fieldString.slice(1));\n } else setShowFieldsPopover(false);\n }\n }\n };\n\n const onKeyDown: EditorProps['onKeyDown'] = event => {\n if (\n (event?.key === 'Enter' ||\n event?.key === 'ArrowLeft' ||\n event?.key === 'ArrowRight' ||\n event?.key === 'ArrowDown' ||\n event?.key === 'ArrowUp') &&\n !!fieldPopoverRef.current\n ) {\n event?.preventDefault();\n }\n if (event?.key === 'Escape' && !!fieldPopoverRef.current) {\n hidePopover();\n }\n };\n\n return (\n <Editor\n data-testid={testIds.root}\n ref={editorRef}\n {...restProps}\n label={label}\n toolbar={toolbar}\n customComponents={[\n {\n createCustomElement: createPegaReferenceElement,\n name: 'pega-reference',\n extensionAttributes: ['contenteditable'],\n style: pegaReferenceElementStyle\n }\n ]}\n customActions={[\n {\n 'data-testid': testIds.insertField,\n icon: 'code',\n text: tooltip,\n onMouseDown: () => {\n modalMethods.current = create(Modal, modalProps);\n },\n active: isPegaRefActive,\n shortcut: {\n pattern: 'meta+191',\n description: tooltip,\n command: onInsertField\n }\n }\n ]}\n onInit={setEditor}\n onChange={onEditorChange}\n onBlur={() => {\n onBlur?.();\n hidePopover();\n }}\n onKeyDown={onKeyDown}\n defaultValue={defaultValue}\n >\n {fieldSelectionPopover}\n </Editor>\n );\n });\n\nexport default withTestIds(DynamicContentEditor, getDynamicContentEditorTestIds);\n"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const getDynamicContentEditorTestIds: (testIdProp?: string | undefined) => import("@pega/cosmos-react-core").TestIdsRecord<readonly ["insert-field", "insert-field-modal", "insert-field-modal-cancel", "insert-field-modal-submit"]>;
|
|
2
|
+
//# sourceMappingURL=DynamicContentEditor.test-ids.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicContentEditor.test-ids.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicContentEditor/DynamicContentEditor.test-ids.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,8BAA8B,iMAKhC,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { createTestIds } from '@pega/cosmos-react-core';
|
|
2
|
+
export const getDynamicContentEditorTestIds = createTestIds('dynamic-content-editor', [
|
|
3
|
+
'insert-field',
|
|
4
|
+
'insert-field-modal',
|
|
5
|
+
'insert-field-modal-cancel',
|
|
6
|
+
'insert-field-modal-submit'
|
|
7
|
+
]);
|
|
8
|
+
//# sourceMappingURL=DynamicContentEditor.test-ids.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicContentEditor.test-ids.js","sourceRoot":"","sources":["../../../src/components/DynamicContentEditor/DynamicContentEditor.test-ids.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAExD,MAAM,CAAC,MAAM,8BAA8B,GAAG,aAAa,CAAC,wBAAwB,EAAE;IACpF,cAAc;IACd,oBAAoB;IACpB,2BAA2B;IAC3B,2BAA2B;CACnB,CAAC,CAAC","sourcesContent":["import { createTestIds } from '@pega/cosmos-react-core';\n\nexport const getDynamicContentEditorTestIds = createTestIds('dynamic-content-editor', [\n 'insert-field',\n 'insert-field-modal',\n 'insert-field-modal-cancel',\n 'insert-field-modal-submit'\n] as const);\n"]}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { ReactNode } from 'react';
|
|
2
|
+
import type { TestIdProp } from '@pega/cosmos-react-core';
|
|
3
|
+
import type { MenuGroupProps, MenuItemProps } from '@pega/cosmos-react-core/lib/components/Menu/Menu.types';
|
|
4
|
+
import type { EditorProps } from '../Editor';
|
|
5
|
+
export type ItemType = {
|
|
6
|
+
id: string;
|
|
7
|
+
text: string;
|
|
8
|
+
namespace?: string;
|
|
9
|
+
};
|
|
10
|
+
export type FieldMenuItem = MenuItemProps & {
|
|
11
|
+
namespace?: string;
|
|
12
|
+
items?: FieldItems[];
|
|
13
|
+
};
|
|
14
|
+
export type FieldMenuGroup = MenuGroupProps & {
|
|
15
|
+
namespace?: string;
|
|
16
|
+
items?: FieldItems[];
|
|
17
|
+
};
|
|
18
|
+
export type FieldItems = FieldMenuItem | FieldMenuGroup;
|
|
19
|
+
export declare const isFieldMenuItem: (item: FieldItems) => item is FieldMenuItem;
|
|
20
|
+
export interface DynamicContentEditorProps extends EditorProps, TestIdProp {
|
|
21
|
+
/** Insert field form */
|
|
22
|
+
form: {
|
|
23
|
+
onSubmit: (insertField: (selectedField: ItemType) => void) => void;
|
|
24
|
+
dynamicContentPicker: ReactNode;
|
|
25
|
+
};
|
|
26
|
+
onActiveFieldChange: (field: ItemType) => void;
|
|
27
|
+
/** Property selection array */
|
|
28
|
+
fieldItems?: FieldItems[];
|
|
29
|
+
defaultValue?: string;
|
|
30
|
+
onBlur?: () => void;
|
|
31
|
+
}
|
|
32
|
+
export interface DynamicContentEditorContextProps extends DynamicContentEditorProps {
|
|
33
|
+
updateProperties?: (selectedfield: ItemType) => void;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=DynamicContentEditor.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicContentEditor.types.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicContentEditor/DynamicContentEditor.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,EACV,cAAc,EACd,aAAa,EACd,MAAM,wDAAwD,CAAC;AAEhE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAE7C,MAAM,MAAM,QAAQ,GAAG;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,aAAa,GAAG;IAC1C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,UAAU,EAAE,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,cAAc,GAAG;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,UAAU,EAAE,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,aAAa,GAAG,cAAc,CAAC;AAExD,eAAO,MAAM,eAAe,SAAU,UAAU,0BACtB,CAAC;AAE3B,MAAM,WAAW,yBAA0B,SAAQ,WAAW,EAAE,UAAU;IACxE,wBAAwB;IACxB,IAAI,EAAE;QACJ,QAAQ,EAAE,CAAC,WAAW,EAAE,CAAC,aAAa,EAAE,QAAQ,KAAK,IAAI,KAAK,IAAI,CAAC;QACnE,oBAAoB,EAAE,SAAS,CAAC;KACjC,CAAC;IACF,mBAAmB,EAAE,CAAC,KAAK,EAAE,QAAQ,KAAK,IAAI,CAAC;IAC/C,+BAA+B;IAC/B,UAAU,CAAC,EAAE,UAAU,EAAE,CAAC;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,WAAW,gCAAiC,SAAQ,yBAAyB;IACjF,gBAAgB,CAAC,EAAE,CAAC,aAAa,EAAE,QAAQ,KAAK,IAAI,CAAC;CACtD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicContentEditor.types.js","sourceRoot":"","sources":["../../../src/components/DynamicContentEditor/DynamicContentEditor.types.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AA2BlD,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,IAAgB,EAAyB,EAAE,CACzE,OAAO,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC","sourcesContent":["import type { ReactNode } from 'react';\n\nimport { hasProp } from '@pega/cosmos-react-core';\nimport type { TestIdProp } from '@pega/cosmos-react-core';\nimport type {\n MenuGroupProps,\n MenuItemProps\n} from '@pega/cosmos-react-core/lib/components/Menu/Menu.types';\n\nimport type { EditorProps } from '../Editor';\n\nexport type ItemType = {\n id: string;\n text: string;\n namespace?: string;\n};\n\nexport type FieldMenuItem = MenuItemProps & {\n namespace?: string;\n items?: FieldItems[];\n};\n\nexport type FieldMenuGroup = MenuGroupProps & {\n namespace?: string;\n items?: FieldItems[];\n};\n\nexport type FieldItems = FieldMenuItem | FieldMenuGroup;\n\nexport const isFieldMenuItem = (item: FieldItems): item is FieldMenuItem =>\n hasProp(item, 'primary');\n\nexport interface DynamicContentEditorProps extends EditorProps, TestIdProp {\n /** Insert field form */\n form: {\n onSubmit: (insertField: (selectedField: ItemType) => void) => void;\n dynamicContentPicker: ReactNode;\n };\n onActiveFieldChange: (field: ItemType) => void;\n /** Property selection array */\n fieldItems?: FieldItems[];\n defaultValue?: string;\n onBlur?: () => void;\n}\n\nexport interface DynamicContentEditorContextProps extends DynamicContentEditorProps {\n updateProperties?: (selectedfield: ItemType) => void;\n}\n"]}
|