├── .env.sample ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── new_data_request.yaml │ ├── pm-task-request.md │ └── refactor-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── nodejs.yml │ └── notice-yarn-changes.yml ├── .gitignore ├── .hintrc ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc.js ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── docs ├── STORY-BEHIND.md └── images │ ├── afetharita.png │ ├── afetharita2.png │ ├── afetharita3.png │ ├── afetharita4.png │ └── discord.png ├── next-env.d.ts ├── next-i18next.config.js ├── next.config.js ├── package.json ├── public ├── cerez.docx ├── cerez.pdf ├── favicon.ico ├── gizlilik.docx ├── gizlilik.pdf ├── icons │ ├── afetBilgiIcon.svg │ ├── base-og-img.png │ ├── circular.png │ ├── depremIOIcon.svg │ ├── depremyardımIcon.svg │ ├── discordIcon.svg │ ├── logo-192x192.png │ ├── logo-384x384.png │ ├── logo-512x512.png │ └── stack-line.svg ├── images │ ├── Group 4.png │ ├── ahbap.png │ ├── bubblemap.png │ ├── default.png │ ├── deprem-ihtiyac.png │ ├── eczane.png │ ├── food.png │ ├── heatmap.png │ ├── hospitals.png │ ├── icon-1.png │ ├── icon-10.png │ ├── icon-11.png │ ├── icon-12.png │ ├── icon-13.png │ ├── icon-14.png │ ├── icon-15.png │ ├── icon-16.png │ ├── icon-2.png │ ├── icon-21.png │ ├── icon-3.png │ ├── icon-4.png │ ├── icon-5.png │ ├── icon-6.png │ ├── icon-8.png │ ├── icon-9.png │ ├── icon-ahbap.png │ ├── icon-babala.png │ ├── icon-deprem.io.png │ ├── icon-enkaz.png │ ├── icon-generic.png │ ├── icon-twitter.png │ ├── icon-yardim.png │ ├── maintenance.svg │ ├── markers.png │ ├── safe-places.png │ ├── sahra-mutfak.png │ ├── satellite.png │ ├── teleteyit.png │ ├── terrain.png │ └── uydu.png ├── leaflet │ └── images │ │ ├── layers-2x.png │ │ ├── layers-2x.webp │ │ ├── layers.png │ │ ├── layers.webp │ │ ├── marker-icon-2x.png │ │ ├── marker-icon-2x.webp │ │ ├── marker-icon.png │ │ ├── marker-icon.webp │ │ ├── marker-shadow.png │ │ └── marker-shadow.webp ├── locales │ ├── en │ │ ├── common.json │ │ ├── error.json │ │ └── home.json │ └── tr │ │ ├── common.json │ │ ├── error.json │ │ └── home.json ├── logo.svg ├── manifest.json ├── next.svg ├── robots.txt ├── thirteen.svg └── vercel.svg ├── src ├── components │ ├── Attributions │ │ ├── Attributions.module.css │ │ └── Attributions.tsx │ ├── Button │ │ ├── Cooldown.tsx │ │ └── Filter.tsx │ ├── DataSourcesInfo │ │ ├── DataSourcesInfo.module.css │ │ └── DataSourcesInfo.tsx │ ├── DoubleClickStopPropagation.tsx │ ├── Drawer │ │ ├── Drawer.module.css │ │ ├── NewDrawer.tsx │ │ ├── components │ │ │ ├── LayerButton.module.css │ │ │ ├── LayerButton.tsx │ │ │ ├── LayerContent.tsx │ │ │ ├── MapButtons.tsx │ │ │ ├── OtherRecordsInSameLocation.tsx │ │ │ └── channels │ │ │ │ ├── DrawerContent.tsx │ │ │ │ ├── FeedChannelGeneric.tsx │ │ │ │ ├── FeedChannelPharmacy.tsx │ │ │ │ ├── FeedChannelSafePlaces.tsx │ │ │ │ ├── FeedChannelSatellite.tsx │ │ │ │ ├── FeedChannelTeleteyit.tsx │ │ │ │ ├── FeedContent.tsx │ │ │ │ ├── babala │ │ │ │ ├── FeedChannelBabala.module.css │ │ │ │ └── FeedChannelBabala.tsx │ │ │ │ ├── drawerContent.module.css │ │ │ │ └── twitter │ │ │ │ ├── EmbedTweet.tsx │ │ │ │ ├── FeedChannelAhbap.tsx │ │ │ │ ├── FeedChannelTwitter.module.css │ │ │ │ ├── FeedChannelTwitter.tsx │ │ │ │ └── PlaceholderTweet.tsx │ │ └── types.ts │ ├── ErrorBoundary │ │ └── index.tsx │ ├── Filter │ │ ├── Filter.tsx │ │ ├── FilterControl.tsx │ │ └── FilterHeader.tsx │ ├── HeadWithMeta │ │ ├── HeadWithMeta.constants.tsx │ │ └── HeadWithMeta.tsx │ ├── LocaleSwitch │ │ └── LocaleSwitch.tsx │ ├── MTMLView │ │ ├── MTMLView.tsx │ │ └── types.ts │ ├── Map │ │ ├── Cluster │ │ │ ├── ClusterStyle.tsx │ │ │ ├── GenericClusterGroup.tsx │ │ │ └── MapMarker.module.css │ │ ├── Content.tsx │ │ ├── Controls │ │ │ ├── ButtonControl.tsx │ │ │ ├── Control.tsx │ │ │ ├── LayerButton.tsx │ │ │ └── index.tsx │ │ ├── Dynamic.tsx │ │ ├── LayerControl.tsx │ │ ├── Map.module.css │ │ ├── Map.tsx │ │ └── utils.ts │ ├── Snackbar │ │ ├── Snackbar.tsx │ │ ├── SnackbarCloseButton.tsx │ │ └── useSnackbar.ts │ ├── Tag │ │ └── Tag.types.ts │ └── UserGuide │ │ ├── UserGuide.tsx │ │ └── data.tsx ├── errors │ └── index.ts ├── features │ └── location-categories │ │ ├── category-filters.ts │ │ ├── disaster-victims │ │ ├── FilterDisasterVictim.tsx │ │ ├── useDisasterVictimFilter.ts │ │ └── useDisasterVictimsData.ts │ │ ├── help-requests │ │ ├── FilterHelpRequest.tsx │ │ ├── useHelpRequestFilter.ts │ │ └── useHelpRequestsData.ts │ │ ├── index.ts │ │ ├── services │ │ ├── FilterService.tsx │ │ ├── useServiceFilter.ts │ │ └── useServicesData.ts │ │ └── types.ts ├── hooks │ ├── useCopyToClipboard.ts │ ├── useFetchLocations.ts │ ├── useLocation.ts │ ├── useMapClickHandlers.ts │ ├── useMapEvents.ts │ ├── usePersistentLangauge.ts │ ├── usePrevious.ts │ ├── useVerifiedLocations.tsx │ └── useWindowSize.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ └── index.tsx ├── samples │ └── areasResponse.json ├── services │ ├── ApiClient.ts │ ├── dataFetcher.ts │ ├── location.ts │ └── responses │ │ ├── ahbap.ts │ │ ├── babala.ts │ │ ├── depremio.ts │ │ ├── food.ts │ │ ├── hospital.ts │ │ ├── index.ts │ │ ├── pharmacy.ts │ │ ├── safe-place.ts │ │ ├── satellite.ts │ │ ├── teleteyit.ts │ │ ├── teyit-enkaz.ts │ │ ├── teyit-yardim.ts │ │ └── twitter.ts ├── stores │ ├── areasStore.ts │ ├── commonStore.ts │ ├── errorStore.ts │ ├── loadingStore.ts │ ├── mapGeographyStore.ts │ ├── mapStore.ts │ ├── singletonsStore.ts │ ├── urlStore.ts │ └── visitedMarkersStore.ts ├── styles │ ├── Error.module.css │ └── global.css ├── types │ ├── dirty-json.d.ts │ └── index.ts └── utils │ ├── constants.ts │ ├── cookie.ts │ ├── createEmotionCache.ts │ ├── date.ts │ ├── filterTime.ts │ ├── geometry.ts │ ├── getFetchAreaBounds.ts │ ├── helpers.ts │ ├── isValidReasons.ts │ ├── theme.ts │ ├── urls.ts │ └── zustand.ts ├── tsconfig.json └── yarn.lock /.env.sample: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_BASE_URL=https://apigo.afetharita.com -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | sw.js 2 | workbox-588899ac.js 3 | public -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_data_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.github/ISSUE_TEMPLATE/new_data_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pm-task-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.github/ISSUE_TEMPLATE/pm-task-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.github/ISSUE_TEMPLATE/refactor-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/notice-yarn-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.github/workflows/notice-yarn-changes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.hintrc -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .yarn 2 | .next 3 | dist 4 | node_modules 5 | package.json 6 | .github -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/STORY-BEHIND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/docs/STORY-BEHIND.md -------------------------------------------------------------------------------- /docs/images/afetharita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/docs/images/afetharita.png -------------------------------------------------------------------------------- /docs/images/afetharita2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/docs/images/afetharita2.png -------------------------------------------------------------------------------- /docs/images/afetharita3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/docs/images/afetharita3.png -------------------------------------------------------------------------------- /docs/images/afetharita4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/docs/images/afetharita4.png -------------------------------------------------------------------------------- /docs/images/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/docs/images/discord.png -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/next-i18next.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/cerez.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/cerez.docx -------------------------------------------------------------------------------- /public/cerez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/cerez.pdf -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/gizlilik.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/gizlilik.docx -------------------------------------------------------------------------------- /public/gizlilik.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/gizlilik.pdf -------------------------------------------------------------------------------- /public/icons/afetBilgiIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/afetBilgiIcon.svg -------------------------------------------------------------------------------- /public/icons/base-og-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/base-og-img.png -------------------------------------------------------------------------------- /public/icons/circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/circular.png -------------------------------------------------------------------------------- /public/icons/depremIOIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/depremIOIcon.svg -------------------------------------------------------------------------------- /public/icons/depremyardımIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/depremyardımIcon.svg -------------------------------------------------------------------------------- /public/icons/discordIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/discordIcon.svg -------------------------------------------------------------------------------- /public/icons/logo-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/logo-192x192.png -------------------------------------------------------------------------------- /public/icons/logo-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/logo-384x384.png -------------------------------------------------------------------------------- /public/icons/logo-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/logo-512x512.png -------------------------------------------------------------------------------- /public/icons/stack-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/icons/stack-line.svg -------------------------------------------------------------------------------- /public/images/Group 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/Group 4.png -------------------------------------------------------------------------------- /public/images/ahbap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/ahbap.png -------------------------------------------------------------------------------- /public/images/bubblemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/bubblemap.png -------------------------------------------------------------------------------- /public/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/default.png -------------------------------------------------------------------------------- /public/images/deprem-ihtiyac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/deprem-ihtiyac.png -------------------------------------------------------------------------------- /public/images/eczane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/eczane.png -------------------------------------------------------------------------------- /public/images/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/food.png -------------------------------------------------------------------------------- /public/images/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/heatmap.png -------------------------------------------------------------------------------- /public/images/hospitals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/hospitals.png -------------------------------------------------------------------------------- /public/images/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-1.png -------------------------------------------------------------------------------- /public/images/icon-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-10.png -------------------------------------------------------------------------------- /public/images/icon-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-11.png -------------------------------------------------------------------------------- /public/images/icon-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-12.png -------------------------------------------------------------------------------- /public/images/icon-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-13.png -------------------------------------------------------------------------------- /public/images/icon-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-14.png -------------------------------------------------------------------------------- /public/images/icon-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-15.png -------------------------------------------------------------------------------- /public/images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-16.png -------------------------------------------------------------------------------- /public/images/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-2.png -------------------------------------------------------------------------------- /public/images/icon-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-21.png -------------------------------------------------------------------------------- /public/images/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-3.png -------------------------------------------------------------------------------- /public/images/icon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-4.png -------------------------------------------------------------------------------- /public/images/icon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-5.png -------------------------------------------------------------------------------- /public/images/icon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-6.png -------------------------------------------------------------------------------- /public/images/icon-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-8.png -------------------------------------------------------------------------------- /public/images/icon-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-9.png -------------------------------------------------------------------------------- /public/images/icon-ahbap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-ahbap.png -------------------------------------------------------------------------------- /public/images/icon-babala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-babala.png -------------------------------------------------------------------------------- /public/images/icon-deprem.io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-deprem.io.png -------------------------------------------------------------------------------- /public/images/icon-enkaz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-enkaz.png -------------------------------------------------------------------------------- /public/images/icon-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-generic.png -------------------------------------------------------------------------------- /public/images/icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-twitter.png -------------------------------------------------------------------------------- /public/images/icon-yardim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/icon-yardim.png -------------------------------------------------------------------------------- /public/images/maintenance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/maintenance.svg -------------------------------------------------------------------------------- /public/images/markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/markers.png -------------------------------------------------------------------------------- /public/images/safe-places.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/safe-places.png -------------------------------------------------------------------------------- /public/images/sahra-mutfak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/sahra-mutfak.png -------------------------------------------------------------------------------- /public/images/satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/satellite.png -------------------------------------------------------------------------------- /public/images/teleteyit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/teleteyit.png -------------------------------------------------------------------------------- /public/images/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/terrain.png -------------------------------------------------------------------------------- /public/images/uydu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/images/uydu.png -------------------------------------------------------------------------------- /public/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /public/leaflet/images/layers-2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/layers-2x.webp -------------------------------------------------------------------------------- /public/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/layers.png -------------------------------------------------------------------------------- /public/leaflet/images/layers.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/layers.webp -------------------------------------------------------------------------------- /public/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /public/leaflet/images/marker-icon-2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/marker-icon-2x.webp -------------------------------------------------------------------------------- /public/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /public/leaflet/images/marker-icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/marker-icon.webp -------------------------------------------------------------------------------- /public/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /public/leaflet/images/marker-shadow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/leaflet/images/marker-shadow.webp -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/locales/en/common.json -------------------------------------------------------------------------------- /public/locales/en/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/locales/en/error.json -------------------------------------------------------------------------------- /public/locales/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/locales/en/home.json -------------------------------------------------------------------------------- /public/locales/tr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/locales/tr/common.json -------------------------------------------------------------------------------- /public/locales/tr/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/locales/tr/error.json -------------------------------------------------------------------------------- /public/locales/tr/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/locales/tr/home.json -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/Attributions/Attributions.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Attributions/Attributions.module.css -------------------------------------------------------------------------------- /src/components/Attributions/Attributions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Attributions/Attributions.tsx -------------------------------------------------------------------------------- /src/components/Button/Cooldown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Button/Cooldown.tsx -------------------------------------------------------------------------------- /src/components/Button/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Button/Filter.tsx -------------------------------------------------------------------------------- /src/components/DataSourcesInfo/DataSourcesInfo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/DataSourcesInfo/DataSourcesInfo.module.css -------------------------------------------------------------------------------- /src/components/DataSourcesInfo/DataSourcesInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/DataSourcesInfo/DataSourcesInfo.tsx -------------------------------------------------------------------------------- /src/components/DoubleClickStopPropagation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/DoubleClickStopPropagation.tsx -------------------------------------------------------------------------------- /src/components/Drawer/Drawer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/Drawer.module.css -------------------------------------------------------------------------------- /src/components/Drawer/NewDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/NewDrawer.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/LayerButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/LayerButton.module.css -------------------------------------------------------------------------------- /src/components/Drawer/components/LayerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/LayerButton.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/LayerContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/LayerContent.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/MapButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/MapButtons.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/OtherRecordsInSameLocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/OtherRecordsInSameLocation.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/DrawerContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/DrawerContent.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/FeedChannelGeneric.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/FeedChannelGeneric.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/FeedChannelPharmacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/FeedChannelPharmacy.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/FeedChannelSafePlaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/FeedChannelSafePlaces.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/FeedChannelSatellite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/FeedChannelSatellite.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/FeedChannelTeleteyit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/FeedChannelTeleteyit.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/FeedContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/FeedContent.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/babala/FeedChannelBabala.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/babala/FeedChannelBabala.module.css -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/babala/FeedChannelBabala.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/babala/FeedChannelBabala.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/drawerContent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/drawerContent.module.css -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/twitter/EmbedTweet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/twitter/EmbedTweet.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/twitter/FeedChannelAhbap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/twitter/FeedChannelAhbap.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/twitter/FeedChannelTwitter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/twitter/FeedChannelTwitter.module.css -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/twitter/FeedChannelTwitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/twitter/FeedChannelTwitter.tsx -------------------------------------------------------------------------------- /src/components/Drawer/components/channels/twitter/PlaceholderTweet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/components/channels/twitter/PlaceholderTweet.tsx -------------------------------------------------------------------------------- /src/components/Drawer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Drawer/types.ts -------------------------------------------------------------------------------- /src/components/ErrorBoundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/ErrorBoundary/index.tsx -------------------------------------------------------------------------------- /src/components/Filter/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Filter/Filter.tsx -------------------------------------------------------------------------------- /src/components/Filter/FilterControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Filter/FilterControl.tsx -------------------------------------------------------------------------------- /src/components/Filter/FilterHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Filter/FilterHeader.tsx -------------------------------------------------------------------------------- /src/components/HeadWithMeta/HeadWithMeta.constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/HeadWithMeta/HeadWithMeta.constants.tsx -------------------------------------------------------------------------------- /src/components/HeadWithMeta/HeadWithMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/HeadWithMeta/HeadWithMeta.tsx -------------------------------------------------------------------------------- /src/components/LocaleSwitch/LocaleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/LocaleSwitch/LocaleSwitch.tsx -------------------------------------------------------------------------------- /src/components/MTMLView/MTMLView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/MTMLView/MTMLView.tsx -------------------------------------------------------------------------------- /src/components/MTMLView/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/MTMLView/types.ts -------------------------------------------------------------------------------- /src/components/Map/Cluster/ClusterStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Cluster/ClusterStyle.tsx -------------------------------------------------------------------------------- /src/components/Map/Cluster/GenericClusterGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Cluster/GenericClusterGroup.tsx -------------------------------------------------------------------------------- /src/components/Map/Cluster/MapMarker.module.css: -------------------------------------------------------------------------------- 1 | .marker_icon__visited { 2 | filter: grayscale(1); 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Map/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Content.tsx -------------------------------------------------------------------------------- /src/components/Map/Controls/ButtonControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Controls/ButtonControl.tsx -------------------------------------------------------------------------------- /src/components/Map/Controls/Control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Controls/Control.tsx -------------------------------------------------------------------------------- /src/components/Map/Controls/LayerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Controls/LayerButton.tsx -------------------------------------------------------------------------------- /src/components/Map/Controls/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Controls/index.tsx -------------------------------------------------------------------------------- /src/components/Map/Dynamic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Dynamic.tsx -------------------------------------------------------------------------------- /src/components/Map/LayerControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/LayerControl.tsx -------------------------------------------------------------------------------- /src/components/Map/Map.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Map.module.css -------------------------------------------------------------------------------- /src/components/Map/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/Map.tsx -------------------------------------------------------------------------------- /src/components/Map/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Map/utils.ts -------------------------------------------------------------------------------- /src/components/Snackbar/Snackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Snackbar/Snackbar.tsx -------------------------------------------------------------------------------- /src/components/Snackbar/SnackbarCloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Snackbar/SnackbarCloseButton.tsx -------------------------------------------------------------------------------- /src/components/Snackbar/useSnackbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Snackbar/useSnackbar.ts -------------------------------------------------------------------------------- /src/components/Tag/Tag.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/Tag/Tag.types.ts -------------------------------------------------------------------------------- /src/components/UserGuide/UserGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/UserGuide/UserGuide.tsx -------------------------------------------------------------------------------- /src/components/UserGuide/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/components/UserGuide/data.tsx -------------------------------------------------------------------------------- /src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/errors/index.ts -------------------------------------------------------------------------------- /src/features/location-categories/category-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/category-filters.ts -------------------------------------------------------------------------------- /src/features/location-categories/disaster-victims/FilterDisasterVictim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/disaster-victims/FilterDisasterVictim.tsx -------------------------------------------------------------------------------- /src/features/location-categories/disaster-victims/useDisasterVictimFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/disaster-victims/useDisasterVictimFilter.ts -------------------------------------------------------------------------------- /src/features/location-categories/disaster-victims/useDisasterVictimsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/disaster-victims/useDisasterVictimsData.ts -------------------------------------------------------------------------------- /src/features/location-categories/help-requests/FilterHelpRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/help-requests/FilterHelpRequest.tsx -------------------------------------------------------------------------------- /src/features/location-categories/help-requests/useHelpRequestFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/help-requests/useHelpRequestFilter.ts -------------------------------------------------------------------------------- /src/features/location-categories/help-requests/useHelpRequestsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/help-requests/useHelpRequestsData.ts -------------------------------------------------------------------------------- /src/features/location-categories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/index.ts -------------------------------------------------------------------------------- /src/features/location-categories/services/FilterService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/services/FilterService.tsx -------------------------------------------------------------------------------- /src/features/location-categories/services/useServiceFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/services/useServiceFilter.ts -------------------------------------------------------------------------------- /src/features/location-categories/services/useServicesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/services/useServicesData.ts -------------------------------------------------------------------------------- /src/features/location-categories/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/features/location-categories/types.ts -------------------------------------------------------------------------------- /src/hooks/useCopyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/useCopyToClipboard.ts -------------------------------------------------------------------------------- /src/hooks/useFetchLocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/useFetchLocations.ts -------------------------------------------------------------------------------- /src/hooks/useLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/useLocation.ts -------------------------------------------------------------------------------- /src/hooks/useMapClickHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/useMapClickHandlers.ts -------------------------------------------------------------------------------- /src/hooks/useMapEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/useMapEvents.ts -------------------------------------------------------------------------------- /src/hooks/usePersistentLangauge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/usePersistentLangauge.ts -------------------------------------------------------------------------------- /src/hooks/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/usePrevious.ts -------------------------------------------------------------------------------- /src/hooks/useVerifiedLocations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/useVerifiedLocations.tsx -------------------------------------------------------------------------------- /src/hooks/useWindowSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/hooks/useWindowSize.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/pages/_error.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/samples/areasResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/samples/areasResponse.json -------------------------------------------------------------------------------- /src/services/ApiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/ApiClient.ts -------------------------------------------------------------------------------- /src/services/dataFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/dataFetcher.ts -------------------------------------------------------------------------------- /src/services/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/location.ts -------------------------------------------------------------------------------- /src/services/responses/ahbap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/ahbap.ts -------------------------------------------------------------------------------- /src/services/responses/babala.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/babala.ts -------------------------------------------------------------------------------- /src/services/responses/depremio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/depremio.ts -------------------------------------------------------------------------------- /src/services/responses/food.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/food.ts -------------------------------------------------------------------------------- /src/services/responses/hospital.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/hospital.ts -------------------------------------------------------------------------------- /src/services/responses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/index.ts -------------------------------------------------------------------------------- /src/services/responses/pharmacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/pharmacy.ts -------------------------------------------------------------------------------- /src/services/responses/safe-place.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/safe-place.ts -------------------------------------------------------------------------------- /src/services/responses/satellite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/satellite.ts -------------------------------------------------------------------------------- /src/services/responses/teleteyit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/teleteyit.ts -------------------------------------------------------------------------------- /src/services/responses/teyit-enkaz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/teyit-enkaz.ts -------------------------------------------------------------------------------- /src/services/responses/teyit-yardim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/teyit-yardim.ts -------------------------------------------------------------------------------- /src/services/responses/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/services/responses/twitter.ts -------------------------------------------------------------------------------- /src/stores/areasStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/areasStore.ts -------------------------------------------------------------------------------- /src/stores/commonStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/commonStore.ts -------------------------------------------------------------------------------- /src/stores/errorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/errorStore.ts -------------------------------------------------------------------------------- /src/stores/loadingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/loadingStore.ts -------------------------------------------------------------------------------- /src/stores/mapGeographyStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/mapGeographyStore.ts -------------------------------------------------------------------------------- /src/stores/mapStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/mapStore.ts -------------------------------------------------------------------------------- /src/stores/singletonsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/singletonsStore.ts -------------------------------------------------------------------------------- /src/stores/urlStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/urlStore.ts -------------------------------------------------------------------------------- /src/stores/visitedMarkersStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/stores/visitedMarkersStore.ts -------------------------------------------------------------------------------- /src/styles/Error.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/styles/Error.module.css -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/types/dirty-json.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/types/dirty-json.d.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/cookie.ts -------------------------------------------------------------------------------- /src/utils/createEmotionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/createEmotionCache.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/filterTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/filterTime.ts -------------------------------------------------------------------------------- /src/utils/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/geometry.ts -------------------------------------------------------------------------------- /src/utils/getFetchAreaBounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/getFetchAreaBounds.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/isValidReasons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/isValidReasons.ts -------------------------------------------------------------------------------- /src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/theme.ts -------------------------------------------------------------------------------- /src/utils/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/urls.ts -------------------------------------------------------------------------------- /src/utils/zustand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/src/utils/zustand.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-yardim-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------