├── .env.development ├── .env.production ├── .github ├── ISSUE_TEMPLATE │ └── do-not-submit-any-issue-here.md └── workflows │ ├── build.yml │ ├── format.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .husky ├── .gitignore └── pre-commit ├── .prettierignore ├── .prettierrc ├── README.md ├── crowdin.yml ├── images ├── figplayer.png ├── fileball.png ├── iPlay.png ├── iina.png ├── infuse.png ├── mpv.png ├── mxplayer-pro.png ├── mxplayer.png ├── nplayer.png ├── omniplayer.png ├── potplayer.png └── vlc.png ├── index.html ├── netlify.toml ├── package.json ├── pnpm-lock.yaml ├── public ├── images │ ├── config-active.png │ ├── config-gray.png │ ├── figplayer.webp │ ├── fileball.webp │ ├── filetypes │ │ ├── 3GP.png │ │ ├── 7z.png │ │ ├── AAC.png │ │ ├── AI-1.png │ │ ├── AI.png │ │ ├── AMR.png │ │ ├── ASE.png │ │ ├── ASP.png │ │ ├── ASPX.png │ │ ├── AU.png │ │ ├── AVI.png │ │ ├── BMP.png │ │ ├── C++.png │ │ ├── CAD.png │ │ ├── CFM.png │ │ ├── CGI.png │ │ ├── COM.png │ │ ├── CPP.png │ │ ├── CSS.png │ │ ├── CSV.png │ │ ├── DMG.png │ │ ├── DOC.png │ │ ├── DOCX.png │ │ ├── FLAC.png │ │ ├── GIF.png │ │ ├── GZ.png │ │ ├── ICO.png │ │ ├── ISO.png │ │ ├── JAVA.png │ │ ├── JPEG.png │ │ ├── JPG.png │ │ ├── JSON.png │ │ ├── MDF.png │ │ ├── MMF.png │ │ ├── MOV.png │ │ ├── MP3.png │ │ ├── MP4.png │ │ ├── MPG-1.png │ │ ├── MPG.png │ │ ├── MSI.png │ │ ├── OBJ.png │ │ ├── OTF.png │ │ ├── PDF.png │ │ ├── PHP.png │ │ ├── PKG.png │ │ ├── PNG-1.png │ │ ├── PNG.png │ │ ├── PPT-1.png │ │ ├── PPT.png │ │ ├── PPTX.png │ │ ├── PSD.png │ │ ├── PY.png │ │ ├── RM.png │ │ ├── RMVB.png │ │ ├── SQL.png │ │ ├── SRT.png │ │ ├── SVG.png │ │ ├── TAR.png │ │ ├── TIF-1.png │ │ ├── TIF.png │ │ ├── TIFF.png │ │ ├── TXT-1.png │ │ ├── TXT.png │ │ ├── WAV.png │ │ ├── WMA.png │ │ ├── WMV.png │ │ ├── WPS.png │ │ ├── XLS.png │ │ ├── XLSX.png │ │ ├── XML.png │ │ ├── ZIP.png │ │ ├── aif.png │ │ ├── apk.png │ │ ├── exe.png │ │ ├── htm.png │ │ ├── html.png │ │ ├── ipa.png │ │ ├── rar.png │ │ ├── rat.png │ │ └── tipa.png │ ├── iPlay.webp │ ├── iina.webp │ ├── infuse.webp │ ├── mpv.webp │ ├── mxplayer-pro.webp │ ├── mxplayer.webp │ ├── new_bg.png │ ├── new_icon.png │ ├── nplayer.webp │ ├── omniplayer.webp │ ├── permissions-active.png │ ├── permissions-gray.png │ ├── potplayer.webp │ ├── role-active.png │ ├── role-gray.png │ ├── tag-active.png │ ├── tag-gray.png │ └── vlc.webp ├── static │ ├── epub.js │ │ └── viewer.html │ └── manifest.json └── streamer │ ├── mitm.html │ └── sw.js ├── release.sh ├── renovate.json ├── scripts └── i18n.mjs ├── src ├── app │ ├── App.tsx │ ├── MustUser.tsx │ ├── i18n.ts │ ├── index.css │ ├── index.tsx │ └── theme.ts ├── components │ ├── AddLabelDialog.tsx │ ├── Base.tsx │ ├── ChooseTree.tsx │ ├── EditLabelDialog.tsx │ ├── EncodingSelect.tsx │ ├── FolderTree.tsx │ ├── FullLoading.tsx │ ├── Hello.tsx │ ├── ImageWithError.tsx │ ├── LinkWithBase.tsx │ ├── Markdown.tsx │ ├── ModalInput.tsx │ ├── ModalTwoInput.tsx │ ├── MonacoEditor.tsx │ ├── Paginator.tsx │ ├── SelectOptions.tsx │ ├── SwitchColorMode.tsx │ ├── SwitchLanguage.tsx │ ├── Wether.tsx │ ├── artplayer-plugin-ass │ │ ├── fonts │ │ │ ├── SourceHanSansCN-Bold.woff2 │ │ │ └── TimesNewRoman.ttf │ │ ├── index.d.ts │ │ └── index.js │ ├── highlight.js │ ├── icons.tsx │ ├── index.ts │ └── markdown.css ├── hooks │ ├── index.ts │ ├── useDownload.ts │ ├── useFetch.ts │ ├── useLink.ts │ ├── usePath.ts │ ├── useRouter.ts │ ├── useT.ts │ ├── useTitle.ts │ └── useUtil.ts ├── index.d.ts ├── lang │ └── en │ │ ├── br.json │ │ ├── drivers.json │ │ ├── entry.ts │ │ ├── global.json │ │ ├── home.json │ │ ├── index.json │ │ ├── indexes.json │ │ ├── login.json │ │ ├── manage.json │ │ ├── metas.json │ │ ├── permissions.json │ │ ├── session.json │ │ ├── settings.json │ │ ├── settings_other.json │ │ ├── storages.json │ │ ├── tasks.json │ │ └── users.json ├── main.tsx ├── pages │ ├── home │ │ ├── Body.tsx │ │ ├── Container.tsx │ │ ├── Footer.tsx │ │ ├── Layout.tsx │ │ ├── Nav.tsx │ │ ├── Obj.tsx │ │ ├── Password.tsx │ │ ├── Readme.tsx │ │ ├── Sidebar.tsx │ │ ├── file │ │ │ ├── File.tsx │ │ │ └── open-with.tsx │ │ ├── folder │ │ │ ├── Folder.tsx │ │ │ ├── Grid.tsx │ │ │ ├── GridItem.tsx │ │ │ ├── GridSkeleton.tsx │ │ │ ├── ImageItem.tsx │ │ │ ├── Images.tsx │ │ │ ├── List.tsx │ │ │ ├── ListItem.tsx │ │ │ ├── ListSkeleton.tsx │ │ │ ├── Pager.tsx │ │ │ ├── Search.tsx │ │ │ ├── context-menu.tsx │ │ │ └── helper.ts │ │ ├── header │ │ │ ├── Header.tsx │ │ │ └── layout.tsx │ │ ├── previews │ │ │ ├── aliyun_office.tsx │ │ │ ├── aliyun_video.tsx │ │ │ ├── archive.tsx │ │ │ ├── asciinema.tsx │ │ │ ├── audio.css │ │ │ ├── audio.tsx │ │ │ ├── download.tsx │ │ │ ├── html.tsx │ │ │ ├── iframe.tsx │ │ │ ├── image.tsx │ │ │ ├── index.ts │ │ │ ├── info.tsx │ │ │ ├── ipa.tsx │ │ │ ├── markdown.tsx │ │ │ ├── markdown_with_word_wrap.tsx │ │ │ ├── plist.tsx │ │ │ ├── text-editor.tsx │ │ │ ├── url.tsx │ │ │ ├── video.tsx │ │ │ ├── video360.css │ │ │ ├── video360.tsx │ │ │ └── video_box.tsx │ │ ├── toolbar │ │ │ ├── BackTop.tsx │ │ │ ├── BatchRename.tsx │ │ │ ├── Center.tsx │ │ │ ├── CopyLink.tsx │ │ │ ├── CopyMove.tsx │ │ │ ├── Decompress.tsx │ │ │ ├── Delete.tsx │ │ │ ├── Download.tsx │ │ │ ├── Icon.tsx │ │ │ ├── LocalSettings.tsx │ │ │ ├── Mkdir.tsx │ │ │ ├── ModalWrapper.tsx │ │ │ ├── NewFile.tsx │ │ │ ├── OfflineDownload.tsx │ │ │ ├── PackageDownload.tsx │ │ │ ├── RecursiveMove.tsx │ │ │ ├── RemoveEmptyDirectory.tsx │ │ │ ├── Rename.tsx │ │ │ ├── RenameItem.tsx │ │ │ ├── Right.tsx │ │ │ ├── S3TransitionModal.tsx │ │ │ ├── Toolbar.tsx │ │ │ └── operations.ts │ │ └── uploads │ │ │ ├── Upload.tsx │ │ │ ├── form.ts │ │ │ ├── stream.ts │ │ │ ├── types.ts │ │ │ ├── uploads.ts │ │ │ └── util.ts │ ├── login │ │ ├── CornerBottom.tsx │ │ ├── CornerTop.tsx │ │ ├── LoginBg.tsx │ │ ├── SSOLogin.tsx │ │ └── index.tsx │ ├── manage │ │ ├── About.tsx │ │ ├── Dashboard.tsx │ │ ├── Header.tsx │ │ ├── SideMenu.tsx │ │ ├── backup-restore.tsx │ │ ├── common │ │ │ ├── DeletePopover.tsx │ │ │ └── ResponsiveGrid.tsx │ │ ├── index.tsx │ │ ├── indexes │ │ │ ├── icons.tsx │ │ │ └── indexes.tsx │ │ ├── messenger │ │ │ ├── Messenger.tsx │ │ │ └── Show.tsx │ │ ├── metas │ │ │ ├── AddOrEdit.tsx │ │ │ └── Metas.tsx │ │ ├── permissions │ │ │ ├── AddOrEdit.tsx │ │ │ ├── Config.tsx │ │ │ ├── PermissionForm.tsx │ │ │ └── Role.tsx │ │ ├── routes.tsx │ │ ├── session │ │ │ ├── management.tsx │ │ │ └── mySession.tsx │ │ ├── settings │ │ │ ├── Common.tsx │ │ │ ├── Other.tsx │ │ │ ├── S3.tsx │ │ │ ├── S3BucketItem.tsx │ │ │ ├── S3Buckets.tsx │ │ │ ├── SettingItem.tsx │ │ │ └── Tag.tsx │ │ ├── sidemenu_items.tsx │ │ ├── storages │ │ │ ├── AddOrEdit.tsx │ │ │ ├── Item.tsx │ │ │ ├── Storage.tsx │ │ │ └── Storages.tsx │ │ ├── tasks │ │ │ ├── Aria2.tsx │ │ │ ├── Copy.tsx │ │ │ ├── Decompress.tsx │ │ │ ├── Qbit.tsx │ │ │ ├── S3Transition.tsx │ │ │ ├── Task.tsx │ │ │ ├── Tasks.tsx │ │ │ ├── Upload.tsx │ │ │ ├── helper.tsx │ │ │ └── offline_download.tsx │ │ └── users │ │ │ ├── 2fa.tsx │ │ │ ├── AddOrEdit.tsx │ │ │ ├── Profile.tsx │ │ │ ├── PublicKey.tsx │ │ │ ├── PublicKeys.tsx │ │ │ ├── Users.tsx │ │ │ └── Webauthnitems.tsx │ └── test │ │ └── index.tsx ├── store │ ├── archive.ts │ ├── history.ts │ ├── index.ts │ ├── key-event.ts │ ├── label.ts │ ├── local_settings.ts │ ├── obj.ts │ ├── settings.ts │ └── user.ts ├── styles.css ├── types │ ├── driver_item.ts │ ├── index.ts │ ├── item_type.ts │ ├── meta.ts │ ├── obj.ts │ ├── resp.ts │ ├── setting.ts │ ├── sshkey.ts │ ├── storage.ts │ ├── task.ts │ └── user.ts └── utils │ ├── api.ts │ ├── async_pool.ts │ ├── auth.ts │ ├── bus.ts │ ├── client-id.ts │ ├── color.ts │ ├── compatibility.ts │ ├── config.ts │ ├── const.ts │ ├── convert.ts │ ├── custom-icons.ts │ ├── handle_resp.ts │ ├── hash.ts │ ├── i18n.ts │ ├── icon.ts │ ├── index.ts │ ├── log.ts │ ├── mutex.ts │ ├── notify.tsx │ ├── path.ts │ ├── request.ts │ ├── storage-class.ts │ ├── str.ts │ ├── ua-parser.ts │ └── zip-stream.js ├── tsconfig.json └── vite.config.ts /.env.development: -------------------------------------------------------------------------------- 1 | VITE_API_URL = "http://localhost:5244/" -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | VITE_API_URL = "/" -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/do-not-submit-any-issue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/.github/ISSUE_TEMPLATE/do-not-submit-any-issue-here.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/crowdin.yml -------------------------------------------------------------------------------- /images/figplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/figplayer.png -------------------------------------------------------------------------------- /images/fileball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/fileball.png -------------------------------------------------------------------------------- /images/iPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/iPlay.png -------------------------------------------------------------------------------- /images/iina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/iina.png -------------------------------------------------------------------------------- /images/infuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/infuse.png -------------------------------------------------------------------------------- /images/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/mpv.png -------------------------------------------------------------------------------- /images/mxplayer-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/mxplayer-pro.png -------------------------------------------------------------------------------- /images/mxplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/mxplayer.png -------------------------------------------------------------------------------- /images/nplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/nplayer.png -------------------------------------------------------------------------------- /images/omniplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/omniplayer.png -------------------------------------------------------------------------------- /images/potplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/potplayer.png -------------------------------------------------------------------------------- /images/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/images/vlc.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build.environment] 2 | NPM_FLAGS = "--version" -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/images/config-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/config-active.png -------------------------------------------------------------------------------- /public/images/config-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/config-gray.png -------------------------------------------------------------------------------- /public/images/figplayer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/figplayer.webp -------------------------------------------------------------------------------- /public/images/fileball.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/fileball.webp -------------------------------------------------------------------------------- /public/images/filetypes/3GP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/3GP.png -------------------------------------------------------------------------------- /public/images/filetypes/7z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/7z.png -------------------------------------------------------------------------------- /public/images/filetypes/AAC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/AAC.png -------------------------------------------------------------------------------- /public/images/filetypes/AI-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/AI-1.png -------------------------------------------------------------------------------- /public/images/filetypes/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/AI.png -------------------------------------------------------------------------------- /public/images/filetypes/AMR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/AMR.png -------------------------------------------------------------------------------- /public/images/filetypes/ASE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/ASE.png -------------------------------------------------------------------------------- /public/images/filetypes/ASP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/ASP.png -------------------------------------------------------------------------------- /public/images/filetypes/ASPX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/ASPX.png -------------------------------------------------------------------------------- /public/images/filetypes/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/AU.png -------------------------------------------------------------------------------- /public/images/filetypes/AVI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/AVI.png -------------------------------------------------------------------------------- /public/images/filetypes/BMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/BMP.png -------------------------------------------------------------------------------- /public/images/filetypes/C++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/C++.png -------------------------------------------------------------------------------- /public/images/filetypes/CAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/CAD.png -------------------------------------------------------------------------------- /public/images/filetypes/CFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/CFM.png -------------------------------------------------------------------------------- /public/images/filetypes/CGI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/CGI.png -------------------------------------------------------------------------------- /public/images/filetypes/COM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/COM.png -------------------------------------------------------------------------------- /public/images/filetypes/CPP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/CPP.png -------------------------------------------------------------------------------- /public/images/filetypes/CSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/CSS.png -------------------------------------------------------------------------------- /public/images/filetypes/CSV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/CSV.png -------------------------------------------------------------------------------- /public/images/filetypes/DMG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/DMG.png -------------------------------------------------------------------------------- /public/images/filetypes/DOC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/DOC.png -------------------------------------------------------------------------------- /public/images/filetypes/DOCX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/DOCX.png -------------------------------------------------------------------------------- /public/images/filetypes/FLAC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/FLAC.png -------------------------------------------------------------------------------- /public/images/filetypes/GIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/GIF.png -------------------------------------------------------------------------------- /public/images/filetypes/GZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/GZ.png -------------------------------------------------------------------------------- /public/images/filetypes/ICO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/ICO.png -------------------------------------------------------------------------------- /public/images/filetypes/ISO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/ISO.png -------------------------------------------------------------------------------- /public/images/filetypes/JAVA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/JAVA.png -------------------------------------------------------------------------------- /public/images/filetypes/JPEG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/JPEG.png -------------------------------------------------------------------------------- /public/images/filetypes/JPG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/JPG.png -------------------------------------------------------------------------------- /public/images/filetypes/JSON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/JSON.png -------------------------------------------------------------------------------- /public/images/filetypes/MDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/MDF.png -------------------------------------------------------------------------------- /public/images/filetypes/MMF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/MMF.png -------------------------------------------------------------------------------- /public/images/filetypes/MOV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/MOV.png -------------------------------------------------------------------------------- /public/images/filetypes/MP3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/MP3.png -------------------------------------------------------------------------------- /public/images/filetypes/MP4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/MP4.png -------------------------------------------------------------------------------- /public/images/filetypes/MPG-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/MPG-1.png -------------------------------------------------------------------------------- /public/images/filetypes/MPG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/MPG.png -------------------------------------------------------------------------------- /public/images/filetypes/MSI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/MSI.png -------------------------------------------------------------------------------- /public/images/filetypes/OBJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/OBJ.png -------------------------------------------------------------------------------- /public/images/filetypes/OTF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/OTF.png -------------------------------------------------------------------------------- /public/images/filetypes/PDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PDF.png -------------------------------------------------------------------------------- /public/images/filetypes/PHP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PHP.png -------------------------------------------------------------------------------- /public/images/filetypes/PKG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PKG.png -------------------------------------------------------------------------------- /public/images/filetypes/PNG-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PNG-1.png -------------------------------------------------------------------------------- /public/images/filetypes/PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PNG.png -------------------------------------------------------------------------------- /public/images/filetypes/PPT-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PPT-1.png -------------------------------------------------------------------------------- /public/images/filetypes/PPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PPT.png -------------------------------------------------------------------------------- /public/images/filetypes/PPTX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PPTX.png -------------------------------------------------------------------------------- /public/images/filetypes/PSD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PSD.png -------------------------------------------------------------------------------- /public/images/filetypes/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/PY.png -------------------------------------------------------------------------------- /public/images/filetypes/RM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/RM.png -------------------------------------------------------------------------------- /public/images/filetypes/RMVB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/RMVB.png -------------------------------------------------------------------------------- /public/images/filetypes/SQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/SQL.png -------------------------------------------------------------------------------- /public/images/filetypes/SRT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/SRT.png -------------------------------------------------------------------------------- /public/images/filetypes/SVG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/SVG.png -------------------------------------------------------------------------------- /public/images/filetypes/TAR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/TAR.png -------------------------------------------------------------------------------- /public/images/filetypes/TIF-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/TIF-1.png -------------------------------------------------------------------------------- /public/images/filetypes/TIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/TIF.png -------------------------------------------------------------------------------- /public/images/filetypes/TIFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/TIFF.png -------------------------------------------------------------------------------- /public/images/filetypes/TXT-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/TXT-1.png -------------------------------------------------------------------------------- /public/images/filetypes/TXT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/TXT.png -------------------------------------------------------------------------------- /public/images/filetypes/WAV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/WAV.png -------------------------------------------------------------------------------- /public/images/filetypes/WMA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/WMA.png -------------------------------------------------------------------------------- /public/images/filetypes/WMV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/WMV.png -------------------------------------------------------------------------------- /public/images/filetypes/WPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/WPS.png -------------------------------------------------------------------------------- /public/images/filetypes/XLS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/XLS.png -------------------------------------------------------------------------------- /public/images/filetypes/XLSX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/XLSX.png -------------------------------------------------------------------------------- /public/images/filetypes/XML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/XML.png -------------------------------------------------------------------------------- /public/images/filetypes/ZIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/ZIP.png -------------------------------------------------------------------------------- /public/images/filetypes/aif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/aif.png -------------------------------------------------------------------------------- /public/images/filetypes/apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/apk.png -------------------------------------------------------------------------------- /public/images/filetypes/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/exe.png -------------------------------------------------------------------------------- /public/images/filetypes/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/htm.png -------------------------------------------------------------------------------- /public/images/filetypes/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/html.png -------------------------------------------------------------------------------- /public/images/filetypes/ipa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/ipa.png -------------------------------------------------------------------------------- /public/images/filetypes/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/rar.png -------------------------------------------------------------------------------- /public/images/filetypes/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/rat.png -------------------------------------------------------------------------------- /public/images/filetypes/tipa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/filetypes/tipa.png -------------------------------------------------------------------------------- /public/images/iPlay.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/iPlay.webp -------------------------------------------------------------------------------- /public/images/iina.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/iina.webp -------------------------------------------------------------------------------- /public/images/infuse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/infuse.webp -------------------------------------------------------------------------------- /public/images/mpv.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/mpv.webp -------------------------------------------------------------------------------- /public/images/mxplayer-pro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/mxplayer-pro.webp -------------------------------------------------------------------------------- /public/images/mxplayer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/mxplayer.webp -------------------------------------------------------------------------------- /public/images/new_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/new_bg.png -------------------------------------------------------------------------------- /public/images/new_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/new_icon.png -------------------------------------------------------------------------------- /public/images/nplayer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/nplayer.webp -------------------------------------------------------------------------------- /public/images/omniplayer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/omniplayer.webp -------------------------------------------------------------------------------- /public/images/permissions-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/permissions-active.png -------------------------------------------------------------------------------- /public/images/permissions-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/permissions-gray.png -------------------------------------------------------------------------------- /public/images/potplayer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/potplayer.webp -------------------------------------------------------------------------------- /public/images/role-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/role-active.png -------------------------------------------------------------------------------- /public/images/role-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/role-gray.png -------------------------------------------------------------------------------- /public/images/tag-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/tag-active.png -------------------------------------------------------------------------------- /public/images/tag-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/tag-gray.png -------------------------------------------------------------------------------- /public/images/vlc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/images/vlc.webp -------------------------------------------------------------------------------- /public/static/epub.js/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/static/epub.js/viewer.html -------------------------------------------------------------------------------- /public/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/static/manifest.json -------------------------------------------------------------------------------- /public/streamer/mitm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/streamer/mitm.html -------------------------------------------------------------------------------- /public/streamer/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/public/streamer/sw.js -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/release.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/i18n.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/scripts/i18n.mjs -------------------------------------------------------------------------------- /src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/app/App.tsx -------------------------------------------------------------------------------- /src/app/MustUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/app/MustUser.tsx -------------------------------------------------------------------------------- /src/app/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/app/i18n.ts -------------------------------------------------------------------------------- /src/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/app/index.css -------------------------------------------------------------------------------- /src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/app/index.tsx -------------------------------------------------------------------------------- /src/app/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/app/theme.ts -------------------------------------------------------------------------------- /src/components/AddLabelDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/AddLabelDialog.tsx -------------------------------------------------------------------------------- /src/components/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/Base.tsx -------------------------------------------------------------------------------- /src/components/ChooseTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/ChooseTree.tsx -------------------------------------------------------------------------------- /src/components/EditLabelDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/EditLabelDialog.tsx -------------------------------------------------------------------------------- /src/components/EncodingSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/EncodingSelect.tsx -------------------------------------------------------------------------------- /src/components/FolderTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/FolderTree.tsx -------------------------------------------------------------------------------- /src/components/FullLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/FullLoading.tsx -------------------------------------------------------------------------------- /src/components/Hello.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/Hello.tsx -------------------------------------------------------------------------------- /src/components/ImageWithError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/ImageWithError.tsx -------------------------------------------------------------------------------- /src/components/LinkWithBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/LinkWithBase.tsx -------------------------------------------------------------------------------- /src/components/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/Markdown.tsx -------------------------------------------------------------------------------- /src/components/ModalInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/ModalInput.tsx -------------------------------------------------------------------------------- /src/components/ModalTwoInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/ModalTwoInput.tsx -------------------------------------------------------------------------------- /src/components/MonacoEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/MonacoEditor.tsx -------------------------------------------------------------------------------- /src/components/Paginator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/Paginator.tsx -------------------------------------------------------------------------------- /src/components/SelectOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/SelectOptions.tsx -------------------------------------------------------------------------------- /src/components/SwitchColorMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/SwitchColorMode.tsx -------------------------------------------------------------------------------- /src/components/SwitchLanguage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/SwitchLanguage.tsx -------------------------------------------------------------------------------- /src/components/Wether.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/Wether.tsx -------------------------------------------------------------------------------- /src/components/artplayer-plugin-ass/fonts/SourceHanSansCN-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/artplayer-plugin-ass/fonts/SourceHanSansCN-Bold.woff2 -------------------------------------------------------------------------------- /src/components/artplayer-plugin-ass/fonts/TimesNewRoman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/artplayer-plugin-ass/fonts/TimesNewRoman.ttf -------------------------------------------------------------------------------- /src/components/artplayer-plugin-ass/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/artplayer-plugin-ass/index.d.ts -------------------------------------------------------------------------------- /src/components/artplayer-plugin-ass/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/artplayer-plugin-ass/index.js -------------------------------------------------------------------------------- /src/components/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/highlight.js -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/components/markdown.css -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/useDownload.ts -------------------------------------------------------------------------------- /src/hooks/useFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/useFetch.ts -------------------------------------------------------------------------------- /src/hooks/useLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/useLink.ts -------------------------------------------------------------------------------- /src/hooks/usePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/usePath.ts -------------------------------------------------------------------------------- /src/hooks/useRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/useRouter.ts -------------------------------------------------------------------------------- /src/hooks/useT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/useT.ts -------------------------------------------------------------------------------- /src/hooks/useTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/useTitle.ts -------------------------------------------------------------------------------- /src/hooks/useUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/hooks/useUtil.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/lang/en/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/br.json -------------------------------------------------------------------------------- /src/lang/en/drivers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/drivers.json -------------------------------------------------------------------------------- /src/lang/en/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/entry.ts -------------------------------------------------------------------------------- /src/lang/en/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/global.json -------------------------------------------------------------------------------- /src/lang/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/home.json -------------------------------------------------------------------------------- /src/lang/en/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "lang": "English" 3 | } 4 | -------------------------------------------------------------------------------- /src/lang/en/indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/indexes.json -------------------------------------------------------------------------------- /src/lang/en/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/login.json -------------------------------------------------------------------------------- /src/lang/en/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/manage.json -------------------------------------------------------------------------------- /src/lang/en/metas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/metas.json -------------------------------------------------------------------------------- /src/lang/en/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/permissions.json -------------------------------------------------------------------------------- /src/lang/en/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/session.json -------------------------------------------------------------------------------- /src/lang/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/settings.json -------------------------------------------------------------------------------- /src/lang/en/settings_other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/settings_other.json -------------------------------------------------------------------------------- /src/lang/en/storages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/storages.json -------------------------------------------------------------------------------- /src/lang/en/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/tasks.json -------------------------------------------------------------------------------- /src/lang/en/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/lang/en/users.json -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/home/Body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Body.tsx -------------------------------------------------------------------------------- /src/pages/home/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Container.tsx -------------------------------------------------------------------------------- /src/pages/home/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Footer.tsx -------------------------------------------------------------------------------- /src/pages/home/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Layout.tsx -------------------------------------------------------------------------------- /src/pages/home/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Nav.tsx -------------------------------------------------------------------------------- /src/pages/home/Obj.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Obj.tsx -------------------------------------------------------------------------------- /src/pages/home/Password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Password.tsx -------------------------------------------------------------------------------- /src/pages/home/Readme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Readme.tsx -------------------------------------------------------------------------------- /src/pages/home/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/Sidebar.tsx -------------------------------------------------------------------------------- /src/pages/home/file/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/file/File.tsx -------------------------------------------------------------------------------- /src/pages/home/file/open-with.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/file/open-with.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/Folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/Folder.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/Grid.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/GridItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/GridItem.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/GridSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/GridSkeleton.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/ImageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/ImageItem.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/Images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/Images.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/List.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/ListItem.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/ListSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/ListSkeleton.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/Pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/Pager.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/Search.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/context-menu.tsx -------------------------------------------------------------------------------- /src/pages/home/folder/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/folder/helper.ts -------------------------------------------------------------------------------- /src/pages/home/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/header/Header.tsx -------------------------------------------------------------------------------- /src/pages/home/header/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/header/layout.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/aliyun_office.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/aliyun_office.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/aliyun_video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/aliyun_video.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/archive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/archive.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/asciinema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/asciinema.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/audio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/audio.css -------------------------------------------------------------------------------- /src/pages/home/previews/audio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/audio.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/download.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/html.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/iframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/iframe.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/image.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/index.ts -------------------------------------------------------------------------------- /src/pages/home/previews/info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/info.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/ipa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/ipa.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/markdown.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/markdown_with_word_wrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/markdown_with_word_wrap.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/plist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/plist.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/text-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/text-editor.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/url.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/url.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/video.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/video360.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/video360.css -------------------------------------------------------------------------------- /src/pages/home/previews/video360.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/video360.tsx -------------------------------------------------------------------------------- /src/pages/home/previews/video_box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/previews/video_box.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/BackTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/BackTop.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/BatchRename.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/BatchRename.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Center.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/CopyLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/CopyLink.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/CopyMove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/CopyMove.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Decompress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Decompress.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Delete.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Download.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Icon.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/LocalSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/LocalSettings.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Mkdir.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Mkdir.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/ModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/ModalWrapper.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/NewFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/NewFile.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/OfflineDownload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/OfflineDownload.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/PackageDownload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/PackageDownload.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/RecursiveMove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/RecursiveMove.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/RemoveEmptyDirectory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/RemoveEmptyDirectory.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Rename.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Rename.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/RenameItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/RenameItem.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Right.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Right.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/S3TransitionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/S3TransitionModal.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/Toolbar.tsx -------------------------------------------------------------------------------- /src/pages/home/toolbar/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/toolbar/operations.ts -------------------------------------------------------------------------------- /src/pages/home/uploads/Upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/uploads/Upload.tsx -------------------------------------------------------------------------------- /src/pages/home/uploads/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/uploads/form.ts -------------------------------------------------------------------------------- /src/pages/home/uploads/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/uploads/stream.ts -------------------------------------------------------------------------------- /src/pages/home/uploads/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/uploads/types.ts -------------------------------------------------------------------------------- /src/pages/home/uploads/uploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/uploads/uploads.ts -------------------------------------------------------------------------------- /src/pages/home/uploads/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/home/uploads/util.ts -------------------------------------------------------------------------------- /src/pages/login/CornerBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/login/CornerBottom.tsx -------------------------------------------------------------------------------- /src/pages/login/CornerTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/login/CornerTop.tsx -------------------------------------------------------------------------------- /src/pages/login/LoginBg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/login/LoginBg.tsx -------------------------------------------------------------------------------- /src/pages/login/SSOLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/login/SSOLogin.tsx -------------------------------------------------------------------------------- /src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/login/index.tsx -------------------------------------------------------------------------------- /src/pages/manage/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/About.tsx -------------------------------------------------------------------------------- /src/pages/manage/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/Dashboard.tsx -------------------------------------------------------------------------------- /src/pages/manage/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/Header.tsx -------------------------------------------------------------------------------- /src/pages/manage/SideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/SideMenu.tsx -------------------------------------------------------------------------------- /src/pages/manage/backup-restore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/backup-restore.tsx -------------------------------------------------------------------------------- /src/pages/manage/common/DeletePopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/common/DeletePopover.tsx -------------------------------------------------------------------------------- /src/pages/manage/common/ResponsiveGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/common/ResponsiveGrid.tsx -------------------------------------------------------------------------------- /src/pages/manage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/index.tsx -------------------------------------------------------------------------------- /src/pages/manage/indexes/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/indexes/icons.tsx -------------------------------------------------------------------------------- /src/pages/manage/indexes/indexes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/indexes/indexes.tsx -------------------------------------------------------------------------------- /src/pages/manage/messenger/Messenger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/messenger/Messenger.tsx -------------------------------------------------------------------------------- /src/pages/manage/messenger/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/messenger/Show.tsx -------------------------------------------------------------------------------- /src/pages/manage/metas/AddOrEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/metas/AddOrEdit.tsx -------------------------------------------------------------------------------- /src/pages/manage/metas/Metas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/metas/Metas.tsx -------------------------------------------------------------------------------- /src/pages/manage/permissions/AddOrEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/permissions/AddOrEdit.tsx -------------------------------------------------------------------------------- /src/pages/manage/permissions/Config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/permissions/Config.tsx -------------------------------------------------------------------------------- /src/pages/manage/permissions/PermissionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/permissions/PermissionForm.tsx -------------------------------------------------------------------------------- /src/pages/manage/permissions/Role.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/permissions/Role.tsx -------------------------------------------------------------------------------- /src/pages/manage/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/routes.tsx -------------------------------------------------------------------------------- /src/pages/manage/session/management.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/session/management.tsx -------------------------------------------------------------------------------- /src/pages/manage/session/mySession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/session/mySession.tsx -------------------------------------------------------------------------------- /src/pages/manage/settings/Common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/settings/Common.tsx -------------------------------------------------------------------------------- /src/pages/manage/settings/Other.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/settings/Other.tsx -------------------------------------------------------------------------------- /src/pages/manage/settings/S3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/settings/S3.tsx -------------------------------------------------------------------------------- /src/pages/manage/settings/S3BucketItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/settings/S3BucketItem.tsx -------------------------------------------------------------------------------- /src/pages/manage/settings/S3Buckets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/settings/S3Buckets.tsx -------------------------------------------------------------------------------- /src/pages/manage/settings/SettingItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/settings/SettingItem.tsx -------------------------------------------------------------------------------- /src/pages/manage/settings/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/settings/Tag.tsx -------------------------------------------------------------------------------- /src/pages/manage/sidemenu_items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/sidemenu_items.tsx -------------------------------------------------------------------------------- /src/pages/manage/storages/AddOrEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/storages/AddOrEdit.tsx -------------------------------------------------------------------------------- /src/pages/manage/storages/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/storages/Item.tsx -------------------------------------------------------------------------------- /src/pages/manage/storages/Storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/storages/Storage.tsx -------------------------------------------------------------------------------- /src/pages/manage/storages/Storages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/storages/Storages.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/Aria2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/Aria2.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/Copy.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/Decompress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/Decompress.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/Qbit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/Qbit.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/S3Transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/S3Transition.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/Task.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/Task.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/Tasks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/Tasks.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/Upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/Upload.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/helper.tsx -------------------------------------------------------------------------------- /src/pages/manage/tasks/offline_download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/tasks/offline_download.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/2fa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/users/2fa.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/AddOrEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/users/AddOrEdit.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/users/Profile.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/PublicKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/users/PublicKey.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/PublicKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/users/PublicKeys.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/users/Users.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/Webauthnitems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/manage/users/Webauthnitems.tsx -------------------------------------------------------------------------------- /src/pages/test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/pages/test/index.tsx -------------------------------------------------------------------------------- /src/store/archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/archive.ts -------------------------------------------------------------------------------- /src/store/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/history.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/key-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/key-event.ts -------------------------------------------------------------------------------- /src/store/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/label.ts -------------------------------------------------------------------------------- /src/store/local_settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/local_settings.ts -------------------------------------------------------------------------------- /src/store/obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/obj.ts -------------------------------------------------------------------------------- /src/store/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/settings.ts -------------------------------------------------------------------------------- /src/store/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/store/user.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/types/driver_item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/driver_item.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/item_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/item_type.ts -------------------------------------------------------------------------------- /src/types/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/meta.ts -------------------------------------------------------------------------------- /src/types/obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/obj.ts -------------------------------------------------------------------------------- /src/types/resp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/resp.ts -------------------------------------------------------------------------------- /src/types/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/setting.ts -------------------------------------------------------------------------------- /src/types/sshkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/sshkey.ts -------------------------------------------------------------------------------- /src/types/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/storage.ts -------------------------------------------------------------------------------- /src/types/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/task.ts -------------------------------------------------------------------------------- /src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/types/user.ts -------------------------------------------------------------------------------- /src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/api.ts -------------------------------------------------------------------------------- /src/utils/async_pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/async_pool.ts -------------------------------------------------------------------------------- /src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/auth.ts -------------------------------------------------------------------------------- /src/utils/bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/bus.ts -------------------------------------------------------------------------------- /src/utils/client-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/client-id.ts -------------------------------------------------------------------------------- /src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/color.ts -------------------------------------------------------------------------------- /src/utils/compatibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/compatibility.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/const.ts -------------------------------------------------------------------------------- /src/utils/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/convert.ts -------------------------------------------------------------------------------- /src/utils/custom-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/custom-icons.ts -------------------------------------------------------------------------------- /src/utils/handle_resp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/handle_resp.ts -------------------------------------------------------------------------------- /src/utils/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/hash.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/utils/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/icon.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/log.ts -------------------------------------------------------------------------------- /src/utils/mutex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/mutex.ts -------------------------------------------------------------------------------- /src/utils/notify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/notify.tsx -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/storage-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/storage-class.ts -------------------------------------------------------------------------------- /src/utils/str.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/str.ts -------------------------------------------------------------------------------- /src/utils/ua-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/ua-parser.ts -------------------------------------------------------------------------------- /src/utils/zip-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/src/utils/zip-stream.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlistGo/alist-web/HEAD/vite.config.ts --------------------------------------------------------------------------------