Feat/add poi form
Showing
- .gitlab-ci.yml 1 addition, 1 deletion.gitlab-ci.yml
- package-lock.json 473 additions, 9 deletionspackage-lock.json
- package.json 6 additions, 1 deletionpackage.json
- snowpack.config.js 2 additions, 1 deletionsnowpack.config.js
- src/App.tsx 0 additions, 97 deletionssrc/App.tsx
- src/Sidebar/SidebarListView.tsx 0 additions, 44 deletionssrc/Sidebar/SidebarListView.tsx
- src/components/App.tsx 29 additions, 0 deletionssrc/components/App.tsx
- src/components/ErrorModal.tsx 16 additions, 0 deletionssrc/components/ErrorModal.tsx
- src/components/Map/Map.tsx 29 additions, 30 deletionssrc/components/Map/Map.tsx
- src/components/Map/MapViewController.tsx 0 additions, 0 deletionssrc/components/Map/MapViewController.tsx
- src/components/Modal.tsx 0 additions, 0 deletionssrc/components/Modal.tsx
- src/components/Sidebar/AddPoiForm.tsx 127 additions, 0 deletionssrc/components/Sidebar/AddPoiForm.tsx
- src/components/Sidebar/ListElement.tsx 6 additions, 3 deletionssrc/components/Sidebar/ListElement.tsx
- src/components/Sidebar/SidebarContainer.tsx 19 additions, 0 deletionssrc/components/Sidebar/SidebarContainer.tsx
- src/components/Sidebar/SidebarCreateView.tsx 24 additions, 0 deletionssrc/components/Sidebar/SidebarCreateView.tsx
- src/components/Sidebar/SidebarListView.tsx 31 additions, 0 deletionssrc/components/Sidebar/SidebarListView.tsx
- src/components/Sidebar/SidebarSingleView.tsx 62 additions, 0 deletionssrc/components/Sidebar/SidebarSingleView.tsx
- src/components/Sidebar/Tag.tsx 19 additions, 0 deletionssrc/components/Sidebar/Tag.tsx
- src/components/SwrWrapper.tsx 29 additions, 0 deletionssrc/components/SwrWrapper.tsx
- src/hooks/index.ts 2 additions, 0 deletionssrc/hooks/index.ts
This diff is collapsed.
... | ... | @@ -6,6 +6,7 @@ |
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"" | ||
}, | ||
"dependencies": { | ||
"@tailwindcss/forms": "^0.3.2", | ||
"graphql": "^15.5.0", | ||
"graphql-request": "^3.4.0", | ||
"heroicons-react": "1.3.0", | ||
... | ... | @@ -13,10 +14,13 @@ |
"react": "^17.0.0", | ||
"react-dom": "^17.0.0", | ||
"react-leaflet": "^3.1.0", | ||
"react-router-dom": "^5.2.0", | ||
"swr": "^0.5.5", | ||
"tailwindcss": "^2.0.3" | ||
"tailwindcss": "^2.0.3", | ||
"zustand": "^3.4.1" | ||
}, | ||
"devDependencies": { | ||
"@jadex/snowpack-plugin-tailwindcss-jit": "^0.2.0", | ||
"@snowpack/plugin-dotenv": "^2.1.0", | ||
"@snowpack/plugin-postcss": "^1.1.0", | ||
"@snowpack/plugin-react-refresh": "^2.4.0", | ||
... | ... | @@ -24,6 +28,7 @@ |
"@types/leaflet": "^1.7.0", | ||
"@types/react": "^17.0.0", | ||
"@types/react-dom": "^17.0.0", | ||
"@types/react-router-dom": "^5.1.7", | ||
"@types/snowpack-env": "^2.3.2", | ||
"autoprefixer": "^10.2.4", | ||
"postcss": "^8.2.6", | ||
... | ... |
src/App.tsx
deleted
100644 → 0
src/Sidebar/SidebarListView.tsx
deleted
100644 → 0
src/components/App.tsx
0 → 100644
src/components/ErrorModal.tsx
0 → 100644
File moved
File moved
src/components/Sidebar/AddPoiForm.tsx
0 → 100644
src/components/Sidebar/SidebarCreateView.tsx
0 → 100644
src/components/Sidebar/SidebarListView.tsx
0 → 100644
src/components/Sidebar/Tag.tsx
0 → 100644
src/components/SwrWrapper.tsx
0 → 100644
src/hooks/index.ts
0 → 100644
Please register or sign in to comment