├── .eslintignore ├── .eslintrc ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── images ├── dark.png └── light.png ├── index.html ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── src ├── App.vue ├── auto-imports.d.ts ├── components │ ├── UnoUI │ │ ├── UBasePage │ │ │ └── UBasePage.vue │ │ ├── UButton │ │ │ └── UButton.vue │ │ ├── UNotify │ │ │ ├── UNotify.vue │ │ │ └── types.d.ts │ │ └── UToast │ │ │ ├── UToast.vue │ │ │ └── types.d.ts │ └── timetable │ │ ├── CourseActionSheet.vue │ │ ├── TimetableAction.vue │ │ ├── TimetableContent.vue │ │ └── TimetableHeader.vue ├── main.ts ├── manifest.json ├── modules │ └── pinia.ts ├── pages.json ├── pages │ ├── detail │ │ └── detail.vue │ ├── index │ │ └── index.vue │ └── splash │ │ └── splash.vue ├── shims.d.ts ├── static │ ├── courses.ts │ └── logo.png ├── stores │ ├── app.ts │ ├── course.ts │ └── page.ts ├── theme.json └── uni.scss ├── tsconfig.json ├── unocss.config.ts └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@antfu"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/README.md -------------------------------------------------------------------------------- /images/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/images/dark.png -------------------------------------------------------------------------------- /images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/images/light.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/renovate.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/auto-imports.d.ts -------------------------------------------------------------------------------- /src/components/UnoUI/UBasePage/UBasePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/UnoUI/UBasePage/UBasePage.vue -------------------------------------------------------------------------------- /src/components/UnoUI/UButton/UButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/UnoUI/UButton/UButton.vue -------------------------------------------------------------------------------- /src/components/UnoUI/UNotify/UNotify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/UnoUI/UNotify/UNotify.vue -------------------------------------------------------------------------------- /src/components/UnoUI/UNotify/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/UnoUI/UNotify/types.d.ts -------------------------------------------------------------------------------- /src/components/UnoUI/UToast/UToast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/UnoUI/UToast/UToast.vue -------------------------------------------------------------------------------- /src/components/UnoUI/UToast/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/UnoUI/UToast/types.d.ts -------------------------------------------------------------------------------- /src/components/timetable/CourseActionSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/timetable/CourseActionSheet.vue -------------------------------------------------------------------------------- /src/components/timetable/TimetableAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/timetable/TimetableAction.vue -------------------------------------------------------------------------------- /src/components/timetable/TimetableContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/timetable/TimetableContent.vue -------------------------------------------------------------------------------- /src/components/timetable/TimetableHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/components/timetable/TimetableHeader.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/modules/pinia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/modules/pinia.ts -------------------------------------------------------------------------------- /src/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/pages.json -------------------------------------------------------------------------------- /src/pages/detail/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/pages/detail/detail.vue -------------------------------------------------------------------------------- /src/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/pages/index/index.vue -------------------------------------------------------------------------------- /src/pages/splash/splash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/pages/splash/splash.vue -------------------------------------------------------------------------------- /src/shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/shims.d.ts -------------------------------------------------------------------------------- /src/static/courses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/static/courses.ts -------------------------------------------------------------------------------- /src/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/static/logo.png -------------------------------------------------------------------------------- /src/stores/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/stores/app.ts -------------------------------------------------------------------------------- /src/stores/course.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/stores/course.ts -------------------------------------------------------------------------------- /src/stores/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/stores/page.ts -------------------------------------------------------------------------------- /src/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/theme.json -------------------------------------------------------------------------------- /src/uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/src/uni.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/tsconfig.json -------------------------------------------------------------------------------- /unocss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/unocss.config.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nei1ee/ColorTimetable/HEAD/vite.config.ts --------------------------------------------------------------------------------