@collabchron/notiq 0.2.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/README.md +71 -0
- package/components.json +21 -0
- package/eslint.config.mjs +16 -0
- package/next.config.ts +12 -0
- package/package.json +108 -0
- package/postcss.config.mjs +5 -0
- package/public/file.svg +1 -0
- package/public/globe.svg +1 -0
- package/public/images/icons/plus.svg +10 -0
- package/public/next.svg +1 -0
- package/public/vercel.svg +1 -0
- package/public/window.svg +1 -0
- package/src/app/actions.ts +2 -0
- package/src/app/api/ai/route.ts +175 -0
- package/src/app/api/edgestore/[...edgestore]/route.ts +28 -0
- package/src/app/favicon.ico +0 -0
- package/src/app/globals.css +205 -0
- package/src/app/layout.tsx +38 -0
- package/src/app/page.tsx +12 -0
- package/src/components/editor/Core.tsx +220 -0
- package/src/components/editor/hooks/instructions-messages.ts +300 -0
- package/src/components/editor/hooks/use-mobile.ts +19 -0
- package/src/components/editor/hooks/useReport.ts +67 -0
- package/src/components/editor/hooks/useResizeObservert.ts +22 -0
- package/src/components/editor/index.tsx +39 -0
- package/src/components/editor/lexical-on-change.tsx +28 -0
- package/src/components/editor/nodes/CollapsibleNode/CollapsibleContainerNode.ts +92 -0
- package/src/components/editor/nodes/CollapsibleNode/CollapsibleContentNode.ts +65 -0
- package/src/components/editor/nodes/CollapsibleNode/CollapsibleTitleNode.ts +105 -0
- package/src/components/editor/nodes/EquationNode/EquationComponent.tsx +143 -0
- package/src/components/editor/nodes/EquationNode/EquationNode.tsx +170 -0
- package/src/components/editor/nodes/ExcalidrawNode/ExcalidrawComponent.tsx +228 -0
- package/src/components/editor/nodes/ExcalidrawNode/ExcalidrawImage.tsx +137 -0
- package/src/components/editor/nodes/ExcalidrawNode/ImageResizer.tsx +317 -0
- package/src/components/editor/nodes/ExcalidrawNode/index.tsx +204 -0
- package/src/components/editor/nodes/FigmaNode/FigmaNode.tsx +134 -0
- package/src/components/editor/nodes/Hint/HintComponet.tsx +221 -0
- package/src/components/editor/nodes/Hint/index.tsx +190 -0
- package/src/components/editor/nodes/ImageNode/index.tsx +328 -0
- package/src/components/editor/nodes/InlineImageNode/InlineImageComponent.tsx +383 -0
- package/src/components/editor/nodes/InlineImageNode/InlineImageNode.css +94 -0
- package/src/components/editor/nodes/InlineImageNode/InlineImageNode.tsx +309 -0
- package/src/components/editor/nodes/LayoutNode/LayoutContainerNode.ts +146 -0
- package/src/components/editor/nodes/LayoutNode/LayoutItemNode.ts +79 -0
- package/src/components/editor/nodes/PollNode/index.tsx +204 -0
- package/src/components/editor/nodes/Stepper/index.tsx +260 -0
- package/src/components/editor/nodes/TweetNode/index.tsx +214 -0
- package/src/components/editor/nodes/index.ts +81 -0
- package/src/components/editor/plugins/AutoEmbedPlugin/index.tsx +350 -0
- package/src/components/editor/plugins/AutoLinkPlugin/index.tsx +56 -0
- package/src/components/editor/plugins/CodeActionMenuPlugin/components/CopyButton.tsx +70 -0
- package/src/components/editor/plugins/CodeActionMenuPlugin/components/PrettierButton.tsx +192 -0
- package/src/components/editor/plugins/CodeActionMenuPlugin/index.tsx +217 -0
- package/src/components/editor/plugins/CodeActionMenuPlugin/utils.ts +26 -0
- package/src/components/editor/plugins/CodeHighlightPlugin/index.ts +21 -0
- package/src/components/editor/plugins/CollapsiblePlugin/Collapsible.css +76 -0
- package/src/components/editor/plugins/CollapsiblePlugin/index.ts +228 -0
- package/src/components/editor/plugins/DragDropPastePlugin/index.tsx +44 -0
- package/src/components/editor/plugins/DraggableBlockPlugin/index.tsx +52 -0
- package/src/components/editor/plugins/EquationsPlugin/index.tsx +85 -0
- package/src/components/editor/plugins/ExcalidrawPlugin/index.tsx +98 -0
- package/src/components/editor/plugins/FigmaPlugin/index.tsx +42 -0
- package/src/components/editor/plugins/FloatingLinkEditorPlugin/index.tsx +445 -0
- package/src/components/editor/plugins/FloatingTextFormatToolbarPlugin/index.tsx +275 -0
- package/src/components/editor/plugins/ImagesPlugin/index.tsx +222 -0
- package/src/components/editor/plugins/InlineImagePlugin/index.tsx +351 -0
- package/src/components/editor/plugins/LayoutPlugin/index.tsx +238 -0
- package/src/components/editor/plugins/LinkPlugin/index.tsx +36 -0
- package/src/components/editor/plugins/LinkWithMetaData/index.tsx +271 -0
- package/src/components/editor/plugins/MarkdownShortcutPlugin/index.tsx +11 -0
- package/src/components/editor/plugins/MarkdownTransformers/index.tsx +304 -0
- package/src/components/editor/plugins/PollPlugin/index.tsx +49 -0
- package/src/components/editor/plugins/ShortcutsPlugin/index.tsx +180 -0
- package/src/components/editor/plugins/ShortcutsPlugin/shortcuts.ts +253 -0
- package/src/components/editor/plugins/SlashCommand/index.tsx +621 -0
- package/src/components/editor/plugins/SpeechToTextPlugin/index.ts +127 -0
- package/src/components/editor/plugins/TabFocusPlugin/index.ts +58 -0
- package/src/components/editor/plugins/TableCellActionMenuPlugin/index.tsx +759 -0
- package/src/components/editor/plugins/TableCellResizer/index.tsx +438 -0
- package/src/components/editor/plugins/TableHoverActionsPlugin/index.tsx +314 -0
- package/src/components/editor/plugins/TablePlugin/index.tsx +99 -0
- package/src/components/editor/plugins/ToolbarPlugin/index.tsx +522 -0
- package/src/components/editor/plugins/TwitterPlugin/index.ts +35 -0
- package/src/components/editor/plugins/YouTubeNode/index.tsx +179 -0
- package/src/components/editor/plugins/YouTubePlugin/index.ts +41 -0
- package/src/components/editor/themes/editor-theme.ts +113 -0
- package/src/components/editor/themes/theme.css +377 -0
- package/src/components/editor/utils/ai.ts +291 -0
- package/src/components/editor/utils/canUseDOM.ts +12 -0
- package/src/components/editor/utils/editorFormatting.ts +282 -0
- package/src/components/editor/utils/environment.ts +50 -0
- package/src/components/editor/utils/extract-data.ts +166 -0
- package/src/components/editor/utils/getAllLexicalChildren.ts +13 -0
- package/src/components/editor/utils/getDOMRangeRect.ts +27 -0
- package/src/components/editor/utils/getSelectedNode.ts +27 -0
- package/src/components/editor/utils/gif.ts +29 -0
- package/src/components/editor/utils/invariant.ts +15 -0
- package/src/components/editor/utils/setFloatingElemPosition.ts +51 -0
- package/src/components/editor/utils/setFloatingElemPositionForLinkEditor.ts +40 -0
- package/src/components/editor/utils/setNodePlaceholderFromSelection/getNodePlaceholder.ts +51 -0
- package/src/components/editor/utils/setNodePlaceholderFromSelection/setNodePlaceholderFromSelection.ts +15 -0
- package/src/components/editor/utils/setNodePlaceholderFromSelection/setPlaceholderOnSelection.ts +114 -0
- package/src/components/editor/utils/setNodePlaceholderFromSelection/styles.css +6 -0
- package/src/components/editor/utils/url.ts +109 -0
- package/src/components/editor/utils/useLayoutEffect.ts +13 -0
- package/src/components/providers/QueryProvider.tsx +15 -0
- package/src/components/providers/SharedHistoryContext.tsx +28 -0
- package/src/components/providers/ToolbarContext.tsx +123 -0
- package/src/components/providers/theme-provider.tsx +11 -0
- package/src/components/theme/ModeToggle.tsx +40 -0
- package/src/components/ui/FileInput.tsx +40 -0
- package/src/components/ui/Input.css +32 -0
- package/src/components/ui/Select.css +42 -0
- package/src/components/ui/Select.tsx +36 -0
- package/src/components/ui/TextInput.tsx +48 -0
- package/src/components/ui/ai/ai-button.tsx +574 -0
- package/src/components/ui/ai/border.tsx +99 -0
- package/src/components/ui/ai/placeholder-input-vanish.tsx +282 -0
- package/src/components/ui/button.tsx +89 -0
- package/src/components/ui/card.tsx +76 -0
- package/src/components/ui/checkbox.tsx +30 -0
- package/src/components/ui/command.tsx +153 -0
- package/src/components/ui/dialog/Dialog.css +25 -0
- package/src/components/ui/dialog/Dialog.tsx +34 -0
- package/src/components/ui/dialog.tsx +122 -0
- package/src/components/ui/drop-downs/background-color.tsx +183 -0
- package/src/components/ui/drop-downs/block-format.tsx +159 -0
- package/src/components/ui/drop-downs/code.tsx +42 -0
- package/src/components/ui/drop-downs/color.tsx +177 -0
- package/src/components/ui/drop-downs/font-size.tsx +138 -0
- package/src/components/ui/drop-downs/font.tsx +155 -0
- package/src/components/ui/drop-downs/index.tsx +122 -0
- package/src/components/ui/drop-downs/insert-node.tsx +213 -0
- package/src/components/ui/drop-downs/text-align.tsx +123 -0
- package/src/components/ui/drop-downs/text-format.tsx +104 -0
- package/src/components/ui/dropdown-menu.tsx +201 -0
- package/src/components/ui/equation/EquationEditor.css +38 -0
- package/src/components/ui/equation/EquationEditor.tsx +56 -0
- package/src/components/ui/equation/KatexEquationAlterer.css +41 -0
- package/src/components/ui/equation/KatexEquationAlterer.tsx +83 -0
- package/src/components/ui/equation/KatexRenderer.tsx +66 -0
- package/src/components/ui/excalidraw/ExcalidrawModal.css +64 -0
- package/src/components/ui/excalidraw/ExcalidrawModal.tsx +234 -0
- package/src/components/ui/excalidraw/Modal.css +62 -0
- package/src/components/ui/excalidraw/Modal.tsx +110 -0
- package/src/components/ui/hover-card.tsx +29 -0
- package/src/components/ui/image/error-image.tsx +17 -0
- package/src/components/ui/image/file-upload.tsx +240 -0
- package/src/components/ui/image/image-resizer.tsx +297 -0
- package/src/components/ui/image/image-toolbar.tsx +264 -0
- package/src/components/ui/image/index.tsx +408 -0
- package/src/components/ui/image/lazy-image.tsx +68 -0
- package/src/components/ui/image/lazy-video.tsx +71 -0
- package/src/components/ui/input.tsx +22 -0
- package/src/components/ui/models/custom-dialog.tsx +320 -0
- package/src/components/ui/models/insert-gif.tsx +90 -0
- package/src/components/ui/models/insert-image.tsx +52 -0
- package/src/components/ui/models/insert-poll.tsx +29 -0
- package/src/components/ui/models/insert-table.tsx +62 -0
- package/src/components/ui/models/use-model.tsx +91 -0
- package/src/components/ui/poll/poll-component.tsx +304 -0
- package/src/components/ui/popover.tsx +33 -0
- package/src/components/ui/progress.tsx +28 -0
- package/src/components/ui/scroll-area.tsx +48 -0
- package/src/components/ui/separator.tsx +31 -0
- package/src/components/ui/skeleton.tsx +15 -0
- package/src/components/ui/sonner.tsx +31 -0
- package/src/components/ui/stepper/step.tsx +179 -0
- package/src/components/ui/stepper/stepper.tsx +89 -0
- package/src/components/ui/textarea.tsx +22 -0
- package/src/components/ui/toggle.tsx +71 -0
- package/src/components/ui/tooltip.tsx +32 -0
- package/src/components/ui/write/text-format-floting-toolbar.tsx +346 -0
- package/src/lib/edgestore.ts +9 -0
- package/src/lib/pinecone-client.ts +0 -0
- package/src/lib/utils.ts +6 -0
- package/src/utils/docSerialization.ts +77 -0
- package/src/utils/emoji-list.ts +16615 -0
- package/src/utils/getDOMRangeRect.ts +27 -0
- package/src/utils/getSelectedNode.ts +27 -0
- package/src/utils/getThemeSelector.ts +25 -0
- package/src/utils/isMobileWidth.ts +7 -0
- package/src/utils/joinClasses.ts +13 -0
- package/src/utils/setFloatingElemPosition.ts +74 -0
- package/src/utils/setFloatingElemPositionForLinkEditor.ts +46 -0
- package/src/utils/swipe.ts +127 -0
- package/src/utils/url.ts +38 -0
- package/tsconfig.json +27 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import React, { useMemo } from "react";
|
|
2
|
+
import {
|
|
3
|
+
ElementFormatType,
|
|
4
|
+
FORMAT_ELEMENT_COMMAND,
|
|
5
|
+
INDENT_CONTENT_COMMAND,
|
|
6
|
+
LexicalEditor,
|
|
7
|
+
OUTDENT_CONTENT_COMMAND,
|
|
8
|
+
} from "lexical";
|
|
9
|
+
import { SHORTCUTS } from "../../editor/plugins/ShortcutsPlugin/shortcuts";
|
|
10
|
+
import {
|
|
11
|
+
AlignCenter,
|
|
12
|
+
AlignLeft,
|
|
13
|
+
AlignRight,
|
|
14
|
+
AlignJustify,
|
|
15
|
+
OutdentIcon,
|
|
16
|
+
Indent,
|
|
17
|
+
} from "lucide-react";
|
|
18
|
+
import { DropDown } from ".";
|
|
19
|
+
|
|
20
|
+
export default function textAlign({
|
|
21
|
+
editor,
|
|
22
|
+
value,
|
|
23
|
+
isRTL,
|
|
24
|
+
disabled = false,
|
|
25
|
+
}: {
|
|
26
|
+
editor: LexicalEditor;
|
|
27
|
+
value: ElementFormatType | "left" | "center" | "right" | "justify" | null;
|
|
28
|
+
isRTL: boolean;
|
|
29
|
+
disabled: boolean;
|
|
30
|
+
}) {
|
|
31
|
+
const ELEMENT_FORMAT_OPTIONS: {
|
|
32
|
+
[key in Exclude<ElementFormatType, "">]: {
|
|
33
|
+
icon: React.ReactNode;
|
|
34
|
+
shortcuts?: string;
|
|
35
|
+
func: () => void;
|
|
36
|
+
label: string;
|
|
37
|
+
};
|
|
38
|
+
} = useMemo(
|
|
39
|
+
() => ({
|
|
40
|
+
center: {
|
|
41
|
+
icon: <AlignCenter className="w-4 h-4" />,
|
|
42
|
+
func: () => {
|
|
43
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, "center");
|
|
44
|
+
},
|
|
45
|
+
shortcuts: SHORTCUTS.CENTER_ALIGN,
|
|
46
|
+
label: "Center Align",
|
|
47
|
+
},
|
|
48
|
+
end: {
|
|
49
|
+
icon: <AlignRight className="w-4 h-4" />,
|
|
50
|
+
func: () => {
|
|
51
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, "end");
|
|
52
|
+
},
|
|
53
|
+
shortcuts: SHORTCUTS.LEFT_ALIGN,
|
|
54
|
+
|
|
55
|
+
label: "End Align",
|
|
56
|
+
},
|
|
57
|
+
justify: {
|
|
58
|
+
icon: <AlignJustify className="w-4 h-4" />,
|
|
59
|
+
func: () => {
|
|
60
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, "justify");
|
|
61
|
+
},
|
|
62
|
+
shortcuts: SHORTCUTS.JUSTIFY_ALIGN,
|
|
63
|
+
|
|
64
|
+
label: "Justify Align",
|
|
65
|
+
},
|
|
66
|
+
left: {
|
|
67
|
+
icon: <AlignLeft className="w-4 h-4" />,
|
|
68
|
+
func: () => {
|
|
69
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, "left");
|
|
70
|
+
},
|
|
71
|
+
shortcuts: SHORTCUTS.LEFT_ALIGN,
|
|
72
|
+
|
|
73
|
+
label: "Left Align",
|
|
74
|
+
},
|
|
75
|
+
right: {
|
|
76
|
+
icon: <AlignRight className="w-4 h-4" />,
|
|
77
|
+
func: () => {
|
|
78
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, "right");
|
|
79
|
+
},
|
|
80
|
+
shortcuts: SHORTCUTS.RIGHT_ALIGN,
|
|
81
|
+
|
|
82
|
+
label: "Right Align",
|
|
83
|
+
},
|
|
84
|
+
start: {
|
|
85
|
+
icon: <AlignLeft className="w-4 h-4" />,
|
|
86
|
+
func: () => {
|
|
87
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, "start");
|
|
88
|
+
},
|
|
89
|
+
label: "Start Align",
|
|
90
|
+
},
|
|
91
|
+
Outdent: {
|
|
92
|
+
icon: <OutdentIcon className="w-4 h-4" />,
|
|
93
|
+
func: () => {
|
|
94
|
+
editor.dispatchCommand(OUTDENT_CONTENT_COMMAND, undefined);
|
|
95
|
+
},
|
|
96
|
+
label: "Outdent",
|
|
97
|
+
},
|
|
98
|
+
func: {
|
|
99
|
+
icon: <Indent className="w-4 h-4" />,
|
|
100
|
+
func: () => {
|
|
101
|
+
editor.dispatchCommand(INDENT_CONTENT_COMMAND, undefined);
|
|
102
|
+
},
|
|
103
|
+
label: "Indent",
|
|
104
|
+
},
|
|
105
|
+
}),
|
|
106
|
+
[editor]
|
|
107
|
+
);
|
|
108
|
+
return (
|
|
109
|
+
<DropDown
|
|
110
|
+
values={Object.values(ELEMENT_FORMAT_OPTIONS)}
|
|
111
|
+
TriggerClassName={{ width: "120px", border: "none" }}
|
|
112
|
+
PopoverContentClassName={{width:"220px"}}
|
|
113
|
+
className="cursor-pointer"
|
|
114
|
+
TriggerLabel={
|
|
115
|
+
<>
|
|
116
|
+
{value ? ELEMENT_FORMAT_OPTIONS[value].icon : ELEMENT_FORMAT_OPTIONS["left"].icon }
|
|
117
|
+
{value || "left"}
|
|
118
|
+
</>
|
|
119
|
+
}
|
|
120
|
+
disabled={disabled}
|
|
121
|
+
/>
|
|
122
|
+
);
|
|
123
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { FORMAT_TEXT_COMMAND, LexicalEditor } from "lexical";
|
|
2
|
+
import {
|
|
3
|
+
CaseSensitive,
|
|
4
|
+
CaseUpper,
|
|
5
|
+
HighlighterIcon,
|
|
6
|
+
LucideRemoveFormatting,
|
|
7
|
+
Strikethrough,
|
|
8
|
+
Subscript,
|
|
9
|
+
Superscript,
|
|
10
|
+
Trash,
|
|
11
|
+
} from "lucide-react";
|
|
12
|
+
import React, { useMemo } from "react";
|
|
13
|
+
import { SHORTCUTS } from "../../editor/plugins/ShortcutsPlugin/shortcuts";
|
|
14
|
+
import { clearFormatting } from "../../editor/utils/editorFormatting";
|
|
15
|
+
import { DropDown } from ".";
|
|
16
|
+
|
|
17
|
+
export default function TextFormat({
|
|
18
|
+
disabled = false,
|
|
19
|
+
editor,
|
|
20
|
+
toolbarState,
|
|
21
|
+
style,
|
|
22
|
+
ShowChevronsUpDown,
|
|
23
|
+
side,
|
|
24
|
+
sideOffset
|
|
25
|
+
}: {
|
|
26
|
+
disabled: boolean;
|
|
27
|
+
editor: LexicalEditor;
|
|
28
|
+
toolbarState: any;
|
|
29
|
+
style?: React.CSSProperties;
|
|
30
|
+
ShowChevronsUpDown?:boolean
|
|
31
|
+
side?: "top" | "right" | "bottom" | "left" | undefined
|
|
32
|
+
sideOffset?:number
|
|
33
|
+
}) {
|
|
34
|
+
const items: any = useMemo(
|
|
35
|
+
() => [
|
|
36
|
+
{
|
|
37
|
+
label: "Lowercase",
|
|
38
|
+
icon: <CaseSensitive className="w-4 h-4" />,
|
|
39
|
+
func: () => editor.dispatchCommand(FORMAT_TEXT_COMMAND, "lowercase"),
|
|
40
|
+
shortcuts: SHORTCUTS.LOWERCASE,
|
|
41
|
+
selected: toolbarState.isLowercase,
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
label: "Uppercase",
|
|
45
|
+
icon: <CaseUpper className="w-4 h-4" />,
|
|
46
|
+
func: () => editor.dispatchCommand(FORMAT_TEXT_COMMAND, "uppercase"),
|
|
47
|
+
shortcuts: SHORTCUTS.UPPERCASE,
|
|
48
|
+
selected: toolbarState.isUppercase,
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
label: "Strikethrough",
|
|
52
|
+
icon: <Strikethrough className="w-4 h-4" />,
|
|
53
|
+
func: () =>
|
|
54
|
+
editor.dispatchCommand(FORMAT_TEXT_COMMAND, "strikethrough"),
|
|
55
|
+
shortcuts: SHORTCUTS.STRIKETHROUGH,
|
|
56
|
+
selected: toolbarState.isStrikethrough,
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
label: "Subscript",
|
|
60
|
+
icon: <Subscript className="w-4 h-4" />,
|
|
61
|
+
func: () => editor.dispatchCommand(FORMAT_TEXT_COMMAND, "subscript"),
|
|
62
|
+
shortcuts: SHORTCUTS.SUBSCRIPT,
|
|
63
|
+
selected: toolbarState.isSubscript,
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
label: "Superscript",
|
|
67
|
+
icon: <Superscript className="w-4 h-4" />,
|
|
68
|
+
func: () => editor.dispatchCommand(FORMAT_TEXT_COMMAND, "superscript"),
|
|
69
|
+
shortcuts: SHORTCUTS.SUPERSCRIPT,
|
|
70
|
+
selected: toolbarState.isSuperscript,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
label: "Highlight",
|
|
74
|
+
icon: <HighlighterIcon className="w-4 h-4" />,
|
|
75
|
+
func: () => editor.dispatchCommand(FORMAT_TEXT_COMMAND, "highlight"),
|
|
76
|
+
selected: toolbarState.isHighlight,
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
label: "Clear Formatting",
|
|
80
|
+
icon: <Trash className="w-4 h-4" />,
|
|
81
|
+
func: () => clearFormatting(editor),
|
|
82
|
+
shortcuts: SHORTCUTS.CLEAR_FORMATTING,
|
|
83
|
+
selected: false,
|
|
84
|
+
},
|
|
85
|
+
],
|
|
86
|
+
[editor, toolbarState]
|
|
87
|
+
);
|
|
88
|
+
|
|
89
|
+
return (
|
|
90
|
+
<DropDown
|
|
91
|
+
PopoverContentClassName={{ width:"100%"}}
|
|
92
|
+
TriggerClassName={{ ...style,width:"100%", border: "none"}}
|
|
93
|
+
disabled={disabled}
|
|
94
|
+
sideOffset={sideOffset}
|
|
95
|
+
side={side}
|
|
96
|
+
className="cursor-pointer"
|
|
97
|
+
ShowChevronsUpDown={ShowChevronsUpDown}
|
|
98
|
+
TriggerLabel={
|
|
99
|
+
<LucideRemoveFormatting />
|
|
100
|
+
}
|
|
101
|
+
values={items}
|
|
102
|
+
/>
|
|
103
|
+
);
|
|
104
|
+
}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import * as React from "react"
|
|
4
|
+
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu"
|
|
5
|
+
import { Check, ChevronRight, Circle } from "lucide-react"
|
|
6
|
+
|
|
7
|
+
import { cn } from "@/lib/utils"
|
|
8
|
+
|
|
9
|
+
const DropdownMenu = DropdownMenuPrimitive.Root
|
|
10
|
+
|
|
11
|
+
const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger
|
|
12
|
+
|
|
13
|
+
const DropdownMenuGroup = DropdownMenuPrimitive.Group
|
|
14
|
+
|
|
15
|
+
const DropdownMenuPortal = DropdownMenuPrimitive.Portal
|
|
16
|
+
|
|
17
|
+
const DropdownMenuSub = DropdownMenuPrimitive.Sub
|
|
18
|
+
|
|
19
|
+
const DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup
|
|
20
|
+
|
|
21
|
+
const DropdownMenuSubTrigger = React.forwardRef<
|
|
22
|
+
React.ElementRef<typeof DropdownMenuPrimitive.SubTrigger>,
|
|
23
|
+
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
24
|
+
inset?: boolean
|
|
25
|
+
}
|
|
26
|
+
>(({ className, inset, children, ...props }, ref) => (
|
|
27
|
+
<DropdownMenuPrimitive.SubTrigger
|
|
28
|
+
ref={ref}
|
|
29
|
+
className={cn(
|
|
30
|
+
"flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
|
|
31
|
+
inset && "pl-8",
|
|
32
|
+
className
|
|
33
|
+
)}
|
|
34
|
+
{...props}
|
|
35
|
+
>
|
|
36
|
+
{children}
|
|
37
|
+
<ChevronRight className="ml-auto" />
|
|
38
|
+
</DropdownMenuPrimitive.SubTrigger>
|
|
39
|
+
))
|
|
40
|
+
DropdownMenuSubTrigger.displayName =
|
|
41
|
+
DropdownMenuPrimitive.SubTrigger.displayName
|
|
42
|
+
|
|
43
|
+
const DropdownMenuSubContent = React.forwardRef<
|
|
44
|
+
React.ElementRef<typeof DropdownMenuPrimitive.SubContent>,
|
|
45
|
+
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent>
|
|
46
|
+
>(({ className, ...props }, ref) => (
|
|
47
|
+
<DropdownMenuPrimitive.SubContent
|
|
48
|
+
ref={ref}
|
|
49
|
+
className={cn(
|
|
50
|
+
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",
|
|
51
|
+
className
|
|
52
|
+
)}
|
|
53
|
+
{...props}
|
|
54
|
+
/>
|
|
55
|
+
))
|
|
56
|
+
DropdownMenuSubContent.displayName =
|
|
57
|
+
DropdownMenuPrimitive.SubContent.displayName
|
|
58
|
+
|
|
59
|
+
const DropdownMenuContent = React.forwardRef<
|
|
60
|
+
React.ElementRef<typeof DropdownMenuPrimitive.Content>,
|
|
61
|
+
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content>
|
|
62
|
+
>(({ className, sideOffset = 4, ...props }, ref) => (
|
|
63
|
+
<DropdownMenuPrimitive.Portal>
|
|
64
|
+
<DropdownMenuPrimitive.Content
|
|
65
|
+
ref={ref}
|
|
66
|
+
sideOffset={sideOffset}
|
|
67
|
+
className={cn(
|
|
68
|
+
"z-50 max-h-[var(--radix-dropdown-menu-content-available-height)] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md",
|
|
69
|
+
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",
|
|
70
|
+
className
|
|
71
|
+
)}
|
|
72
|
+
{...props}
|
|
73
|
+
/>
|
|
74
|
+
</DropdownMenuPrimitive.Portal>
|
|
75
|
+
))
|
|
76
|
+
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName
|
|
77
|
+
|
|
78
|
+
const DropdownMenuItem = React.forwardRef<
|
|
79
|
+
React.ElementRef<typeof DropdownMenuPrimitive.Item>,
|
|
80
|
+
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & {
|
|
81
|
+
inset?: boolean
|
|
82
|
+
}
|
|
83
|
+
>(({ className, inset, ...props }, ref) => (
|
|
84
|
+
<DropdownMenuPrimitive.Item
|
|
85
|
+
ref={ref}
|
|
86
|
+
className={cn(
|
|
87
|
+
"relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>svg]:size-4 [&>svg]:shrink-0",
|
|
88
|
+
inset && "pl-8",
|
|
89
|
+
className
|
|
90
|
+
)}
|
|
91
|
+
{...props}
|
|
92
|
+
/>
|
|
93
|
+
))
|
|
94
|
+
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName
|
|
95
|
+
|
|
96
|
+
const DropdownMenuCheckboxItem = React.forwardRef<
|
|
97
|
+
React.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>,
|
|
98
|
+
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem>
|
|
99
|
+
>(({ className, children, checked, ...props }, ref) => (
|
|
100
|
+
<DropdownMenuPrimitive.CheckboxItem
|
|
101
|
+
ref={ref}
|
|
102
|
+
className={cn(
|
|
103
|
+
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
104
|
+
className
|
|
105
|
+
)}
|
|
106
|
+
checked={checked}
|
|
107
|
+
{...props}
|
|
108
|
+
>
|
|
109
|
+
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
110
|
+
<DropdownMenuPrimitive.ItemIndicator>
|
|
111
|
+
<Check className="h-4 w-4" />
|
|
112
|
+
</DropdownMenuPrimitive.ItemIndicator>
|
|
113
|
+
</span>
|
|
114
|
+
{children}
|
|
115
|
+
</DropdownMenuPrimitive.CheckboxItem>
|
|
116
|
+
))
|
|
117
|
+
DropdownMenuCheckboxItem.displayName =
|
|
118
|
+
DropdownMenuPrimitive.CheckboxItem.displayName
|
|
119
|
+
|
|
120
|
+
const DropdownMenuRadioItem = React.forwardRef<
|
|
121
|
+
React.ElementRef<typeof DropdownMenuPrimitive.RadioItem>,
|
|
122
|
+
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioItem>
|
|
123
|
+
>(({ className, children, ...props }, ref) => (
|
|
124
|
+
<DropdownMenuPrimitive.RadioItem
|
|
125
|
+
ref={ref}
|
|
126
|
+
className={cn(
|
|
127
|
+
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
128
|
+
className
|
|
129
|
+
)}
|
|
130
|
+
{...props}
|
|
131
|
+
>
|
|
132
|
+
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
133
|
+
<DropdownMenuPrimitive.ItemIndicator>
|
|
134
|
+
<Circle className="h-2 w-2 fill-current" />
|
|
135
|
+
</DropdownMenuPrimitive.ItemIndicator>
|
|
136
|
+
</span>
|
|
137
|
+
{children}
|
|
138
|
+
</DropdownMenuPrimitive.RadioItem>
|
|
139
|
+
))
|
|
140
|
+
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName
|
|
141
|
+
|
|
142
|
+
const DropdownMenuLabel = React.forwardRef<
|
|
143
|
+
React.ElementRef<typeof DropdownMenuPrimitive.Label>,
|
|
144
|
+
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> & {
|
|
145
|
+
inset?: boolean
|
|
146
|
+
}
|
|
147
|
+
>(({ className, inset, ...props }, ref) => (
|
|
148
|
+
<DropdownMenuPrimitive.Label
|
|
149
|
+
ref={ref}
|
|
150
|
+
className={cn(
|
|
151
|
+
"px-2 py-1.5 text-sm font-semibold",
|
|
152
|
+
inset && "pl-8",
|
|
153
|
+
className
|
|
154
|
+
)}
|
|
155
|
+
{...props}
|
|
156
|
+
/>
|
|
157
|
+
))
|
|
158
|
+
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName
|
|
159
|
+
|
|
160
|
+
const DropdownMenuSeparator = React.forwardRef<
|
|
161
|
+
React.ElementRef<typeof DropdownMenuPrimitive.Separator>,
|
|
162
|
+
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator>
|
|
163
|
+
>(({ className, ...props }, ref) => (
|
|
164
|
+
<DropdownMenuPrimitive.Separator
|
|
165
|
+
ref={ref}
|
|
166
|
+
className={cn("-mx-1 my-1 h-px bg-muted", className)}
|
|
167
|
+
{...props}
|
|
168
|
+
/>
|
|
169
|
+
))
|
|
170
|
+
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName
|
|
171
|
+
|
|
172
|
+
const DropdownMenuShortcut = ({
|
|
173
|
+
className,
|
|
174
|
+
...props
|
|
175
|
+
}: React.HTMLAttributes<HTMLSpanElement>) => {
|
|
176
|
+
return (
|
|
177
|
+
<span
|
|
178
|
+
className={cn("ml-auto text-xs tracking-widest opacity-60", className)}
|
|
179
|
+
{...props}
|
|
180
|
+
/>
|
|
181
|
+
)
|
|
182
|
+
}
|
|
183
|
+
DropdownMenuShortcut.displayName = "DropdownMenuShortcut"
|
|
184
|
+
|
|
185
|
+
export {
|
|
186
|
+
DropdownMenu,
|
|
187
|
+
DropdownMenuTrigger,
|
|
188
|
+
DropdownMenuContent,
|
|
189
|
+
DropdownMenuItem,
|
|
190
|
+
DropdownMenuCheckboxItem,
|
|
191
|
+
DropdownMenuRadioItem,
|
|
192
|
+
DropdownMenuLabel,
|
|
193
|
+
DropdownMenuSeparator,
|
|
194
|
+
DropdownMenuShortcut,
|
|
195
|
+
DropdownMenuGroup,
|
|
196
|
+
DropdownMenuPortal,
|
|
197
|
+
DropdownMenuSub,
|
|
198
|
+
DropdownMenuSubContent,
|
|
199
|
+
DropdownMenuSubTrigger,
|
|
200
|
+
DropdownMenuRadioGroup,
|
|
201
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
.EquationEditor_inlineEditor {
|
|
11
|
+
padding: 0;
|
|
12
|
+
margin: 0;
|
|
13
|
+
border: 0;
|
|
14
|
+
outline: 0;
|
|
15
|
+
color: #8421a2;
|
|
16
|
+
background-color: inherit;
|
|
17
|
+
resize: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.EquationEditor_blockEditor {
|
|
21
|
+
padding: 0;
|
|
22
|
+
margin: 0;
|
|
23
|
+
border: 0;
|
|
24
|
+
outline: 0;
|
|
25
|
+
color: #8421a2;
|
|
26
|
+
background-color: inherit;
|
|
27
|
+
resize: none;
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.EquationEditor_inputBackground {
|
|
32
|
+
background-color: #eee;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.EquationEditor_dollarSign {
|
|
36
|
+
text-align: left;
|
|
37
|
+
color: #b0b0b0;
|
|
38
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import type {JSX, Ref, RefObject} from 'react';
|
|
10
|
+
|
|
11
|
+
import './EquationEditor.css';
|
|
12
|
+
|
|
13
|
+
import {isHTMLElement} from 'lexical';
|
|
14
|
+
import {ChangeEvent, forwardRef} from 'react';
|
|
15
|
+
|
|
16
|
+
type BaseEquationEditorProps = {
|
|
17
|
+
equation: string;
|
|
18
|
+
inline: boolean;
|
|
19
|
+
setEquation: (equation: string) => void;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
function EquationEditor(
|
|
23
|
+
{equation, setEquation, inline}: BaseEquationEditorProps,
|
|
24
|
+
forwardedRef: Ref<HTMLInputElement | HTMLTextAreaElement>,
|
|
25
|
+
): JSX.Element {
|
|
26
|
+
const onChange = (event: ChangeEvent) => {
|
|
27
|
+
setEquation((event.target as HTMLInputElement).value);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
return inline && isHTMLElement(forwardedRef) ? (
|
|
31
|
+
<span className="EquationEditor_inputBackground">
|
|
32
|
+
<span className="EquationEditor_dollarSign">$</span>
|
|
33
|
+
<input
|
|
34
|
+
className="EquationEditor_inlineEditor"
|
|
35
|
+
value={equation}
|
|
36
|
+
onChange={onChange}
|
|
37
|
+
autoFocus={true}
|
|
38
|
+
ref={forwardedRef as RefObject<HTMLInputElement>}
|
|
39
|
+
/>
|
|
40
|
+
<span className="EquationEditor_dollarSign">$</span>
|
|
41
|
+
</span>
|
|
42
|
+
) : (
|
|
43
|
+
<div className="EquationEditor_inputBackground">
|
|
44
|
+
<span className="EquationEditor_dollarSign">{'$$\n'}</span>
|
|
45
|
+
<textarea
|
|
46
|
+
className="EquationEditor_blockEditor"
|
|
47
|
+
value={equation}
|
|
48
|
+
onChange={onChange}
|
|
49
|
+
ref={forwardedRef as RefObject<HTMLTextAreaElement>}
|
|
50
|
+
/>
|
|
51
|
+
<span className="EquationEditor_dollarSign">{'\n$$'}</span>
|
|
52
|
+
</div>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export default forwardRef(EquationEditor);
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
.KatexEquationAlterer_defaultRow {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
margin-top: 10px;
|
|
14
|
+
margin-bottom: 10px;
|
|
15
|
+
justify-content: space-between;
|
|
16
|
+
overflow: hidden;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.KatexEquationAlterer_dialogActions {
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: row;
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
margin-top: 20px;
|
|
24
|
+
margin-bottom: 0;
|
|
25
|
+
justify-content: right;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.KatexEquationAlterer_centerRow {
|
|
29
|
+
display: flex;
|
|
30
|
+
flex-direction: 'row';
|
|
31
|
+
margin-top: 10px;
|
|
32
|
+
margin-bottom: 10px;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.KatexEquationAlterer_textArea {
|
|
38
|
+
width: 100%;
|
|
39
|
+
resize: none;
|
|
40
|
+
padding: 7px;
|
|
41
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import type { JSX } from 'react';
|
|
10
|
+
|
|
11
|
+
import './KatexEquationAlterer.css';
|
|
12
|
+
|
|
13
|
+
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
|
|
14
|
+
import * as React from 'react';
|
|
15
|
+
import { useCallback, useState } from 'react';
|
|
16
|
+
import { ErrorBoundary } from 'react-error-boundary';
|
|
17
|
+
|
|
18
|
+
import KatexRenderer from './KatexRenderer';
|
|
19
|
+
import { Button } from '@/components/ui/button';
|
|
20
|
+
|
|
21
|
+
type Props = {
|
|
22
|
+
initialEquation?: string;
|
|
23
|
+
onConfirm: (equation: string, inline: boolean) => void;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export default function KatexEquationAlterer({
|
|
27
|
+
onConfirm,
|
|
28
|
+
initialEquation = '',
|
|
29
|
+
}: Props): JSX.Element {
|
|
30
|
+
const [editor] = useLexicalComposerContext();
|
|
31
|
+
const [equation, setEquation] = useState<string>(initialEquation);
|
|
32
|
+
const [inline, setInline] = useState<boolean>(true);
|
|
33
|
+
|
|
34
|
+
const onClick = useCallback(() => {
|
|
35
|
+
onConfirm(equation, inline);
|
|
36
|
+
}, [onConfirm, equation, inline]);
|
|
37
|
+
|
|
38
|
+
const onCheckboxChange = useCallback(() => {
|
|
39
|
+
setInline(!inline);
|
|
40
|
+
}, [setInline, inline]);
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<>
|
|
44
|
+
<div className="KatexEquationAlterer_defaultRow">
|
|
45
|
+
Inline
|
|
46
|
+
<input type="checkbox" checked={inline} onChange={onCheckboxChange} />
|
|
47
|
+
</div>
|
|
48
|
+
<div className="KatexEquationAlterer_defaultRow">Equation </div>
|
|
49
|
+
<div className="KatexEquationAlterer_centerRow">
|
|
50
|
+
{inline ? (
|
|
51
|
+
<input
|
|
52
|
+
onChange={(event) => {
|
|
53
|
+
setEquation(event.target.value);
|
|
54
|
+
}}
|
|
55
|
+
value={equation}
|
|
56
|
+
className="KatexEquationAlterer_textArea"
|
|
57
|
+
/>
|
|
58
|
+
) : (
|
|
59
|
+
<textarea
|
|
60
|
+
onChange={(event) => {
|
|
61
|
+
setEquation(event.target.value);
|
|
62
|
+
}}
|
|
63
|
+
value={equation}
|
|
64
|
+
className="KatexEquationAlterer_textArea"
|
|
65
|
+
/>
|
|
66
|
+
)}
|
|
67
|
+
</div>
|
|
68
|
+
<div className="KatexEquationAlterer_defaultRow">Visualization </div>
|
|
69
|
+
<div className="KatexEquationAlterer_centerRow">
|
|
70
|
+
<ErrorBoundary onError={(e) => editor._onError(e)} fallback={null}>
|
|
71
|
+
<KatexRenderer
|
|
72
|
+
equation={equation}
|
|
73
|
+
inline={false}
|
|
74
|
+
onDoubleClick={() => null}
|
|
75
|
+
/>
|
|
76
|
+
</ErrorBoundary>
|
|
77
|
+
</div>
|
|
78
|
+
<div className="KatexEquationAlterer_dialogActions">
|
|
79
|
+
<Button onClick={onClick}>Confirm</Button>
|
|
80
|
+
</div>
|
|
81
|
+
</>
|
|
82
|
+
);
|
|
83
|
+
}
|