This commit is contained in:
parent
07696694b3
commit
9e0617e796
|
@ -43,7 +43,7 @@ export class Discoteca {
|
||||||
this.descripcion = desc;
|
this.descripcion = desc;
|
||||||
}
|
}
|
||||||
|
|
||||||
get Descripcion(): string{
|
getDescripcion(): string{
|
||||||
return this.descripcion;
|
return this.descripcion;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,9 +8,10 @@
|
||||||
|
|
||||||
<ion-content [fullscreen]="true">
|
<ion-content [fullscreen]="true">
|
||||||
|
|
||||||
<div class='fotoPerfil'>
|
<div class='main'>
|
||||||
<ion-grid>
|
<ion-grid>
|
||||||
<ion-row>
|
<ion-row>
|
||||||
|
<div class='fotoPerfil'>
|
||||||
<ion-img class="fotoPerfil" width="100%" height="100%" [src]='fotoSrc' alt='barraquinha'></ion-img>
|
<ion-img class="fotoPerfil" width="100%" height="100%" [src]='fotoSrc' alt='barraquinha'></ion-img>
|
||||||
<div class="textoPie">{{nombre}}</div>
|
<div class="textoPie">{{nombre}}</div>
|
||||||
<div class="menuBotones">
|
<div class="menuBotones">
|
||||||
|
@ -30,13 +31,6 @@
|
||||||
<ion-icon name="create"></ion-icon>
|
<ion-icon name="create"></ion-icon>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button mat-menu-item (click)="saveEdit()" label="guardar" [disabled]='editDisabled'>
|
|
||||||
<ion-icon name="save"></ion-icon>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button mat-menu-item (click)="cancelEdit()" [disabled]='editDisabled'>
|
|
||||||
Cancelar
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button mat-menu-item (click)="addEvento()">
|
<button mat-menu-item (click)="addEvento()">
|
||||||
<ion-icon name="add-circle-outline">
|
<ion-icon name="add-circle-outline">
|
||||||
|
@ -45,6 +39,18 @@
|
||||||
</button>
|
</button>
|
||||||
</mat-menu>
|
</mat-menu>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</ion-row>
|
||||||
|
|
||||||
|
<ion-row>
|
||||||
|
<div class="botonesHidden">
|
||||||
|
<button (click)="saveEdit()" label="guardar" [disabled]='editDisabled' id="botonesHidden1">
|
||||||
|
<ion-icon name="save"></ion-icon>
|
||||||
|
</button>
|
||||||
|
<button (click)="cancelEdit()" [disabled]='editDisabled' id="botonesHidden2">
|
||||||
|
Cancelar
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</ion-row>
|
</ion-row>
|
||||||
|
|
||||||
|
|
||||||
|
@ -57,9 +63,17 @@
|
||||||
<div [contentEditable]='editEnabled'>{{localizacion}}</div>
|
<div [contentEditable]='editEnabled'>{{localizacion}}</div>
|
||||||
</div>
|
</div>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
|
|
||||||
<ion-col>
|
<ion-col>
|
||||||
<div>{{descripcion}}</div>
|
<div>
|
||||||
|
<mat-card>
|
||||||
|
<mat-card-header>
|
||||||
|
Descripción
|
||||||
|
</mat-card-header>
|
||||||
|
<mat-card-content>
|
||||||
|
{{descripcion}}
|
||||||
|
</mat-card-content>
|
||||||
|
</mat-card>
|
||||||
|
</div>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
</ion-row>
|
</ion-row>
|
||||||
|
|
||||||
|
|
|
@ -6,16 +6,21 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
*{
|
*{
|
||||||
padding: 5px;
|
padding: 10px;
|
||||||
display: block;
|
display: block;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fotoPerfil{
|
.main{
|
||||||
text-align: end;
|
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
max-height: auto;
|
max-height: auto;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fotoPerfil{
|
||||||
|
text-align: end;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.textoPie{
|
.textoPie{
|
||||||
|
@ -35,6 +40,8 @@
|
||||||
float: left;
|
float: left;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
text-align: right;
|
||||||
|
padding-right: 50px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,9 +50,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.galeria{
|
.galeria{
|
||||||
|
text-align: center;
|
||||||
max-width: 300px;
|
padding: 30px;
|
||||||
max-height: auto;
|
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,6 +82,17 @@
|
||||||
height: 200px;
|
height: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mat-menu{
|
||||||
|
position: relative;
|
||||||
|
margin: inherit;
|
||||||
|
color: pink;
|
||||||
|
}
|
||||||
|
|
||||||
|
mat-card-header{
|
||||||
|
text-align: right;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
button{
|
button{
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
@ -89,7 +106,7 @@
|
||||||
.menuBotones{
|
.menuBotones{
|
||||||
position: relative;
|
position: relative;
|
||||||
float: left;
|
float: left;
|
||||||
bottom: 40px;
|
bottom: 60px;
|
||||||
left: 20px;
|
left: 20px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@ export class PerfilDiscotecaPage implements OnInit {
|
||||||
nombre: string;
|
nombre: string;
|
||||||
telefono: number;
|
telefono: number;
|
||||||
localizacion: string;
|
localizacion: string;
|
||||||
|
descripcion: string;
|
||||||
fotoSrc: string;
|
fotoSrc: string;
|
||||||
fotoLoaded: string;
|
fotoLoaded: string;
|
||||||
someURL: string;
|
someURL: string;
|
||||||
|
@ -48,6 +49,7 @@ export class PerfilDiscotecaPage implements OnInit {
|
||||||
this.getTelefono();
|
this.getTelefono();
|
||||||
this.getLocalizacion();
|
this.getLocalizacion();
|
||||||
this.getEventos();
|
this.getEventos();
|
||||||
|
this.getDescripcion();
|
||||||
this.editDisabled="true";
|
this.editDisabled="true";
|
||||||
this.editEnabled="false";
|
this.editEnabled="false";
|
||||||
this.fotoSrc = '../assets/img/barraca.jpg';
|
this.fotoSrc = '../assets/img/barraca.jpg';
|
||||||
|
@ -73,6 +75,10 @@ export class PerfilDiscotecaPage implements OnInit {
|
||||||
this.eventos = this.tab1Service.getEventos();
|
this.eventos = this.tab1Service.getEventos();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getDescripcion(): void{
|
||||||
|
this.descripcion = this.tab1Service.getDescripcion();
|
||||||
|
}
|
||||||
|
|
||||||
cargarImagen(){
|
cargarImagen(){
|
||||||
this.fotoSrc = this.someURL;
|
this.fotoSrc = this.someURL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,7 @@ export class Tab1Service implements OnInit{
|
||||||
this.discoteca.setNombre('Barraca');
|
this.discoteca.setNombre('Barraca');
|
||||||
this.discoteca.setTelefono(666666666);
|
this.discoteca.setTelefono(666666666);
|
||||||
this.discoteca.setLocalizacion('Calle del Barquillo');
|
this.discoteca.setLocalizacion('Calle del Barquillo');
|
||||||
|
this.discoteca.setDescripcion('Barraca es una discoteca inaugurada en 1965 que tuvo su gran auge en los años 80, cuando se consolidó como la discoteca de mayor importancia de la movida valenciana, durante la conocida Ruta Destroy.');
|
||||||
this.galeria = [];
|
this.galeria = [];
|
||||||
this.initEventos();
|
this.initEventos();
|
||||||
this.editarEvento = false;
|
this.editarEvento = false;
|
||||||
|
@ -52,6 +53,10 @@ export class Tab1Service implements OnInit{
|
||||||
return this.discoteca.getLocalizacion();
|
return this.discoteca.getLocalizacion();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getDescripcion(): string{
|
||||||
|
return this.discoteca.getDescripcion();
|
||||||
|
}
|
||||||
|
|
||||||
getEventos(): Evento[]{
|
getEventos(): Evento[]{
|
||||||
return this.eventos;
|
return this.eventos;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue