├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── Chat_Prompt.md ├── LICENSE ├── README.md ├── assets ├── Gallery.gif ├── Move.gif ├── Pick.gif ├── addAndSub.gif ├── bad1.png ├── bad2.png ├── bad3.png ├── delete.gif ├── header.png ├── header2.png ├── highly detailed,best quality,ocean s-3970917509.png ├── highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,lolita fashion,sandals,barefoot s-3639915976.png ├── highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,lolita fashion,sandals,barefoot,solo s-627828875.png └── highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,sandals,barefoot,solo,swimsuit s-4247237495.png ├── astro.config.mjs ├── demo ├── index.css ├── index.tsx └── useMagicAPI.tsx ├── locales ├── en.json ├── ja.json └── zh-CN.json ├── netlify.toml ├── netlify └── functions │ ├── ai.ts │ ├── status.ts │ └── upload_auth.ts ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.svg ├── robots.txt ├── tagClassify.csv └── tags.csv ├── server ├── .vscode │ └── settings.json ├── README.md ├── database.ts ├── deno.json ├── deps.ts ├── main.ts ├── router │ ├── RandomPick.ts │ ├── promptStore.ts │ └── tags.ts ├── sql │ └── create_prompts.sql ├── tsconfig.json └── workers │ └── meili_stats.mjs ├── src ├── Panels │ ├── Emoji.tsx │ ├── Feedback │ │ ├── Feedback.tsx │ │ ├── MyFeedback.tsx │ │ └── index.ts │ ├── HomePanel.tsx │ ├── PromptExtractor.tsx │ ├── PromptGPT │ │ ├── MeetsAI.tsx │ │ ├── PromptGPT.tsx │ │ ├── Select.tsx │ │ └── TextToText.tsx │ ├── PromptStore.tsx │ ├── SettingPanel.tsx │ ├── Talk │ │ ├── CommentList.tsx │ │ ├── InputArea.tsx │ │ ├── TalkMarkdown.tsx │ │ ├── TalkStore.ts │ │ ├── commit.ts │ │ ├── index.tsx │ │ └── timeage.ts │ ├── TalkPanel.css │ ├── TalkPanel.tsx │ ├── UploadPanel.tsx │ ├── Webview.tsx │ └── artist │ │ ├── index.tsx │ │ └── usePaginationStack.ts ├── api │ ├── TagAPI.ts │ ├── cloud.ts │ ├── emoji.ts │ ├── notion.ts │ ├── prompt-gpt.ts │ ├── prompt-gpt │ │ ├── CNModelName.tsx │ │ ├── DefaultGPT.ts │ │ ├── InstructGPT.ts │ │ └── decorators.ts │ └── prompt-store.ts ├── app │ ├── Global.ts │ ├── SideApp.tsx │ ├── Writer │ │ ├── App.tsx │ │ ├── Editor │ │ │ ├── Common │ │ │ │ ├── AIPlace.tsx │ │ │ │ ├── AISupport.tsx │ │ │ │ ├── ToolTips.tsx │ │ │ │ ├── Transformers.tsx │ │ │ │ └── splitTextToAutoComplete.tsx │ │ │ ├── EditorTemplate.tsx │ │ │ ├── Tags │ │ │ │ ├── Footer.tsx │ │ │ │ ├── SideBar.tsx │ │ │ │ └── TagsSearch.tsx │ │ │ ├── TagsEditor.tsx │ │ │ ├── Text │ │ │ │ └── FullTextEditor.tsx │ │ │ └── TextEditor.tsx │ │ ├── Header.tsx │ │ ├── WriterContext.tsx │ │ └── interface.ts │ ├── admin │ │ └── categories │ │ │ ├── CategoriesInput.tsx │ │ │ ├── createCategory.tsx │ │ │ └── index.tsx │ ├── gallery │ │ ├── App.tsx │ │ ├── BackupImage.tsx │ │ ├── Gallery.tsx │ │ ├── GalleryColumn.tsx │ │ ├── Panels │ │ │ └── Detail.tsx │ │ ├── ScrollLoading.tsx │ │ ├── SearchBar.tsx │ │ └── index.css │ ├── main │ │ ├── App.tsx │ │ ├── GlobalHeader.tsx │ │ ├── ToolBar │ │ │ ├── ColorJar.ts │ │ │ ├── HeaderFirst.tsx │ │ │ ├── HeaderSecond.tsx │ │ │ └── sub │ │ │ │ ├── CheckBox.tsx │ │ │ │ ├── CopyBtn.tsx │ │ │ │ ├── MainFloat.tsx │ │ │ │ └── ToolBox.tsx │ │ └── UserSelected.tsx │ ├── notebook │ │ ├── App.tsx │ │ ├── BackupPanel.tsx │ │ ├── MagicList.tsx │ │ ├── MagicList │ │ │ ├── ImageCard.tsx │ │ │ └── MagicControl.tsx │ │ ├── components │ │ │ ├── AsyncImage.tsx │ │ │ └── ExpendText.tsx │ │ └── use │ │ │ └── useIndexedDB.tsx │ ├── status │ │ ├── MeiliStat.tsx │ │ ├── app.tsx │ │ └── charts.tsx │ └── tags │ │ ├── App.tsx │ │ └── change.tsx ├── components │ ├── AC.tsx │ ├── AIImageInfoShower.tsx │ ├── ActiveUser.tsx │ ├── Background.tsx │ ├── ContentEditable.css │ ├── ContentEditable.tsx │ ├── ControlBar.tsx │ ├── FontSupport.tsx │ ├── LocalSearch │ │ └── index.ts │ ├── MessageHInt.tsx │ ├── Panel.tsx │ ├── SearchBox │ │ ├── ClassFilter.tsx │ │ ├── FilterBar.tsx │ │ ├── SearchBar.tsx │ │ ├── SearchBox.tsx │ │ └── SearchResult.tsx │ ├── TagButton.tsx │ ├── TagTransfer.ts │ └── UploadButton.tsx ├── env.d.ts ├── i18n │ └── index.ts ├── iframeExpose │ └── index.ts ├── layouts │ ├── Layout.astro │ ├── MD.astro │ ├── comp │ │ └── searchEngine.astro │ ├── form.css │ ├── index.css │ └── markdown.css ├── pages │ ├── admin │ │ └── categories.astro │ ├── gallery.astro │ ├── index.astro │ ├── news.md │ ├── notebook.astro │ ├── posts │ │ └── compare-gpt.md │ ├── status.astro │ ├── tags.astro │ ├── tags │ │ └── change.astro │ └── writer.astro ├── plugins │ ├── GlobalPlugin.ts │ └── globalTranslate │ │ ├── TranslationPanel.tsx │ │ ├── index.ts │ │ └── useMouse.tsx ├── store │ ├── GalleryStore.ts │ ├── GlobalData.ts │ ├── NoteBookStore.ts │ ├── SideAppStore.ts │ ├── index.ts │ └── useGlobalTags.ts ├── use │ ├── TagsConvertor.tsx │ ├── useHistoryTravel.ts │ ├── useHoverInDom.ts │ ├── useLocalData.ts │ ├── useStorage.tsx │ ├── useTagController.tsx │ ├── useViewer.tsx │ └── useWindowResize.ts ├── utils │ ├── CSVToJSON.ts │ ├── ColorPicker.ts │ ├── CombineMagic.tsx │ ├── TradToSimple.ts │ ├── getPromptsFromPic.ts │ ├── getTagInURL.tsx │ ├── localSync.ts │ ├── newsReport.ts │ ├── notice.ts │ └── sampleSize.ts └── workers │ └── searchWorker.ts ├── tailwind.config.js ├── tsconfig.json ├── update.md └── vite.config.ts /.browserslistrc: -------------------------------------------------------------------------------- 1 | chrome 49 2 | edge 16 3 | firefox 31 4 | safari 10 5 | opera 36 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Chat_Prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/Chat_Prompt.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/README.md -------------------------------------------------------------------------------- /assets/Gallery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/Gallery.gif -------------------------------------------------------------------------------- /assets/Move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/Move.gif -------------------------------------------------------------------------------- /assets/Pick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/Pick.gif -------------------------------------------------------------------------------- /assets/addAndSub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/addAndSub.gif -------------------------------------------------------------------------------- /assets/bad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/bad1.png -------------------------------------------------------------------------------- /assets/bad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/bad2.png -------------------------------------------------------------------------------- /assets/bad3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/bad3.png -------------------------------------------------------------------------------- /assets/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/delete.gif -------------------------------------------------------------------------------- /assets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/header.png -------------------------------------------------------------------------------- /assets/header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/header2.png -------------------------------------------------------------------------------- /assets/highly detailed,best quality,ocean s-3970917509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/highly detailed,best quality,ocean s-3970917509.png -------------------------------------------------------------------------------- /assets/highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,lolita fashion,sandals,barefoot s-3639915976.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,lolita fashion,sandals,barefoot s-3639915976.png -------------------------------------------------------------------------------- /assets/highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,lolita fashion,sandals,barefoot,solo s-627828875.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,lolita fashion,sandals,barefoot,solo s-627828875.png -------------------------------------------------------------------------------- /assets/highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,sandals,barefoot,solo,swimsuit s-4247237495.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/assets/highly detailed,best quality,ocean,green hair,short hair,straight hair,blue eyes,glasses,full body,open mouth,blush,sandals,barefoot,solo,swimsuit s-4247237495.png -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /demo/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/demo/index.css -------------------------------------------------------------------------------- /demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/demo/index.tsx -------------------------------------------------------------------------------- /demo/useMagicAPI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/demo/useMagicAPI.tsx -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/locales/en.json -------------------------------------------------------------------------------- /locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/locales/ja.json -------------------------------------------------------------------------------- /locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/locales/zh-CN.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/functions/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/netlify/functions/ai.ts -------------------------------------------------------------------------------- /netlify/functions/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/netlify/functions/status.ts -------------------------------------------------------------------------------- /netlify/functions/upload_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/netlify/functions/upload_auth.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/tagClassify.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/public/tagClassify.csv -------------------------------------------------------------------------------- /public/tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/public/tags.csv -------------------------------------------------------------------------------- /server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/.vscode/settings.json -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/README.md -------------------------------------------------------------------------------- /server/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/database.ts -------------------------------------------------------------------------------- /server/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/deno.json -------------------------------------------------------------------------------- /server/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/deps.ts -------------------------------------------------------------------------------- /server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/main.ts -------------------------------------------------------------------------------- /server/router/RandomPick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/router/RandomPick.ts -------------------------------------------------------------------------------- /server/router/promptStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/router/promptStore.ts -------------------------------------------------------------------------------- /server/router/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/router/tags.ts -------------------------------------------------------------------------------- /server/sql/create_prompts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/sql/create_prompts.sql -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/workers/meili_stats.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/server/workers/meili_stats.mjs -------------------------------------------------------------------------------- /src/Panels/Emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Emoji.tsx -------------------------------------------------------------------------------- /src/Panels/Feedback/Feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Feedback/Feedback.tsx -------------------------------------------------------------------------------- /src/Panels/Feedback/MyFeedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Feedback/MyFeedback.tsx -------------------------------------------------------------------------------- /src/Panels/Feedback/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Feedback/index.ts -------------------------------------------------------------------------------- /src/Panels/HomePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/HomePanel.tsx -------------------------------------------------------------------------------- /src/Panels/PromptExtractor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/PromptExtractor.tsx -------------------------------------------------------------------------------- /src/Panels/PromptGPT/MeetsAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/PromptGPT/MeetsAI.tsx -------------------------------------------------------------------------------- /src/Panels/PromptGPT/PromptGPT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/PromptGPT/PromptGPT.tsx -------------------------------------------------------------------------------- /src/Panels/PromptGPT/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/PromptGPT/Select.tsx -------------------------------------------------------------------------------- /src/Panels/PromptGPT/TextToText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/PromptGPT/TextToText.tsx -------------------------------------------------------------------------------- /src/Panels/PromptStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/PromptStore.tsx -------------------------------------------------------------------------------- /src/Panels/SettingPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/SettingPanel.tsx -------------------------------------------------------------------------------- /src/Panels/Talk/CommentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Talk/CommentList.tsx -------------------------------------------------------------------------------- /src/Panels/Talk/InputArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Talk/InputArea.tsx -------------------------------------------------------------------------------- /src/Panels/Talk/TalkMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Talk/TalkMarkdown.tsx -------------------------------------------------------------------------------- /src/Panels/Talk/TalkStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Talk/TalkStore.ts -------------------------------------------------------------------------------- /src/Panels/Talk/commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Talk/commit.ts -------------------------------------------------------------------------------- /src/Panels/Talk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Talk/index.tsx -------------------------------------------------------------------------------- /src/Panels/Talk/timeage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Talk/timeage.ts -------------------------------------------------------------------------------- /src/Panels/TalkPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/TalkPanel.css -------------------------------------------------------------------------------- /src/Panels/TalkPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/TalkPanel.tsx -------------------------------------------------------------------------------- /src/Panels/UploadPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/UploadPanel.tsx -------------------------------------------------------------------------------- /src/Panels/Webview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/Webview.tsx -------------------------------------------------------------------------------- /src/Panels/artist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/artist/index.tsx -------------------------------------------------------------------------------- /src/Panels/artist/usePaginationStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/Panels/artist/usePaginationStack.ts -------------------------------------------------------------------------------- /src/api/TagAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/TagAPI.ts -------------------------------------------------------------------------------- /src/api/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/cloud.ts -------------------------------------------------------------------------------- /src/api/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/emoji.ts -------------------------------------------------------------------------------- /src/api/notion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/notion.ts -------------------------------------------------------------------------------- /src/api/prompt-gpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/prompt-gpt.ts -------------------------------------------------------------------------------- /src/api/prompt-gpt/CNModelName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/prompt-gpt/CNModelName.tsx -------------------------------------------------------------------------------- /src/api/prompt-gpt/DefaultGPT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/prompt-gpt/DefaultGPT.ts -------------------------------------------------------------------------------- /src/api/prompt-gpt/InstructGPT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/prompt-gpt/InstructGPT.ts -------------------------------------------------------------------------------- /src/api/prompt-gpt/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/prompt-gpt/decorators.ts -------------------------------------------------------------------------------- /src/api/prompt-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/api/prompt-store.ts -------------------------------------------------------------------------------- /src/app/Global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Global.ts -------------------------------------------------------------------------------- /src/app/SideApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/SideApp.tsx -------------------------------------------------------------------------------- /src/app/Writer/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/App.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Common/AIPlace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Common/AIPlace.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Common/AISupport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Common/AISupport.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Common/ToolTips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Common/ToolTips.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Common/Transformers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Common/Transformers.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Common/splitTextToAutoComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Common/splitTextToAutoComplete.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/EditorTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/EditorTemplate.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Tags/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Tags/Footer.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Tags/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Tags/SideBar.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Tags/TagsSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Tags/TagsSearch.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/TagsEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/TagsEditor.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/Text/FullTextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/Text/FullTextEditor.tsx -------------------------------------------------------------------------------- /src/app/Writer/Editor/TextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Editor/TextEditor.tsx -------------------------------------------------------------------------------- /src/app/Writer/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/Header.tsx -------------------------------------------------------------------------------- /src/app/Writer/WriterContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/WriterContext.tsx -------------------------------------------------------------------------------- /src/app/Writer/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/Writer/interface.ts -------------------------------------------------------------------------------- /src/app/admin/categories/CategoriesInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/admin/categories/CategoriesInput.tsx -------------------------------------------------------------------------------- /src/app/admin/categories/createCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/admin/categories/createCategory.tsx -------------------------------------------------------------------------------- /src/app/admin/categories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/admin/categories/index.tsx -------------------------------------------------------------------------------- /src/app/gallery/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/gallery/App.tsx -------------------------------------------------------------------------------- /src/app/gallery/BackupImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/gallery/BackupImage.tsx -------------------------------------------------------------------------------- /src/app/gallery/Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/gallery/Gallery.tsx -------------------------------------------------------------------------------- /src/app/gallery/GalleryColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/gallery/GalleryColumn.tsx -------------------------------------------------------------------------------- /src/app/gallery/Panels/Detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/gallery/Panels/Detail.tsx -------------------------------------------------------------------------------- /src/app/gallery/ScrollLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/gallery/ScrollLoading.tsx -------------------------------------------------------------------------------- /src/app/gallery/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/gallery/SearchBar.tsx -------------------------------------------------------------------------------- /src/app/gallery/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/gallery/index.css -------------------------------------------------------------------------------- /src/app/main/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/App.tsx -------------------------------------------------------------------------------- /src/app/main/GlobalHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/GlobalHeader.tsx -------------------------------------------------------------------------------- /src/app/main/ToolBar/ColorJar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/ToolBar/ColorJar.ts -------------------------------------------------------------------------------- /src/app/main/ToolBar/HeaderFirst.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/ToolBar/HeaderFirst.tsx -------------------------------------------------------------------------------- /src/app/main/ToolBar/HeaderSecond.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/ToolBar/HeaderSecond.tsx -------------------------------------------------------------------------------- /src/app/main/ToolBar/sub/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/ToolBar/sub/CheckBox.tsx -------------------------------------------------------------------------------- /src/app/main/ToolBar/sub/CopyBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/ToolBar/sub/CopyBtn.tsx -------------------------------------------------------------------------------- /src/app/main/ToolBar/sub/MainFloat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/ToolBar/sub/MainFloat.tsx -------------------------------------------------------------------------------- /src/app/main/ToolBar/sub/ToolBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/ToolBar/sub/ToolBox.tsx -------------------------------------------------------------------------------- /src/app/main/UserSelected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/main/UserSelected.tsx -------------------------------------------------------------------------------- /src/app/notebook/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/notebook/App.tsx -------------------------------------------------------------------------------- /src/app/notebook/BackupPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/notebook/BackupPanel.tsx -------------------------------------------------------------------------------- /src/app/notebook/MagicList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/notebook/MagicList.tsx -------------------------------------------------------------------------------- /src/app/notebook/MagicList/ImageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/notebook/MagicList/ImageCard.tsx -------------------------------------------------------------------------------- /src/app/notebook/MagicList/MagicControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/notebook/MagicList/MagicControl.tsx -------------------------------------------------------------------------------- /src/app/notebook/components/AsyncImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/notebook/components/AsyncImage.tsx -------------------------------------------------------------------------------- /src/app/notebook/components/ExpendText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/notebook/components/ExpendText.tsx -------------------------------------------------------------------------------- /src/app/notebook/use/useIndexedDB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/notebook/use/useIndexedDB.tsx -------------------------------------------------------------------------------- /src/app/status/MeiliStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/status/MeiliStat.tsx -------------------------------------------------------------------------------- /src/app/status/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/status/app.tsx -------------------------------------------------------------------------------- /src/app/status/charts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/status/charts.tsx -------------------------------------------------------------------------------- /src/app/tags/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/tags/App.tsx -------------------------------------------------------------------------------- /src/app/tags/change.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/app/tags/change.tsx -------------------------------------------------------------------------------- /src/components/AC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/AC.tsx -------------------------------------------------------------------------------- /src/components/AIImageInfoShower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/AIImageInfoShower.tsx -------------------------------------------------------------------------------- /src/components/ActiveUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/ActiveUser.tsx -------------------------------------------------------------------------------- /src/components/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/Background.tsx -------------------------------------------------------------------------------- /src/components/ContentEditable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/ContentEditable.css -------------------------------------------------------------------------------- /src/components/ContentEditable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/ContentEditable.tsx -------------------------------------------------------------------------------- /src/components/ControlBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/ControlBar.tsx -------------------------------------------------------------------------------- /src/components/FontSupport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/FontSupport.tsx -------------------------------------------------------------------------------- /src/components/LocalSearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/LocalSearch/index.ts -------------------------------------------------------------------------------- /src/components/MessageHInt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/MessageHInt.tsx -------------------------------------------------------------------------------- /src/components/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/Panel.tsx -------------------------------------------------------------------------------- /src/components/SearchBox/ClassFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/SearchBox/ClassFilter.tsx -------------------------------------------------------------------------------- /src/components/SearchBox/FilterBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/SearchBox/FilterBar.tsx -------------------------------------------------------------------------------- /src/components/SearchBox/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/SearchBox/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/SearchBox/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/SearchBox/SearchBox.tsx -------------------------------------------------------------------------------- /src/components/SearchBox/SearchResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/SearchBox/SearchResult.tsx -------------------------------------------------------------------------------- /src/components/TagButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/TagButton.tsx -------------------------------------------------------------------------------- /src/components/TagTransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/TagTransfer.ts -------------------------------------------------------------------------------- /src/components/UploadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/components/UploadButton.tsx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/iframeExpose/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/iframeExpose/index.ts -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/layouts/MD.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/layouts/MD.astro -------------------------------------------------------------------------------- /src/layouts/comp/searchEngine.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/layouts/comp/searchEngine.astro -------------------------------------------------------------------------------- /src/layouts/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/layouts/form.css -------------------------------------------------------------------------------- /src/layouts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/layouts/index.css -------------------------------------------------------------------------------- /src/layouts/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/layouts/markdown.css -------------------------------------------------------------------------------- /src/pages/admin/categories.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/admin/categories.astro -------------------------------------------------------------------------------- /src/pages/gallery.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/gallery.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/news.md -------------------------------------------------------------------------------- /src/pages/notebook.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/notebook.astro -------------------------------------------------------------------------------- /src/pages/posts/compare-gpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/posts/compare-gpt.md -------------------------------------------------------------------------------- /src/pages/status.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/status.astro -------------------------------------------------------------------------------- /src/pages/tags.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/tags.astro -------------------------------------------------------------------------------- /src/pages/tags/change.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/tags/change.astro -------------------------------------------------------------------------------- /src/pages/writer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/pages/writer.astro -------------------------------------------------------------------------------- /src/plugins/GlobalPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/plugins/GlobalPlugin.ts -------------------------------------------------------------------------------- /src/plugins/globalTranslate/TranslationPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/plugins/globalTranslate/TranslationPanel.tsx -------------------------------------------------------------------------------- /src/plugins/globalTranslate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/plugins/globalTranslate/index.ts -------------------------------------------------------------------------------- /src/plugins/globalTranslate/useMouse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/plugins/globalTranslate/useMouse.tsx -------------------------------------------------------------------------------- /src/store/GalleryStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/store/GalleryStore.ts -------------------------------------------------------------------------------- /src/store/GlobalData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/store/GlobalData.ts -------------------------------------------------------------------------------- /src/store/NoteBookStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/store/NoteBookStore.ts -------------------------------------------------------------------------------- /src/store/SideAppStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/store/SideAppStore.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/useGlobalTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/store/useGlobalTags.ts -------------------------------------------------------------------------------- /src/use/TagsConvertor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/use/TagsConvertor.tsx -------------------------------------------------------------------------------- /src/use/useHistoryTravel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/use/useHistoryTravel.ts -------------------------------------------------------------------------------- /src/use/useHoverInDom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/use/useHoverInDom.ts -------------------------------------------------------------------------------- /src/use/useLocalData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/use/useLocalData.ts -------------------------------------------------------------------------------- /src/use/useStorage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/use/useStorage.tsx -------------------------------------------------------------------------------- /src/use/useTagController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/use/useTagController.tsx -------------------------------------------------------------------------------- /src/use/useViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/use/useViewer.tsx -------------------------------------------------------------------------------- /src/use/useWindowResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/use/useWindowResize.ts -------------------------------------------------------------------------------- /src/utils/CSVToJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/CSVToJSON.ts -------------------------------------------------------------------------------- /src/utils/ColorPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/ColorPicker.ts -------------------------------------------------------------------------------- /src/utils/CombineMagic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/CombineMagic.tsx -------------------------------------------------------------------------------- /src/utils/TradToSimple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/TradToSimple.ts -------------------------------------------------------------------------------- /src/utils/getPromptsFromPic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/getPromptsFromPic.ts -------------------------------------------------------------------------------- /src/utils/getTagInURL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/getTagInURL.tsx -------------------------------------------------------------------------------- /src/utils/localSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/localSync.ts -------------------------------------------------------------------------------- /src/utils/newsReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/newsReport.ts -------------------------------------------------------------------------------- /src/utils/notice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/notice.ts -------------------------------------------------------------------------------- /src/utils/sampleSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/utils/sampleSize.ts -------------------------------------------------------------------------------- /src/workers/searchWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/src/workers/searchWorker.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/update.md -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/ai-tag/HEAD/vite.config.ts --------------------------------------------------------------------------------