mirror of
https://github.com/jaywcjlove/wxmp.git
synced 2026-01-11 07:48:48 +08:00
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import MarkdownEditor, { getCommands } from '@uiw/react-markdown-editor';
|
|
import { useContext } from 'react';
|
|
import { EditorView } from '@codemirror/view';
|
|
import styled from 'styled-components';
|
|
import { Preview } from './Preview';
|
|
import { copy } from '../../commands/copy';
|
|
import { theme as themeCommand, previeTheme } from '../../commands/theme';
|
|
import { cssCommand } from '../../commands/css';
|
|
import { Context, themes } from '../../store/context';
|
|
|
|
const Warpper = styled.div`
|
|
height: calc(100vh - 2.9rem);
|
|
`;
|
|
|
|
export const HomePage = () => {
|
|
const commands = [...getCommands(), themeCommand];
|
|
const { theme, markdown, setMarkdown } = useContext(Context);
|
|
const themeValue = themes[theme].value;
|
|
const handleChange = (value: string) => setMarkdown(value);
|
|
return (
|
|
<Warpper>
|
|
<MarkdownEditor
|
|
value={markdown}
|
|
toolbars={commands}
|
|
theme={themeValue}
|
|
toolbarsMode={[cssCommand, previeTheme, copy, 'preview', 'fullscreen']}
|
|
extensions={[EditorView.lineWrapping]}
|
|
renderPreview={Preview}
|
|
onChange={handleChange}
|
|
visible={true}
|
|
height="calc(100vh - 4.92rem)"
|
|
/>
|
|
</Warpper>
|
|
);
|
|
};
|