├── .env.development ├── .env.production ├── .eslintrc.js ├── .gitignore ├── .gitmodules ├── .husky └── pre-commit ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── preview ├── 404.png ├── 500-maintain.png ├── 500.png ├── applist.png ├── applist1.png ├── applist2.png ├── applist3.png ├── design-b.png ├── design-data.png ├── design-p.png ├── design-w.png ├── design.png ├── form-echo.png ├── form-login.png ├── form.png ├── form1.png ├── home1-w.png ├── home1.png ├── home2-w.png ├── home2.png ├── login.png ├── login_alert.png └── login_form.png ├── public ├── 3d │ ├── 3d-business-little-boy-in-online-lesson.png │ ├── 3d-casual-life-data-analysis.png │ ├── 3d-casual-life-design-composition-laptop.png │ └── 3d-casual-life-young-man-drawing-a-curve-in-design-program.png ├── avatar │ ├── b1.png │ ├── b2.png │ ├── b3.png │ ├── g1.png │ ├── g2.png │ └── g3.png ├── banner │ └── flip-1.mp4 ├── baseComponent.png ├── cat.jpg ├── cover │ ├── base │ │ ├── baseButton.png │ │ └── baseImage.png │ ├── charts │ │ ├── areaLine.png │ │ ├── areaStack.png │ │ ├── baseBar.png │ │ ├── baseFunnel.png │ │ ├── baseGauge.png │ │ ├── baseLine.png │ │ ├── basePie.png │ │ ├── borderRadiusPie.png │ │ ├── centerBar.png │ │ ├── doughnutPie.png │ │ ├── dropletChart.png │ │ ├── funnelChart.png │ │ ├── nightingalePie.png │ │ ├── pointChart.png │ │ ├── smoothLine.png │ │ ├── speedChart.png │ │ ├── stackBar.png │ │ ├── stackLine.png │ │ ├── ycategoryBar.png │ │ └── ycategoryStackBar.png │ └── datav │ │ ├── border │ │ ├── borderBox1.png │ │ ├── borderBox10.png │ │ ├── borderBox11.png │ │ ├── borderBox12.png │ │ ├── borderBox13.png │ │ ├── borderBox2.png │ │ ├── borderBox3.png │ │ ├── borderBox4.png │ │ ├── borderBox5.png │ │ ├── borderBox6.png │ │ ├── borderBox7.png │ │ ├── borderBox8.png │ │ └── borderBox9.png │ │ ├── chart │ │ ├── DvCapsuleChart.png │ │ ├── DvColumnChart.png │ │ ├── DvColumnChart1.png │ │ ├── DvPercentPond.png │ │ ├── DvRingChart.png │ │ └── DvWaterLevelPond.png │ │ ├── decoration │ │ ├── Decoration1.png │ │ ├── Decoration10.png │ │ ├── Decoration11.png │ │ ├── Decoration2.png │ │ ├── Decoration3.png │ │ ├── Decoration4.png │ │ ├── Decoration5.png │ │ ├── Decoration6.png │ │ ├── Decoration7.png │ │ ├── Decoration8.png │ │ └── Decoration9.png │ │ ├── loading.png │ │ ├── number.png │ │ └── table │ │ ├── DvScrollBoard.png │ │ └── baseScrollRankingBoard.png ├── dog.jpg ├── favicon.ico ├── icon │ ├── chat.png │ ├── free.png │ ├── github.png │ ├── group.png │ ├── level │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── first.png │ │ ├── great.png │ │ ├── second.png │ │ └── third.png │ ├── pick.png │ ├── pick1.png │ ├── recommend.png │ ├── seal.png │ ├── store.png │ ├── up.png │ ├── vip.png │ └── vipt.png ├── illustrations │ ├── techny-searching-the-web-on-tablet.png │ ├── templatePage.png │ └── upload.png ├── lottie │ ├── beam-web-design-program-on-laptop-screen.json │ ├── bubble-gum-web-design.json │ ├── techny-data-dashboard.json │ ├── techny-launching-a-startup.json │ └── techny-project-management.json ├── mountains.jpg ├── vercel.png ├── wechat.png ├── wechatGroup.png └── wechatReward.png ├── src ├── api │ ├── application.ts │ ├── auth.ts │ ├── design.ts │ ├── oss.ts │ ├── template.ts │ └── user.ts ├── assets │ ├── main.css │ └── sketch.css ├── components │ ├── Application │ │ ├── AppContainer.tsx │ │ ├── ApplicationItem.tsx │ │ └── PageItem.tsx │ ├── Banner │ │ ├── Banner.module.css │ │ └── index.tsx │ ├── Copyright │ │ ├── Copyright.module.css │ │ └── index.tsx │ ├── Dialog │ │ ├── CreateDialog.tsx │ │ ├── CreateUserDialog.tsx │ │ └── MoveDialog.tsx │ ├── Form │ │ ├── FormFactory.tsx │ │ ├── FormItem.tsx │ │ └── temp │ │ │ ├── AvatarItem.tsx │ │ │ ├── ButtonGroupItem.tsx │ │ │ ├── CancelButton.tsx │ │ │ ├── CaptureItem.tsx │ │ │ ├── HelperText.tsx │ │ │ ├── InputItem.tsx │ │ │ ├── PasswordItem.tsx │ │ │ ├── SelectItem.tsx │ │ │ ├── SliderItem.tsx │ │ │ ├── SubmitButton.tsx │ │ │ └── SwitchItem.tsx │ ├── HeadMenu │ │ └── index.tsx │ ├── Header │ │ ├── Header.module.css │ │ └── index.tsx │ ├── IconGen │ │ └── index.tsx │ ├── Layout │ │ └── index.tsx │ ├── Logo │ │ ├── Logo.module.css │ │ └── index.tsx │ ├── Lottie │ │ └── index.tsx │ ├── MenuList │ │ ├── Menu.module.css │ │ ├── MenuItem.tsx │ │ ├── PopMenuItem.tsx │ │ ├── SubMenuItem.tsx │ │ └── index.tsx │ ├── MoreIcon │ │ └── index.tsx │ ├── MuiTable │ │ ├── index.tsx │ │ └── temp │ │ │ ├── User.tsx │ │ │ └── UserOptions.tsx │ ├── PageLoading │ │ └── index.tsx │ ├── Query │ │ ├── QueryFactory.tsx │ │ └── item │ │ │ ├── Button.tsx │ │ │ ├── DateRange.tsx │ │ │ ├── Select.tsx │ │ │ ├── String.tsx │ │ │ └── Tab.tsx │ ├── Svg │ │ ├── Empty.tsx │ │ ├── ErrorIcon.tsx │ │ ├── EyesIcon.tsx │ │ ├── FileIcon.tsx │ │ ├── FolderIcon.tsx │ │ ├── LoadingIcon.tsx │ │ ├── NotFoundIcon.tsx │ │ ├── RecommendIcon.tsx │ │ ├── ServerErrorIcon.tsx │ │ └── WarningIcon.tsx │ ├── Swiper │ │ └── index.tsx │ ├── ThemeSwitch │ │ └── index.tsx │ ├── TipBox │ │ └── index.tsx │ └── shimmer.tsx ├── config │ ├── constant.ts │ ├── context │ │ └── ThemeModeContext.ts │ ├── data │ │ └── index.ts │ ├── form │ │ ├── CreateApp.ts │ │ ├── CreatePage.ts │ │ ├── CreateUser.ts │ │ ├── LoginForm.ts │ │ └── TemplateForm.ts │ ├── query │ │ └── UserQuery.ts │ └── theme.ts ├── pages │ ├── 404 │ │ └── index.tsx │ ├── 500 │ │ └── index.tsx │ ├── _app.tsx │ ├── api │ │ ├── component │ │ │ └── index.ts │ │ ├── people │ │ │ └── index.ts │ │ └── static │ │ │ ├── component.ts │ │ │ └── people.ts │ ├── application │ │ ├── [appId].tsx │ │ └── index.tsx │ ├── design │ │ ├── README.md │ │ └── [did].tsx │ ├── formCreate │ │ └── index.tsx │ ├── index.tsx │ ├── login │ │ ├── Login.module.css │ │ └── index.tsx │ ├── preview │ │ └── [did].tsx │ ├── sale │ │ ├── PriceItem.tsx │ │ └── index.tsx │ ├── store │ │ ├── TemplateItem.tsx │ │ └── index.tsx │ ├── template │ │ └── [tid].tsx │ └── user │ │ ├── [uid].tsx │ │ └── index.tsx ├── store │ ├── index.ts │ ├── mixin │ │ └── index.ts │ └── slice │ │ ├── Counter │ │ ├── Counter.module.css │ │ ├── Counter.tsx │ │ ├── counterAPI.ts │ │ └── index.ts │ │ ├── Design │ │ └── index.ts │ │ └── Global │ │ └── index.ts ├── types │ ├── form.d.ts │ └── index.d.ts └── utils │ ├── axios.ts │ ├── common.ts │ └── lib │ └── AlphaVideoMaterial.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/postcss.config.js -------------------------------------------------------------------------------- /preview/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/404.png -------------------------------------------------------------------------------- /preview/500-maintain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/500-maintain.png -------------------------------------------------------------------------------- /preview/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/500.png -------------------------------------------------------------------------------- /preview/applist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/applist.png -------------------------------------------------------------------------------- /preview/applist1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/applist1.png -------------------------------------------------------------------------------- /preview/applist2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/applist2.png -------------------------------------------------------------------------------- /preview/applist3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/applist3.png -------------------------------------------------------------------------------- /preview/design-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/design-b.png -------------------------------------------------------------------------------- /preview/design-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/design-data.png -------------------------------------------------------------------------------- /preview/design-p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/design-p.png -------------------------------------------------------------------------------- /preview/design-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/design-w.png -------------------------------------------------------------------------------- /preview/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/design.png -------------------------------------------------------------------------------- /preview/form-echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/form-echo.png -------------------------------------------------------------------------------- /preview/form-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/form-login.png -------------------------------------------------------------------------------- /preview/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/form.png -------------------------------------------------------------------------------- /preview/form1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/form1.png -------------------------------------------------------------------------------- /preview/home1-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/home1-w.png -------------------------------------------------------------------------------- /preview/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/home1.png -------------------------------------------------------------------------------- /preview/home2-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/home2-w.png -------------------------------------------------------------------------------- /preview/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/home2.png -------------------------------------------------------------------------------- /preview/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/login.png -------------------------------------------------------------------------------- /preview/login_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/login_alert.png -------------------------------------------------------------------------------- /preview/login_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/preview/login_form.png -------------------------------------------------------------------------------- /public/3d/3d-business-little-boy-in-online-lesson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/3d/3d-business-little-boy-in-online-lesson.png -------------------------------------------------------------------------------- /public/3d/3d-casual-life-data-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/3d/3d-casual-life-data-analysis.png -------------------------------------------------------------------------------- /public/3d/3d-casual-life-design-composition-laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/3d/3d-casual-life-design-composition-laptop.png -------------------------------------------------------------------------------- /public/3d/3d-casual-life-young-man-drawing-a-curve-in-design-program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/3d/3d-casual-life-young-man-drawing-a-curve-in-design-program.png -------------------------------------------------------------------------------- /public/avatar/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/avatar/b1.png -------------------------------------------------------------------------------- /public/avatar/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/avatar/b2.png -------------------------------------------------------------------------------- /public/avatar/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/avatar/b3.png -------------------------------------------------------------------------------- /public/avatar/g1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/avatar/g1.png -------------------------------------------------------------------------------- /public/avatar/g2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/avatar/g2.png -------------------------------------------------------------------------------- /public/avatar/g3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/avatar/g3.png -------------------------------------------------------------------------------- /public/banner/flip-1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/banner/flip-1.mp4 -------------------------------------------------------------------------------- /public/baseComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/baseComponent.png -------------------------------------------------------------------------------- /public/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cat.jpg -------------------------------------------------------------------------------- /public/cover/base/baseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/base/baseButton.png -------------------------------------------------------------------------------- /public/cover/base/baseImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/base/baseImage.png -------------------------------------------------------------------------------- /public/cover/charts/areaLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/areaLine.png -------------------------------------------------------------------------------- /public/cover/charts/areaStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/areaStack.png -------------------------------------------------------------------------------- /public/cover/charts/baseBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/baseBar.png -------------------------------------------------------------------------------- /public/cover/charts/baseFunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/baseFunnel.png -------------------------------------------------------------------------------- /public/cover/charts/baseGauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/baseGauge.png -------------------------------------------------------------------------------- /public/cover/charts/baseLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/baseLine.png -------------------------------------------------------------------------------- /public/cover/charts/basePie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/basePie.png -------------------------------------------------------------------------------- /public/cover/charts/borderRadiusPie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/borderRadiusPie.png -------------------------------------------------------------------------------- /public/cover/charts/centerBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/centerBar.png -------------------------------------------------------------------------------- /public/cover/charts/doughnutPie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/doughnutPie.png -------------------------------------------------------------------------------- /public/cover/charts/dropletChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/dropletChart.png -------------------------------------------------------------------------------- /public/cover/charts/funnelChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/funnelChart.png -------------------------------------------------------------------------------- /public/cover/charts/nightingalePie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/nightingalePie.png -------------------------------------------------------------------------------- /public/cover/charts/pointChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/pointChart.png -------------------------------------------------------------------------------- /public/cover/charts/smoothLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/smoothLine.png -------------------------------------------------------------------------------- /public/cover/charts/speedChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/speedChart.png -------------------------------------------------------------------------------- /public/cover/charts/stackBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/stackBar.png -------------------------------------------------------------------------------- /public/cover/charts/stackLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/stackLine.png -------------------------------------------------------------------------------- /public/cover/charts/ycategoryBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/ycategoryBar.png -------------------------------------------------------------------------------- /public/cover/charts/ycategoryStackBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/charts/ycategoryStackBar.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox1.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox10.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox11.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox12.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox13.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox2.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox3.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox4.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox5.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox6.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox7.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox8.png -------------------------------------------------------------------------------- /public/cover/datav/border/borderBox9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/border/borderBox9.png -------------------------------------------------------------------------------- /public/cover/datav/chart/DvCapsuleChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/chart/DvCapsuleChart.png -------------------------------------------------------------------------------- /public/cover/datav/chart/DvColumnChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/chart/DvColumnChart.png -------------------------------------------------------------------------------- /public/cover/datav/chart/DvColumnChart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/chart/DvColumnChart1.png -------------------------------------------------------------------------------- /public/cover/datav/chart/DvPercentPond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/chart/DvPercentPond.png -------------------------------------------------------------------------------- /public/cover/datav/chart/DvRingChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/chart/DvRingChart.png -------------------------------------------------------------------------------- /public/cover/datav/chart/DvWaterLevelPond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/chart/DvWaterLevelPond.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration1.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration10.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration11.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration2.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration3.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration4.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration5.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration6.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration7.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration8.png -------------------------------------------------------------------------------- /public/cover/datav/decoration/Decoration9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/decoration/Decoration9.png -------------------------------------------------------------------------------- /public/cover/datav/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/loading.png -------------------------------------------------------------------------------- /public/cover/datav/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/number.png -------------------------------------------------------------------------------- /public/cover/datav/table/DvScrollBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/table/DvScrollBoard.png -------------------------------------------------------------------------------- /public/cover/datav/table/baseScrollRankingBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/cover/datav/table/baseScrollRankingBoard.png -------------------------------------------------------------------------------- /public/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/dog.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/chat.png -------------------------------------------------------------------------------- /public/icon/free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/free.png -------------------------------------------------------------------------------- /public/icon/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/github.png -------------------------------------------------------------------------------- /public/icon/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/group.png -------------------------------------------------------------------------------- /public/icon/level/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/1.png -------------------------------------------------------------------------------- /public/icon/level/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/10.png -------------------------------------------------------------------------------- /public/icon/level/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/11.png -------------------------------------------------------------------------------- /public/icon/level/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/12.png -------------------------------------------------------------------------------- /public/icon/level/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/13.png -------------------------------------------------------------------------------- /public/icon/level/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/14.png -------------------------------------------------------------------------------- /public/icon/level/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/15.png -------------------------------------------------------------------------------- /public/icon/level/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/16.png -------------------------------------------------------------------------------- /public/icon/level/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/17.png -------------------------------------------------------------------------------- /public/icon/level/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/18.png -------------------------------------------------------------------------------- /public/icon/level/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/19.png -------------------------------------------------------------------------------- /public/icon/level/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/2.png -------------------------------------------------------------------------------- /public/icon/level/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/20.png -------------------------------------------------------------------------------- /public/icon/level/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/3.png -------------------------------------------------------------------------------- /public/icon/level/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/4.png -------------------------------------------------------------------------------- /public/icon/level/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/5.png -------------------------------------------------------------------------------- /public/icon/level/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/6.png -------------------------------------------------------------------------------- /public/icon/level/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/7.png -------------------------------------------------------------------------------- /public/icon/level/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/8.png -------------------------------------------------------------------------------- /public/icon/level/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/9.png -------------------------------------------------------------------------------- /public/icon/level/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/first.png -------------------------------------------------------------------------------- /public/icon/level/great.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/great.png -------------------------------------------------------------------------------- /public/icon/level/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/second.png -------------------------------------------------------------------------------- /public/icon/level/third.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/level/third.png -------------------------------------------------------------------------------- /public/icon/pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/pick.png -------------------------------------------------------------------------------- /public/icon/pick1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/pick1.png -------------------------------------------------------------------------------- /public/icon/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/recommend.png -------------------------------------------------------------------------------- /public/icon/seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/seal.png -------------------------------------------------------------------------------- /public/icon/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/store.png -------------------------------------------------------------------------------- /public/icon/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/up.png -------------------------------------------------------------------------------- /public/icon/vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/vip.png -------------------------------------------------------------------------------- /public/icon/vipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/icon/vipt.png -------------------------------------------------------------------------------- /public/illustrations/techny-searching-the-web-on-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/illustrations/techny-searching-the-web-on-tablet.png -------------------------------------------------------------------------------- /public/illustrations/templatePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/illustrations/templatePage.png -------------------------------------------------------------------------------- /public/illustrations/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/illustrations/upload.png -------------------------------------------------------------------------------- /public/lottie/beam-web-design-program-on-laptop-screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/lottie/beam-web-design-program-on-laptop-screen.json -------------------------------------------------------------------------------- /public/lottie/bubble-gum-web-design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/lottie/bubble-gum-web-design.json -------------------------------------------------------------------------------- /public/lottie/techny-data-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/lottie/techny-data-dashboard.json -------------------------------------------------------------------------------- /public/lottie/techny-launching-a-startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/lottie/techny-launching-a-startup.json -------------------------------------------------------------------------------- /public/lottie/techny-project-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/lottie/techny-project-management.json -------------------------------------------------------------------------------- /public/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/mountains.jpg -------------------------------------------------------------------------------- /public/vercel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/vercel.png -------------------------------------------------------------------------------- /public/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/wechat.png -------------------------------------------------------------------------------- /public/wechatGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/wechatGroup.png -------------------------------------------------------------------------------- /public/wechatReward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/public/wechatReward.png -------------------------------------------------------------------------------- /src/api/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/api/application.ts -------------------------------------------------------------------------------- /src/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/api/auth.ts -------------------------------------------------------------------------------- /src/api/design.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/api/design.ts -------------------------------------------------------------------------------- /src/api/oss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/api/oss.ts -------------------------------------------------------------------------------- /src/api/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/api/template.ts -------------------------------------------------------------------------------- /src/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/api/user.ts -------------------------------------------------------------------------------- /src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/assets/main.css -------------------------------------------------------------------------------- /src/assets/sketch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/assets/sketch.css -------------------------------------------------------------------------------- /src/components/Application/AppContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Application/AppContainer.tsx -------------------------------------------------------------------------------- /src/components/Application/ApplicationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Application/ApplicationItem.tsx -------------------------------------------------------------------------------- /src/components/Application/PageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Application/PageItem.tsx -------------------------------------------------------------------------------- /src/components/Banner/Banner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Banner/Banner.module.css -------------------------------------------------------------------------------- /src/components/Banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Banner/index.tsx -------------------------------------------------------------------------------- /src/components/Copyright/Copyright.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Copyright/Copyright.module.css -------------------------------------------------------------------------------- /src/components/Copyright/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Copyright/index.tsx -------------------------------------------------------------------------------- /src/components/Dialog/CreateDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Dialog/CreateDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialog/CreateUserDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Dialog/CreateUserDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialog/MoveDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Dialog/MoveDialog.tsx -------------------------------------------------------------------------------- /src/components/Form/FormFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/FormFactory.tsx -------------------------------------------------------------------------------- /src/components/Form/FormItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/FormItem.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/AvatarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/AvatarItem.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/ButtonGroupItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/ButtonGroupItem.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/CancelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/CancelButton.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/CaptureItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/CaptureItem.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/HelperText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/HelperText.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/InputItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/InputItem.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/PasswordItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/PasswordItem.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/SelectItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/SelectItem.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/SliderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/SliderItem.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/SubmitButton.tsx -------------------------------------------------------------------------------- /src/components/Form/temp/SwitchItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Form/temp/SwitchItem.tsx -------------------------------------------------------------------------------- /src/components/HeadMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/HeadMenu/index.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/IconGen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/IconGen/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/Logo/Logo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Logo/Logo.module.css -------------------------------------------------------------------------------- /src/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/components/Lottie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Lottie/index.tsx -------------------------------------------------------------------------------- /src/components/MenuList/Menu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MenuList/Menu.module.css -------------------------------------------------------------------------------- /src/components/MenuList/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MenuList/MenuItem.tsx -------------------------------------------------------------------------------- /src/components/MenuList/PopMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MenuList/PopMenuItem.tsx -------------------------------------------------------------------------------- /src/components/MenuList/SubMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MenuList/SubMenuItem.tsx -------------------------------------------------------------------------------- /src/components/MenuList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MenuList/index.tsx -------------------------------------------------------------------------------- /src/components/MoreIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MoreIcon/index.tsx -------------------------------------------------------------------------------- /src/components/MuiTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MuiTable/index.tsx -------------------------------------------------------------------------------- /src/components/MuiTable/temp/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MuiTable/temp/User.tsx -------------------------------------------------------------------------------- /src/components/MuiTable/temp/UserOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/MuiTable/temp/UserOptions.tsx -------------------------------------------------------------------------------- /src/components/PageLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/PageLoading/index.tsx -------------------------------------------------------------------------------- /src/components/Query/QueryFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Query/QueryFactory.tsx -------------------------------------------------------------------------------- /src/components/Query/item/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Query/item/Button.tsx -------------------------------------------------------------------------------- /src/components/Query/item/DateRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Query/item/DateRange.tsx -------------------------------------------------------------------------------- /src/components/Query/item/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Query/item/Select.tsx -------------------------------------------------------------------------------- /src/components/Query/item/String.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Query/item/String.tsx -------------------------------------------------------------------------------- /src/components/Query/item/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Query/item/Tab.tsx -------------------------------------------------------------------------------- /src/components/Svg/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/Empty.tsx -------------------------------------------------------------------------------- /src/components/Svg/ErrorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/ErrorIcon.tsx -------------------------------------------------------------------------------- /src/components/Svg/EyesIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/EyesIcon.tsx -------------------------------------------------------------------------------- /src/components/Svg/FileIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/FileIcon.tsx -------------------------------------------------------------------------------- /src/components/Svg/FolderIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/FolderIcon.tsx -------------------------------------------------------------------------------- /src/components/Svg/LoadingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/LoadingIcon.tsx -------------------------------------------------------------------------------- /src/components/Svg/NotFoundIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/NotFoundIcon.tsx -------------------------------------------------------------------------------- /src/components/Svg/RecommendIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/RecommendIcon.tsx -------------------------------------------------------------------------------- /src/components/Svg/ServerErrorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/ServerErrorIcon.tsx -------------------------------------------------------------------------------- /src/components/Svg/WarningIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Svg/WarningIcon.tsx -------------------------------------------------------------------------------- /src/components/Swiper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/Swiper/index.tsx -------------------------------------------------------------------------------- /src/components/ThemeSwitch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/ThemeSwitch/index.tsx -------------------------------------------------------------------------------- /src/components/TipBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/TipBox/index.tsx -------------------------------------------------------------------------------- /src/components/shimmer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/components/shimmer.tsx -------------------------------------------------------------------------------- /src/config/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/constant.ts -------------------------------------------------------------------------------- /src/config/context/ThemeModeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/context/ThemeModeContext.ts -------------------------------------------------------------------------------- /src/config/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/data/index.ts -------------------------------------------------------------------------------- /src/config/form/CreateApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/form/CreateApp.ts -------------------------------------------------------------------------------- /src/config/form/CreatePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/form/CreatePage.ts -------------------------------------------------------------------------------- /src/config/form/CreateUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/form/CreateUser.ts -------------------------------------------------------------------------------- /src/config/form/LoginForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/form/LoginForm.ts -------------------------------------------------------------------------------- /src/config/form/TemplateForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/form/TemplateForm.ts -------------------------------------------------------------------------------- /src/config/query/UserQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/query/UserQuery.ts -------------------------------------------------------------------------------- /src/config/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/config/theme.ts -------------------------------------------------------------------------------- /src/pages/404/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/404/index.tsx -------------------------------------------------------------------------------- /src/pages/500/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/500/index.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/api/component/index.ts -------------------------------------------------------------------------------- /src/pages/api/people/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/api/people/index.ts -------------------------------------------------------------------------------- /src/pages/api/static/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/api/static/component.ts -------------------------------------------------------------------------------- /src/pages/api/static/people.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/api/static/people.ts -------------------------------------------------------------------------------- /src/pages/application/[appId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/application/[appId].tsx -------------------------------------------------------------------------------- /src/pages/application/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/application/index.tsx -------------------------------------------------------------------------------- /src/pages/design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/design/README.md -------------------------------------------------------------------------------- /src/pages/design/[did].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/design/[did].tsx -------------------------------------------------------------------------------- /src/pages/formCreate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/formCreate/index.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/login/Login.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/login/Login.module.css -------------------------------------------------------------------------------- /src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/login/index.tsx -------------------------------------------------------------------------------- /src/pages/preview/[did].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/preview/[did].tsx -------------------------------------------------------------------------------- /src/pages/sale/PriceItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/sale/PriceItem.tsx -------------------------------------------------------------------------------- /src/pages/sale/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/sale/index.tsx -------------------------------------------------------------------------------- /src/pages/store/TemplateItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/store/TemplateItem.tsx -------------------------------------------------------------------------------- /src/pages/store/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/store/index.tsx -------------------------------------------------------------------------------- /src/pages/template/[tid].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/template/[tid].tsx -------------------------------------------------------------------------------- /src/pages/user/[uid].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/user/[uid].tsx -------------------------------------------------------------------------------- /src/pages/user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/pages/user/index.tsx -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/mixin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/store/mixin/index.ts -------------------------------------------------------------------------------- /src/store/slice/Counter/Counter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/store/slice/Counter/Counter.module.css -------------------------------------------------------------------------------- /src/store/slice/Counter/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/store/slice/Counter/Counter.tsx -------------------------------------------------------------------------------- /src/store/slice/Counter/counterAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/store/slice/Counter/counterAPI.ts -------------------------------------------------------------------------------- /src/store/slice/Counter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/store/slice/Counter/index.ts -------------------------------------------------------------------------------- /src/store/slice/Design/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/store/slice/Design/index.ts -------------------------------------------------------------------------------- /src/store/slice/Global/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/store/slice/Global/index.ts -------------------------------------------------------------------------------- /src/types/form.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/types/form.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/utils/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/utils/axios.ts -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/utils/lib/AlphaVideoMaterial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/src/utils/lib/AlphaVideoMaterial.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-vien/CcView/HEAD/yarn.lock --------------------------------------------------------------------------------