-
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.
feat: added individual photo viewer in architect individual view
- Loading branch information
Showing
9 changed files
with
99 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
const cityDict = [ | ||
"RM - Metropolitana de Santiago", | ||
"I - Tarapacá", | ||
"II - Antofagasta", | ||
"III - Atacama", | ||
"IV - Coquimbo", | ||
"V - Valparaíso", | ||
"VI - Libertador General Bernardo O'Higgins", | ||
"VII - Maule", | ||
"VIII - Biobío", | ||
"IX - La Araucanía", | ||
"X - Los Lagos", | ||
"XI - Aisén del G. Carlos Ibáñez del Campo", | ||
"XII - Magallanes y de la Antártica Chilena", | ||
"XIV - Los Ríos", | ||
"XV - Arica y Parinacota", | ||
"XVI - Ñuble", | ||
]; |
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,6 @@ | ||
const experienceDict = [ | ||
{ value: 0, label: "Estamos empezando!" }, | ||
{ value: 1, label: "Entre 1 y 5 años" }, | ||
{ value: 2, label: "Entre 5 y 10 años" }, | ||
{ value: 3, label: "Más de 10 años" }, | ||
]; |
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,7 @@ | ||
const scalesDict = [ | ||
{ value: 1, label: "Pequeña"}, | ||
{ value: 2, label: "Media Baja"}, | ||
{ value: 3, label: "Media"}, | ||
{ value: 4, label: "Media Alta"}, | ||
{ value: 5, label: "Gran"} | ||
]; |
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
type ArchitectData = { | ||
id: number; | ||
email: string; | ||
phone: string; | ||
name: string; | ||
city: string; | ||
address: string; | ||
website: string; | ||
experience_id: number; | ||
} | ||
|
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,5 @@ | ||
type ImageUrlData = { | ||
id: number; | ||
url: string; | ||
architect_id: number; | ||
} |
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,4 @@ | ||
type ScaleData = { | ||
scale_id: number; | ||
architect_id: number; | ||
} |