This is a simple gallery app that fetches images from the Unsplash API and displays them in a grid. The app is built using React, TypeScript, and Vite.
- introduce a way to dynamically add annotation overlay
- use tanstack routing to separate gallery vs editor view
- use react-hotkeys-hook to allow keyboard shortcuts for editing annotations and navigating the gallery
- use divs instead of tables to control display of property grids
- make sure that the user can change the width of the column on the property grid
- Use tree view to navigate data hierarchy
- use orama for searching the data hierarchy
- allow user to add images to the gallery
- allow user to edit the annotations images in the gallery
- allow media pipe object detection to add annotations to images
- editor quality of life
- allow object snapping
- allow user to upload images as annotation overlays
- allow user to create a blank new sheet/canvas
- requires restructuring the data hierarchy/document model
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptionsproperty like this:
export default {
// other rules...
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: ["./tsconfig.json", "./tsconfig.node.json"],
tsconfigRootDir: __dirname,
},
};- Replace
plugin:@typescript-eslint/recommendedtoplugin:@typescript-eslint/recommended-type-checkedorplugin:@typescript-eslint/strict-type-checked - Optionally add
plugin:@typescript-eslint/stylistic-type-checked - Install eslint-plugin-react and add
plugin:react/recommended&plugin:react/jsx-runtimeto theextendslist