Merge branch 'feat/filterTags' into 'develop'
Feat/filter tags See merge request software/fabcity-map/fabcity-map-frontend!16
No related branches found
No related tags found
Showing
- codegen.yml 11 additions, 0 deletionscodegen.yml
- package-lock.json 3576 additions, 6373 deletionspackage-lock.json
- package.json 6 additions, 1 deletionpackage.json
- src/components/Form/AddPoiForm.tsx 15 additions, 14 deletionssrc/components/Form/AddPoiForm.tsx
- src/components/Form/TagInput.tsx 2 additions, 3 deletionssrc/components/Form/TagInput.tsx
- src/components/Form/TextAreaInput.tsx 1 addition, 1 deletionsrc/components/Form/TextAreaInput.tsx
- src/components/Form/TextInput.tsx 8 additions, 1 deletionsrc/components/Form/TextInput.tsx
- src/components/Map/Map.tsx 52 additions, 41 deletionssrc/components/Map/Map.tsx
- src/components/Map/MapLayerControl.tsx 39 additions, 0 deletionssrc/components/Map/MapLayerControl.tsx
- src/components/MultiSelect.tsx 36 additions, 0 deletionssrc/components/MultiSelect.tsx
- src/components/Sidebar/SidebarListView.tsx 51 additions, 46 deletionssrc/components/Sidebar/SidebarListView.tsx
- src/generated/graphql.ts 211 additions, 0 deletionssrc/generated/graphql.ts
- src/hooks/useFilteredPoiData.ts 37 additions, 0 deletionssrc/hooks/useFilteredPoiData.ts
- src/hooks/usePoiData.ts 1 addition, 1 deletionsrc/hooks/usePoiData.ts
- src/hooks/useStore.ts 13 additions, 1 deletionsrc/hooks/useStore.ts
- src/index.css 1 addition, 1 deletionsrc/index.css
- src/util/fetcher.ts 2 additions, 1 deletionsrc/util/fetcher.ts
- tailwind.config.js 5 additions, 1 deletiontailwind.config.js
codegen.yml
0 → 100644
This diff is collapsed.
... | ... | @@ -5,7 +5,8 @@ |
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"", | ||
"prettier:lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"", | ||
"eslint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"", | ||
"copy:htaccess": "cp public/.htaccess build/" | ||
"copy:htaccess": "cp public/.htaccess build/", | ||
"generate": "graphql-codegen --config codegen.yml" | ||
}, | ||
"dependencies": { | ||
"@tailwindcss/forms": "^0.3.2", | ||
... | ... | @@ -23,6 +24,10 @@ |
"zustand": "^3.5.1" | ||
}, | ||
"devDependencies": { | ||
"@graphql-codegen/cli": "1.21.4", | ||
"@graphql-codegen/typescript": "1.22.0", | ||
"@graphql-codegen/typescript-graphql-request": "^3.2.0", | ||
"@graphql-codegen/typescript-operations": "1.17.16", | ||
"@snowpack/plugin-dotenv": "^2.1.0", | ||
"@snowpack/plugin-postcss": "^1.3.0", | ||
"@snowpack/plugin-react-refresh": "^2.4.0", | ||
... | ... |
src/components/Map/MapLayerControl.tsx
0 → 100644
src/components/MultiSelect.tsx
0 → 100644
src/generated/graphql.ts
0 → 100644
src/hooks/useFilteredPoiData.ts
0 → 100644
Please register or sign in to comment