-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
87 changed files
with
5,466 additions
and
7,392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
1 change: 0 additions & 1 deletion
1
components/Card/components/ConstructionInfo/ConstructionInfo.constants.ts
This file was deleted.
Oops, something went wrong.
8 changes: 5 additions & 3 deletions
8
components/Card/components/ConstructionInfo/ConstructionInfo.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
components/Card/components/ConstructionInfo/ConstructionInfo.types.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export { DesktopCard } from './DesktopCard/DesktopCard'; | ||
export { MobileCard } from './MobileCard/MobileCard'; | ||
export { MobileCard } from './MobileCard'; |
File renamed without changes.
28 changes: 10 additions & 18 deletions
28
features/Filters/Filters.tsx → components/Filters/Filters.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { Filters } from './Filters'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,49 @@ | ||
export const SOURCES_BY_TYPE = { | ||
osm: { | ||
import { SourceType, SourcesConfig } from 'types/Sources.types'; | ||
|
||
export const SOURCES_BY_TYPE: SourcesConfig = { | ||
[SourceType.osm]: { | ||
name: 'OpenStreetMap', | ||
link: 'https://www.openstreetmap.org/', | ||
data: null, | ||
}, | ||
okn: { | ||
[SourceType.okn]: { | ||
name: 'Объекты культурного наследия Свердловской области', | ||
link: 'https://okn.midural.ru/kategorii/obekty-kulturnogo-naslediya-sverdlovskoy-oblasti', | ||
data: null, | ||
}, | ||
howoldthishouse: { | ||
[SourceType.howoldthishouse]: { | ||
name: 'Карта возраста домов', | ||
link: 'https://how-old-is-this.house/', | ||
data: 'https://how-old-is-this.house/dataset?p=h-ekb', | ||
}, | ||
domaekb: { | ||
[SourceType.domaekb]: { | ||
name: 'Жилые дома Екатеринбурга', | ||
link: 'https://domaekb.ru', | ||
data: null, | ||
}, | ||
mingkh: { | ||
[SourceType.mingkh]: { | ||
name: 'МинЖКХ', | ||
link: 'https://mingkh.ru', | ||
data: null, | ||
}, | ||
ekaterinburgdesign: { | ||
[SourceType.ekaterinburgdesign]: { | ||
name: 'Дизайн-код Ектеринбурга', | ||
link: 'https://ekaterinburg.design', | ||
data: 'https://ekaterinburg.design', | ||
}, | ||
dtp: { | ||
[SourceType.dtp]: { | ||
name: 'Карта ДТП', | ||
link: 'https://dtp-stat.ru/', | ||
data: 'https://dtp-stat.ru/opendata', | ||
}, | ||
ekb_quarter: { | ||
[SourceType.ekb_quarter]: { | ||
name: 'екатеринбург.рф', | ||
link: 'https://екатеринбург.рф/справка/квартальные', | ||
data: null, | ||
}, | ||
design_objects_map: { | ||
[SourceType.design_objects_map]: { | ||
name: 'Карта объектов «Дизайн-кода»', | ||
link: 'https://map.ekaterinburg.design', | ||
data: 'https://map.ekaterinburg.design', | ||
}, | ||
} as const; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.