├── .cz-config.js ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc ├── README.md ├── commitlint.config.js ├── index.html ├── package.json ├── src ├── assets │ └── favicon.ico ├── components │ ├── HeaderEditor │ │ ├── index.tsx │ │ └── style.less │ ├── HeatMap │ │ ├── index.tsx │ │ └── style.less │ ├── MemosWrap │ │ ├── index.tsx │ │ └── style.less │ ├── SearchHeader │ │ ├── index.tsx │ │ └── style.less │ ├── SliderBarUl │ │ ├── index.tsx │ │ └── style.less │ ├── TagsTree │ │ ├── index.tsx │ │ └── style.less │ ├── TheEditor │ │ ├── index.tsx │ │ ├── plugin │ │ │ ├── format.ts │ │ │ ├── withImages.ts │ │ │ └── withList.ts │ │ ├── render │ │ │ ├── Element.tsx │ │ │ ├── ImageBtn.tsx │ │ │ ├── Leaf.tsx │ │ │ ├── TagSelect.tsx │ │ │ ├── ToolBar.tsx │ │ │ └── ToolButton.tsx │ │ └── style.less │ ├── TheStat │ │ ├── index.tsx │ │ └── style.less │ └── UserHeader │ │ ├── index.tsx │ │ └── style.less ├── hooks │ ├── useMemoList.ts │ ├── useRefresh.ts │ └── useSearch.ts ├── main.tsx ├── store │ ├── hooks.ts │ ├── index.ts │ └── reducers │ │ ├── baseInfo.ts │ │ ├── editor.ts │ │ ├── global.ts │ │ ├── memo.ts │ │ └── tag.ts ├── styles │ ├── index.css │ ├── reset.less │ └── variables.less ├── types │ ├── baseInfo.ts │ ├── index.ts │ ├── memo.ts │ ├── request.ts │ └── tags.ts ├── utils │ ├── axios.ts │ ├── constants.ts │ ├── date.ts │ └── jsonHandle.ts ├── views │ └── App │ │ ├── App.tsx │ │ └── style.less └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] } 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/components/HeaderEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/HeaderEditor/index.tsx -------------------------------------------------------------------------------- /src/components/HeaderEditor/style.less: -------------------------------------------------------------------------------- 1 | .HeaderEditor{ 2 | padding: 10px 15px 3 | } 4 | -------------------------------------------------------------------------------- /src/components/HeatMap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/HeatMap/index.tsx -------------------------------------------------------------------------------- /src/components/HeatMap/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/HeatMap/style.less -------------------------------------------------------------------------------- /src/components/MemosWrap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/MemosWrap/index.tsx -------------------------------------------------------------------------------- /src/components/MemosWrap/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/MemosWrap/style.less -------------------------------------------------------------------------------- /src/components/SearchHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/SearchHeader/index.tsx -------------------------------------------------------------------------------- /src/components/SearchHeader/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/SearchHeader/style.less -------------------------------------------------------------------------------- /src/components/SliderBarUl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/SliderBarUl/index.tsx -------------------------------------------------------------------------------- /src/components/SliderBarUl/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/SliderBarUl/style.less -------------------------------------------------------------------------------- /src/components/TagsTree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TagsTree/index.tsx -------------------------------------------------------------------------------- /src/components/TagsTree/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TagsTree/style.less -------------------------------------------------------------------------------- /src/components/TheEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/index.tsx -------------------------------------------------------------------------------- /src/components/TheEditor/plugin/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/plugin/format.ts -------------------------------------------------------------------------------- /src/components/TheEditor/plugin/withImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/plugin/withImages.ts -------------------------------------------------------------------------------- /src/components/TheEditor/plugin/withList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/plugin/withList.ts -------------------------------------------------------------------------------- /src/components/TheEditor/render/Element.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/render/Element.tsx -------------------------------------------------------------------------------- /src/components/TheEditor/render/ImageBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/render/ImageBtn.tsx -------------------------------------------------------------------------------- /src/components/TheEditor/render/Leaf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/render/Leaf.tsx -------------------------------------------------------------------------------- /src/components/TheEditor/render/TagSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/render/TagSelect.tsx -------------------------------------------------------------------------------- /src/components/TheEditor/render/ToolBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/render/ToolBar.tsx -------------------------------------------------------------------------------- /src/components/TheEditor/render/ToolButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/render/ToolButton.tsx -------------------------------------------------------------------------------- /src/components/TheEditor/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheEditor/style.less -------------------------------------------------------------------------------- /src/components/TheStat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheStat/index.tsx -------------------------------------------------------------------------------- /src/components/TheStat/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/TheStat/style.less -------------------------------------------------------------------------------- /src/components/UserHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/UserHeader/index.tsx -------------------------------------------------------------------------------- /src/components/UserHeader/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/components/UserHeader/style.less -------------------------------------------------------------------------------- /src/hooks/useMemoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/hooks/useMemoList.ts -------------------------------------------------------------------------------- /src/hooks/useRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/hooks/useRefresh.ts -------------------------------------------------------------------------------- /src/hooks/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/hooks/useSearch.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/store/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/store/hooks.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/reducers/baseInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/store/reducers/baseInfo.ts -------------------------------------------------------------------------------- /src/store/reducers/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/store/reducers/editor.ts -------------------------------------------------------------------------------- /src/store/reducers/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/store/reducers/global.ts -------------------------------------------------------------------------------- /src/store/reducers/memo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/store/reducers/memo.ts -------------------------------------------------------------------------------- /src/store/reducers/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/store/reducers/tag.ts -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/styles/reset.less -------------------------------------------------------------------------------- /src/styles/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/styles/variables.less -------------------------------------------------------------------------------- /src/types/baseInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/types/baseInfo.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/memo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/types/memo.ts -------------------------------------------------------------------------------- /src/types/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/types/request.ts -------------------------------------------------------------------------------- /src/types/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/types/tags.ts -------------------------------------------------------------------------------- /src/utils/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/utils/axios.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/jsonHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/utils/jsonHandle.ts -------------------------------------------------------------------------------- /src/views/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/views/App/App.tsx -------------------------------------------------------------------------------- /src/views/App/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/src/views/App/style.less -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kffhi/flomo-react/HEAD/vite.config.ts --------------------------------------------------------------------------------