├── .babelrc ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── components ├── CollectionInfo.tsx ├── Dashboard.tsx ├── DateRange.tsx ├── Dropdown.tsx ├── FileImport.tsx ├── FilterSelect.tsx ├── Footer.tsx ├── Graph.tsx ├── GraphBuilder.tsx ├── GraphMenu.tsx ├── GraphRenderer.tsx ├── Json.tsx ├── Layout.tsx ├── MainMenu.tsx ├── MultiSelect.tsx ├── PeriodSelect.tsx ├── Warning.tsx ├── Welcome.tsx ├── Wrapper.tsx └── charts │ ├── Bar.tsx │ ├── Bump.tsx │ ├── Calendar.tsx │ ├── Line.tsx │ └── Pie.tsx ├── hooks ├── orm.ts └── query.ts ├── logo.psd ├── netlify.toml ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── patch.js ├── public ├── favicon.ico ├── sql-wasm.wasm └── vercel.svg ├── schema ├── cards.ts ├── col.ts ├── notes.ts └── revlog.ts ├── screenshot.png ├── screenshot_bar.png ├── screenshot_bump.png ├── screenshot_bump_2.png ├── screenshot_calendar.png ├── screenshot_pie.png ├── tsconfig.json ├── types.d.ts └── utils ├── cache.ts ├── counter.ts ├── file.ts ├── filters.ts ├── format.ts ├── graphs.ts ├── periods.ts ├── presets.ts ├── queries.ts ├── selects.ts ├── tick.ts └── transforms.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/README.md -------------------------------------------------------------------------------- /components/CollectionInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/CollectionInfo.tsx -------------------------------------------------------------------------------- /components/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Dashboard.tsx -------------------------------------------------------------------------------- /components/DateRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/DateRange.tsx -------------------------------------------------------------------------------- /components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Dropdown.tsx -------------------------------------------------------------------------------- /components/FileImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/FileImport.tsx -------------------------------------------------------------------------------- /components/FilterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/FilterSelect.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Graph.tsx -------------------------------------------------------------------------------- /components/GraphBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/GraphBuilder.tsx -------------------------------------------------------------------------------- /components/GraphMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/GraphMenu.tsx -------------------------------------------------------------------------------- /components/GraphRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/GraphRenderer.tsx -------------------------------------------------------------------------------- /components/Json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Json.tsx -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Layout.tsx -------------------------------------------------------------------------------- /components/MainMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/MainMenu.tsx -------------------------------------------------------------------------------- /components/MultiSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/MultiSelect.tsx -------------------------------------------------------------------------------- /components/PeriodSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/PeriodSelect.tsx -------------------------------------------------------------------------------- /components/Warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Warning.tsx -------------------------------------------------------------------------------- /components/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Welcome.tsx -------------------------------------------------------------------------------- /components/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/Wrapper.tsx -------------------------------------------------------------------------------- /components/charts/Bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/charts/Bar.tsx -------------------------------------------------------------------------------- /components/charts/Bump.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/charts/Bump.tsx -------------------------------------------------------------------------------- /components/charts/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/charts/Calendar.tsx -------------------------------------------------------------------------------- /components/charts/Line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/charts/Line.tsx -------------------------------------------------------------------------------- /components/charts/Pie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/components/charts/Pie.tsx -------------------------------------------------------------------------------- /hooks/orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/hooks/orm.ts -------------------------------------------------------------------------------- /hooks/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/hooks/query.ts -------------------------------------------------------------------------------- /logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/logo.psd -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/netlify.toml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/patch.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/sql-wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/public/sql-wasm.wasm -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /schema/cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/schema/cards.ts -------------------------------------------------------------------------------- /schema/col.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/schema/col.ts -------------------------------------------------------------------------------- /schema/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/schema/notes.ts -------------------------------------------------------------------------------- /schema/revlog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/schema/revlog.ts -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/screenshot_bar.png -------------------------------------------------------------------------------- /screenshot_bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/screenshot_bump.png -------------------------------------------------------------------------------- /screenshot_bump_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/screenshot_bump_2.png -------------------------------------------------------------------------------- /screenshot_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/screenshot_calendar.png -------------------------------------------------------------------------------- /screenshot_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/screenshot_pie.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/types.d.ts -------------------------------------------------------------------------------- /utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/cache.ts -------------------------------------------------------------------------------- /utils/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/counter.ts -------------------------------------------------------------------------------- /utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/file.ts -------------------------------------------------------------------------------- /utils/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/filters.ts -------------------------------------------------------------------------------- /utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/format.ts -------------------------------------------------------------------------------- /utils/graphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/graphs.ts -------------------------------------------------------------------------------- /utils/periods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/periods.ts -------------------------------------------------------------------------------- /utils/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/presets.ts -------------------------------------------------------------------------------- /utils/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/queries.ts -------------------------------------------------------------------------------- /utils/selects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/selects.ts -------------------------------------------------------------------------------- /utils/tick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/tick.ts -------------------------------------------------------------------------------- /utils/transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/anki-vision/HEAD/utils/transforms.ts --------------------------------------------------------------------------------