├── .github ├── changelog-configuration.json ├── release.yml └── workflows │ ├── nightly.yml │ └── publish.yml ├── .gitignore ├── .imgbotconfig ├── .scripts ├── before-build.js └── mirror-latest-json.js ├── CHANGELOG.md ├── LICENCE ├── README.en-US.md ├── README.md ├── biome.json ├── bunfig.toml ├── docs ├── CONTRIBUTION.md └── images │ ├── dark │ ├── 1-home.avif │ ├── 10-mobile-download-list.avif │ ├── 2-receive-qrcode.avif │ ├── 3-mobile-send-index.avif │ ├── 4-pc-receive-empty.avif │ ├── 5-mobile-uploading.avif │ ├── 6-pc-receiving.avif │ ├── 7-wait-selecting.avif │ ├── 8-selected.avif │ └── 9-send-qrcode.avif │ └── light │ ├── 1-home.avif │ ├── 2-receive-qrcode.avif │ ├── 4-pc-receive-empty.avif │ ├── 5-mobile-uploading.avif │ ├── 6-pc-receiving.avif │ ├── 7-wait-selecting.avif │ ├── 8-selected.avif │ ├── 9-send-qrcode.avif │ ├── mobile-download-list.avif │ └── mobile-send-index.avif ├── index.html ├── package.json ├── public ├── icon.png └── logo.png ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── linux │ └── alley.desktop ├── src │ ├── error.rs │ ├── i18n │ │ ├── en_us.rs │ │ ├── mod.rs │ │ └── zh_cn.rs │ ├── lazy.rs │ ├── linux.rs │ ├── main.rs │ ├── menu.rs │ ├── server │ │ ├── error.rs │ │ ├── logger.rs │ │ └── mod.rs │ └── stream.rs └── tauri.conf.json ├── src ├── App.scss ├── App.tsx ├── about.scss ├── about.tsx ├── advance │ └── index.tsx ├── api.ts ├── assets │ └── react.svg ├── components │ ├── aboutButton │ │ └── index.tsx │ ├── file-type-icon │ │ └── index.tsx │ └── qrcode │ │ ├── index.scss │ │ └── index.tsx ├── context.ts ├── index.scss ├── index.tsx ├── lazy.ts ├── pages │ ├── receive │ │ ├── fileListItem.tsx │ │ ├── fileType.ts │ │ ├── header.tsx │ │ ├── index.scss │ │ └── index.tsx │ └── send │ │ ├── index.scss │ │ ├── index.tsx │ │ └── utils.ts └── vite-env.d.ts ├── static ├── .gitignore ├── README.md ├── bunfig.toml ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public │ └── logo.png ├── src │ ├── App.scss │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── button │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── card │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── divider │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── error-block │ │ │ ├── icons │ │ │ │ └── empty.tsx │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── grid │ │ │ ├── index.scss │ │ │ ├── index.tsx │ │ │ └── item.tsx │ │ ├── link │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── list │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── loading │ │ │ ├── dot │ │ │ │ ├── icon.tsx │ │ │ │ ├── index.scss │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── spin │ │ │ │ ├── index.scss │ │ │ │ └── index.tsx │ │ ├── progress │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── result │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── space │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── switch │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── toast │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── upload │ │ │ ├── asyncPool.ts │ │ │ ├── fileItem.tsx │ │ │ ├── fileSize.ts │ │ │ ├── index.scss │ │ │ ├── index.tsx │ │ │ ├── request.ts │ │ │ └── util.ts │ │ └── utils │ │ │ └── index.ts │ ├── context.ts │ ├── i18n │ │ ├── en_us.ts │ │ ├── index.ts │ │ └── zh_cn.ts │ ├── index.scss │ ├── index.tsx │ ├── lazy.ts │ ├── pages │ │ ├── receive │ │ │ ├── fileType.ts │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ └── send │ │ │ ├── index.scss │ │ │ └── index.tsx │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── types │ ├── index.d.ts │ ├── jsx.d.ts │ └── upload.d.ts └── vite.config.ts ├── tsconfig.json ├── tsconfig.node.json ├── types ├── context.d.ts └── index.d.ts └── vite.config.ts /.github/changelog-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/.github/changelog-configuration.json -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.imgbotconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/.imgbotconfig -------------------------------------------------------------------------------- /.scripts/before-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/.scripts/before-build.js -------------------------------------------------------------------------------- /.scripts/mirror-latest-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/.scripts/mirror-latest-json.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/LICENCE -------------------------------------------------------------------------------- /README.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/README.en-US.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/biome.json -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/bunfig.toml -------------------------------------------------------------------------------- /docs/CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/CONTRIBUTION.md -------------------------------------------------------------------------------- /docs/images/dark/1-home.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/1-home.avif -------------------------------------------------------------------------------- /docs/images/dark/10-mobile-download-list.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/10-mobile-download-list.avif -------------------------------------------------------------------------------- /docs/images/dark/2-receive-qrcode.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/2-receive-qrcode.avif -------------------------------------------------------------------------------- /docs/images/dark/3-mobile-send-index.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/3-mobile-send-index.avif -------------------------------------------------------------------------------- /docs/images/dark/4-pc-receive-empty.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/4-pc-receive-empty.avif -------------------------------------------------------------------------------- /docs/images/dark/5-mobile-uploading.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/5-mobile-uploading.avif -------------------------------------------------------------------------------- /docs/images/dark/6-pc-receiving.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/6-pc-receiving.avif -------------------------------------------------------------------------------- /docs/images/dark/7-wait-selecting.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/7-wait-selecting.avif -------------------------------------------------------------------------------- /docs/images/dark/8-selected.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/8-selected.avif -------------------------------------------------------------------------------- /docs/images/dark/9-send-qrcode.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/dark/9-send-qrcode.avif -------------------------------------------------------------------------------- /docs/images/light/1-home.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/1-home.avif -------------------------------------------------------------------------------- /docs/images/light/2-receive-qrcode.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/2-receive-qrcode.avif -------------------------------------------------------------------------------- /docs/images/light/4-pc-receive-empty.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/4-pc-receive-empty.avif -------------------------------------------------------------------------------- /docs/images/light/5-mobile-uploading.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/5-mobile-uploading.avif -------------------------------------------------------------------------------- /docs/images/light/6-pc-receiving.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/6-pc-receiving.avif -------------------------------------------------------------------------------- /docs/images/light/7-wait-selecting.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/7-wait-selecting.avif -------------------------------------------------------------------------------- /docs/images/light/8-selected.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/8-selected.avif -------------------------------------------------------------------------------- /docs/images/light/9-send-qrcode.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/9-send-qrcode.avif -------------------------------------------------------------------------------- /docs/images/light/mobile-download-list.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/mobile-download-list.avif -------------------------------------------------------------------------------- /docs/images/light/mobile-send-index.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/docs/images/light/mobile-send-index.avif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/package.json -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/public/logo.png -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/linux/alley.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/linux/alley.desktop -------------------------------------------------------------------------------- /src-tauri/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/error.rs -------------------------------------------------------------------------------- /src-tauri/src/i18n/en_us.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/i18n/en_us.rs -------------------------------------------------------------------------------- /src-tauri/src/i18n/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/i18n/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/i18n/zh_cn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/i18n/zh_cn.rs -------------------------------------------------------------------------------- /src-tauri/src/lazy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/lazy.rs -------------------------------------------------------------------------------- /src-tauri/src/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/linux.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/menu.rs -------------------------------------------------------------------------------- /src-tauri/src/server/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/server/error.rs -------------------------------------------------------------------------------- /src-tauri/src/server/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/server/logger.rs -------------------------------------------------------------------------------- /src-tauri/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/server/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/src/stream.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/about.scss -------------------------------------------------------------------------------- /src/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/about.tsx -------------------------------------------------------------------------------- /src/advance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/advance/index.tsx -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/aboutButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/components/aboutButton/index.tsx -------------------------------------------------------------------------------- /src/components/file-type-icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/components/file-type-icon/index.tsx -------------------------------------------------------------------------------- /src/components/qrcode/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/components/qrcode/index.scss -------------------------------------------------------------------------------- /src/components/qrcode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/components/qrcode/index.tsx -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/lazy.ts -------------------------------------------------------------------------------- /src/pages/receive/fileListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/pages/receive/fileListItem.tsx -------------------------------------------------------------------------------- /src/pages/receive/fileType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/pages/receive/fileType.ts -------------------------------------------------------------------------------- /src/pages/receive/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/pages/receive/header.tsx -------------------------------------------------------------------------------- /src/pages/receive/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/pages/receive/index.scss -------------------------------------------------------------------------------- /src/pages/receive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/pages/receive/index.tsx -------------------------------------------------------------------------------- /src/pages/send/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/pages/send/index.scss -------------------------------------------------------------------------------- /src/pages/send/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/pages/send/index.tsx -------------------------------------------------------------------------------- /src/pages/send/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/src/pages/send/utils.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/.gitignore -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/README.md -------------------------------------------------------------------------------- /static/bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/bunfig.toml -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/index.html -------------------------------------------------------------------------------- /static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/package.json -------------------------------------------------------------------------------- /static/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/pnpm-lock.yaml -------------------------------------------------------------------------------- /static/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/public/logo.png -------------------------------------------------------------------------------- /static/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/App.scss -------------------------------------------------------------------------------- /static/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/App.tsx -------------------------------------------------------------------------------- /static/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/assets/react.svg -------------------------------------------------------------------------------- /static/src/components/button/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/button/index.scss -------------------------------------------------------------------------------- /static/src/components/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/button/index.tsx -------------------------------------------------------------------------------- /static/src/components/card/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/src/components/card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/card/index.tsx -------------------------------------------------------------------------------- /static/src/components/divider/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/divider/index.scss -------------------------------------------------------------------------------- /static/src/components/divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/divider/index.tsx -------------------------------------------------------------------------------- /static/src/components/error-block/icons/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/error-block/icons/empty.tsx -------------------------------------------------------------------------------- /static/src/components/error-block/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/error-block/index.scss -------------------------------------------------------------------------------- /static/src/components/error-block/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/error-block/index.tsx -------------------------------------------------------------------------------- /static/src/components/grid/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/grid/index.scss -------------------------------------------------------------------------------- /static/src/components/grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/grid/index.tsx -------------------------------------------------------------------------------- /static/src/components/grid/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/grid/item.tsx -------------------------------------------------------------------------------- /static/src/components/link/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/link/index.scss -------------------------------------------------------------------------------- /static/src/components/link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/link/index.tsx -------------------------------------------------------------------------------- /static/src/components/list/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/list/index.scss -------------------------------------------------------------------------------- /static/src/components/list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/list/index.tsx -------------------------------------------------------------------------------- /static/src/components/loading/dot/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/loading/dot/icon.tsx -------------------------------------------------------------------------------- /static/src/components/loading/dot/index.scss: -------------------------------------------------------------------------------- 1 | .dot-loading { 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /static/src/components/loading/dot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/loading/dot/index.tsx -------------------------------------------------------------------------------- /static/src/components/loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/loading/index.tsx -------------------------------------------------------------------------------- /static/src/components/loading/spin/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/loading/spin/index.scss -------------------------------------------------------------------------------- /static/src/components/loading/spin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/loading/spin/index.tsx -------------------------------------------------------------------------------- /static/src/components/progress/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/progress/index.scss -------------------------------------------------------------------------------- /static/src/components/progress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/progress/index.tsx -------------------------------------------------------------------------------- /static/src/components/result/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/result/index.scss -------------------------------------------------------------------------------- /static/src/components/result/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/result/index.tsx -------------------------------------------------------------------------------- /static/src/components/space/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/space/index.scss -------------------------------------------------------------------------------- /static/src/components/space/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/space/index.tsx -------------------------------------------------------------------------------- /static/src/components/switch/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/switch/index.scss -------------------------------------------------------------------------------- /static/src/components/switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/switch/index.tsx -------------------------------------------------------------------------------- /static/src/components/toast/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/toast/index.scss -------------------------------------------------------------------------------- /static/src/components/toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/toast/index.tsx -------------------------------------------------------------------------------- /static/src/components/upload/asyncPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/upload/asyncPool.ts -------------------------------------------------------------------------------- /static/src/components/upload/fileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/upload/fileItem.tsx -------------------------------------------------------------------------------- /static/src/components/upload/fileSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/upload/fileSize.ts -------------------------------------------------------------------------------- /static/src/components/upload/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/upload/index.scss -------------------------------------------------------------------------------- /static/src/components/upload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/upload/index.tsx -------------------------------------------------------------------------------- /static/src/components/upload/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/upload/request.ts -------------------------------------------------------------------------------- /static/src/components/upload/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/upload/util.ts -------------------------------------------------------------------------------- /static/src/components/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/components/utils/index.ts -------------------------------------------------------------------------------- /static/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/context.ts -------------------------------------------------------------------------------- /static/src/i18n/en_us.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/i18n/en_us.ts -------------------------------------------------------------------------------- /static/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/i18n/index.ts -------------------------------------------------------------------------------- /static/src/i18n/zh_cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/i18n/zh_cn.ts -------------------------------------------------------------------------------- /static/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/index.scss -------------------------------------------------------------------------------- /static/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/index.tsx -------------------------------------------------------------------------------- /static/src/lazy.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/src/pages/receive/fileType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/pages/receive/fileType.ts -------------------------------------------------------------------------------- /static/src/pages/receive/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/pages/receive/index.scss -------------------------------------------------------------------------------- /static/src/pages/receive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/pages/receive/index.tsx -------------------------------------------------------------------------------- /static/src/pages/send/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/src/pages/send/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/src/pages/send/index.tsx -------------------------------------------------------------------------------- /static/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /static/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/tsconfig.json -------------------------------------------------------------------------------- /static/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/tsconfig.node.json -------------------------------------------------------------------------------- /static/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/types/index.d.ts -------------------------------------------------------------------------------- /static/types/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/types/jsx.d.ts -------------------------------------------------------------------------------- /static/types/upload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/types/upload.d.ts -------------------------------------------------------------------------------- /static/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/static/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /types/context.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/types/context.d.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alley-rs/fluxy/HEAD/vite.config.ts --------------------------------------------------------------------------------