diff --git a/src/assets/icons/FileTextIcon.tsx b/src/assets/icons/FileTextIcon.tsx new file mode 100644 index 0000000..7f291b6 --- /dev/null +++ b/src/assets/icons/FileTextIcon.tsx @@ -0,0 +1,17 @@ +import React from 'react'; + +const FileTextIcon = (props: React.SVGProps) => { + return ( + + + + ); +}; + +export default FileTextIcon; diff --git a/src/components/Chat/ChatContent/Message/View/Button/MarkdownModeButton.tsx b/src/components/Chat/ChatContent/Message/View/Button/MarkdownModeButton.tsx new file mode 100644 index 0000000..402116b --- /dev/null +++ b/src/components/Chat/ChatContent/Message/View/Button/MarkdownModeButton.tsx @@ -0,0 +1,24 @@ +import React, { useState } from 'react'; + +import useStore from '@store/store'; + +import BaseButton from './BaseButton'; + +import MarkdownIcon from '@icon/MarkdownIcon'; +import FileTextIcon from '@icon/FileTextIcon'; + +const MarkdownModeButton = () => { + const markdownMode = useStore((state) => state.markdownMode); + const setMarkdownMode = useStore((state) => state.setMarkdownMode); + + return ( + : } + onClick={() => { + setMarkdownMode(!markdownMode); + }} + /> + ); +}; + +export default MarkdownModeButton; diff --git a/src/components/Chat/ChatContent/Message/View/ContentView.tsx b/src/components/Chat/ChatContent/Message/View/ContentView.tsx index 997fb1c..d0d4724 100644 --- a/src/components/Chat/ChatContent/Message/View/ContentView.tsx +++ b/src/components/Chat/ChatContent/Message/View/ContentView.tsx @@ -29,6 +29,8 @@ import DownButton from './Button/DownButton'; import CopyButton from './Button/CopyButton'; import EditButton from './Button/EditButton'; import DeleteButton from './Button/DeleteButton'; +import MarkdownModeButton from './Button/MarkdownModeButton'; + import CodeBlock from '../CodeBlock'; const ContentView = memo( @@ -44,13 +46,16 @@ const ContentView = memo( messageIndex: number; }) => { const { handleSubmit } = useSubmit(); + const [isDelete, setIsDelete] = useState(false); + const currentChatIndex = useStore((state) => state.currentChatIndex); const setChats = useStore((state) => state.setChats); const lastMessageIndex = useStore((state) => state.chats ? state.chats[state.currentChatIndex].messages.length - 1 : 0 ); const inlineLatex = useStore((state) => state.inlineLatex); + const markdownMode = useStore((state) => state.markdownMode); const handleDelete = () => { const updatedChats: ChatInterface[] = JSON.parse( @@ -101,30 +106,34 @@ const ContentView = memo( return ( <>
- - {content} - + {markdownMode ? ( + + {content} + + ) : ( + {content} + )}
{isDelete || ( @@ -139,6 +148,7 @@ const ContentView = memo( )} + diff --git a/src/store/config-slice.ts b/src/store/config-slice.ts index eab7c8b..b21a02b 100644 --- a/src/store/config-slice.ts +++ b/src/store/config-slice.ts @@ -14,6 +14,7 @@ export interface ConfigSlice { hideSideMenu: boolean; enterToSubmit: boolean; inlineLatex: boolean; + markdownMode: boolean; setOpenConfig: (openConfig: boolean) => void; setTheme: (theme: Theme) => void; setAutoTitle: (autoTitle: boolean) => void; @@ -24,6 +25,7 @@ export interface ConfigSlice { setHideSideMenu: (hideSideMenu: boolean) => void; setEnterToSubmit: (enterToSubmit: boolean) => void; setInlineLatex: (inlineLatex: boolean) => void; + setMarkdownMode: (markdownMode: boolean) => void; } export const createConfigSlice: StoreSlice = (set, get) => ({ @@ -37,6 +39,7 @@ export const createConfigSlice: StoreSlice = (set, get) => ({ defaultChatConfig: _defaultChatConfig, defaultSystemMessage: _defaultSystemMessage, inlineLatex: false, + markdownMode: true, setOpenConfig: (openConfig: boolean) => { set((prev: ConfigSlice) => ({ ...prev, @@ -97,4 +100,10 @@ export const createConfigSlice: StoreSlice = (set, get) => ({ inlineLatex: inlineLatex, })); }, + setMarkdownMode: (markdownMode: boolean) => { + set((prev: ConfigSlice) => ({ + ...prev, + markdownMode: markdownMode, + })); + }, }); diff --git a/src/store/store.ts b/src/store/store.ts index 4ab44ad..1acf4bf 100644 --- a/src/store/store.ts +++ b/src/store/store.ts @@ -56,6 +56,7 @@ export const createPartializedState = (state: StoreState) => ({ folders: state.folders, enterToSubmit: state.enterToSubmit, inlineLatex: state.inlineLatex, + markdownMode: state.markdownMode, }); const useStore = create()(