BackEnd #3
|
@ -10,6 +10,13 @@ export class Discoteca {
|
||||||
private eventos: Evento[];
|
private eventos: Evento[];
|
||||||
private descripcion: string;
|
private descripcion: string;
|
||||||
|
|
||||||
|
setId(id: number): void{
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
getId(): number{
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
setNombre(nombre: string): void{
|
setNombre(nombre: string): void{
|
||||||
this.nombre = nombre;
|
this.nombre = nombre;
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
|
import { Time } from "@angular/common";
|
||||||
|
|
||||||
export class Evento {
|
export class Evento {
|
||||||
private id: number;
|
private id: number;
|
||||||
nombre: string;
|
nombre: string;
|
||||||
localizacion: string;
|
localizacion: string;
|
||||||
fecha: Date;
|
fecha: Date;
|
||||||
dia: string;
|
dia: string;
|
||||||
hora: string;
|
hora: Time;
|
||||||
descripcion: string;
|
descripcion: string;
|
||||||
precio1: number;
|
precio1: number;
|
||||||
precio2: number;
|
precio2: number;
|
||||||
|
@ -49,11 +51,11 @@ export class Evento {
|
||||||
return this.dia;
|
return this.dia;
|
||||||
}
|
}
|
||||||
|
|
||||||
setHora(fecha: Date): void{
|
setHora(time: Time): void{
|
||||||
this.hora = fecha.getHours()+":"+fecha.getMinutes();
|
this.hora = time;
|
||||||
}
|
}
|
||||||
|
|
||||||
getHora(): string{
|
getHora(): Time{
|
||||||
return this.hora;
|
return this.hora;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
export interface DiscotecaI {
|
export interface DiscotecaI {
|
||||||
discotecaId: number,
|
discotecaID: number,
|
||||||
nombre: string,
|
nombre: string,
|
||||||
telefono: number,
|
telefono: number,
|
||||||
localizacion: string
|
localizacion: string
|
||||||
|
|
|
@ -1,2 +1,14 @@
|
||||||
|
import { Time } from "@angular/common";
|
||||||
|
|
||||||
export interface Eventoi {
|
export interface Eventoi {
|
||||||
|
|
||||||
|
discotecaID: number,
|
||||||
|
nombre: string,
|
||||||
|
localizacion: string,
|
||||||
|
fecha: Date,
|
||||||
|
hora: Time,
|
||||||
|
descripcion: string,
|
||||||
|
precio1: number,
|
||||||
|
precio2: number,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<label>
|
<label>
|
||||||
Fecha:
|
Fecha:
|
||||||
<ion-datetime displayFormat="DD/MM, HH:mm"placeholder="Elegir Fecha" formControlName="fecha"></ion-datetime>
|
<ion-datetime displayFormat="YYYY/DD/MM"placeholder="Elegir Fecha" formControlName="fecha"></ion-datetime>
|
||||||
</label>
|
</label>
|
||||||
<span
|
<span
|
||||||
*ngIf="fecha.errors.required && submitted">
|
*ngIf="fecha.errors.required && submitted">
|
||||||
|
@ -29,6 +29,17 @@
|
||||||
</span>
|
</span>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
|
||||||
|
<ion-item>
|
||||||
|
<label>
|
||||||
|
Hora
|
||||||
|
<ion-datetime displayFormat="HH:MM"placeholder="Elegir Hora" formControlName="hora"></ion-datetime>
|
||||||
|
</label>
|
||||||
|
<span
|
||||||
|
*ngIf="hora.errors.required && submitted">
|
||||||
|
Tu evento necesita una hora
|
||||||
|
</span>
|
||||||
|
</ion-item>
|
||||||
|
|
||||||
|
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<label>
|
<label>
|
||||||
|
|
|
@ -3,6 +3,9 @@ import { FormControl, FormGroup, Validators } from '@angular/forms';
|
||||||
import { Tab1Service } from '../tab1/tab1.service';
|
import { Tab1Service } from '../tab1/tab1.service';
|
||||||
import { Evento } from '../evento';
|
import { Evento } from '../evento';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
|
import { Eventoi } from '../interfaces/eventoi';
|
||||||
|
import { DatePipe } from '@angular/common'
|
||||||
|
import { ViewEventoPageRoutingModule } from '../view-evento/view-evento-routing.module';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-prompt-evento',
|
selector: 'app-prompt-evento',
|
||||||
|
@ -10,17 +13,17 @@ import { Router } from '@angular/router';
|
||||||
styleUrls: ['./prompt-evento.page.scss'],
|
styleUrls: ['./prompt-evento.page.scss'],
|
||||||
})
|
})
|
||||||
export class PromptEventoPage implements OnInit{
|
export class PromptEventoPage implements OnInit{
|
||||||
|
|
||||||
submitted = false;
|
submitted = false;
|
||||||
eventoForm = new FormGroup({
|
eventoForm = new FormGroup({
|
||||||
nombre: new FormControl('', Validators.required),
|
nombre: new FormControl(null, Validators.required),
|
||||||
fecha: new FormControl('', Validators.required),
|
fecha: new FormControl(null, Validators.required),
|
||||||
precio1: new FormControl('', Validators.required),
|
hora: new FormControl(null, Validators.required),
|
||||||
precio2: new FormControl('', Validators.required),
|
precio1: new FormControl(null, Validators.required),
|
||||||
descripcion: new FormControl('', Validators.required),
|
precio2: new FormControl(null, Validators.required),
|
||||||
|
descripcion: new FormControl(null, Validators.required),
|
||||||
});
|
});
|
||||||
|
|
||||||
eventos: Evento[];
|
eventos: Eventoi[];
|
||||||
|
|
||||||
constructor(private tab1Service: Tab1Service, private router: Router) {
|
constructor(private tab1Service: Tab1Service, private router: Router) {
|
||||||
|
|
||||||
|
@ -36,28 +39,38 @@ export class PromptEventoPage implements OnInit{
|
||||||
if (this.eventoForm.valid){
|
if (this.eventoForm.valid){
|
||||||
let evento = new Evento();
|
let evento = new Evento();
|
||||||
this.asignarEvento(evento);
|
this.asignarEvento(evento);
|
||||||
this.router.navigate(['/tabs']);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
asignarEvento(evento: Evento){
|
asignarEvento(evento: Evento){
|
||||||
evento.setNombre(this.eventoForm.get('nombre').value);
|
evento.setNombre(this.eventoForm.get('nombre').value);
|
||||||
evento.setDesc(this.eventoForm.get('descripcion').value);
|
evento.setDesc(this.eventoForm.get('descripcion').value);
|
||||||
evento.setFecha(this.eventoForm.get('fecha').value);
|
var fecha = this.eventoForm.get('fecha').value;
|
||||||
|
fecha = fecha.split("T")[0];
|
||||||
|
evento.setFecha(fecha);
|
||||||
|
var hora = this.eventoForm.get('hora').value;
|
||||||
|
hora = hora.split("T")[1];
|
||||||
|
hora = hora.split(":")[0]+(":")+hora.split(":")[1];
|
||||||
|
evento.setHora(hora);
|
||||||
evento.setPrecio1(this.eventoForm.get('precio1').value);
|
evento.setPrecio1(this.eventoForm.get('precio1').value);
|
||||||
evento.setPrecio2(this.eventoForm.get('precio2').value);
|
evento.setPrecio2(this.eventoForm.get('precio2').value);
|
||||||
//evento.setDia(evento.getFecha()); el datetime de Ion devuelve un String, no se puede
|
//evento.setDia(evento.getFecha()); el datetime de Ion devuelve un String, no se puede
|
||||||
//evento.setHora(evento.getFecha()); transformar en dia y hora
|
|
||||||
if (!this.tab1Service.eventos){
|
if (!this.tab1Service.eventos){
|
||||||
this.tab1Service.initEventos();}
|
this.tab1Service.initEventos();}
|
||||||
if(!this.tab1Service.eventoForms){
|
if(!this.tab1Service.eventoForms){
|
||||||
this.tab1Service.initEventoForms();}
|
this.tab1Service.initEventoForms();}
|
||||||
|
let eventoInterface = this.interfaceEvento(evento);
|
||||||
if(this.tab1Service.editarEvento==true){
|
if(this.tab1Service.editarEvento==true){
|
||||||
this.tab1Service.eventos[this.tab1Service.eventoIndex] = evento;
|
this.tab1Service.updateEvento(eventoInterface);
|
||||||
this.tab1Service.eventoForms[this.tab1Service.eventoIndex] = this.eventoForm;
|
//this.tab1Service.eventos[this.tab1Service.eventoIndex] = evento;
|
||||||
|
//this.tab1Service.eventoForms[this.tab1Service.eventoIndex] = this.eventoForm;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
this.tab1Service.eventos.push(evento);
|
this.tab1Service.eventos.push(evento);
|
||||||
this.tab1Service.eventoForms.push(this.eventoForm);}
|
this.tab1Service.postEvento(eventoInterface);
|
||||||
|
//this.tab1Service.eventos.push(evento);
|
||||||
|
//this.tab1Service.eventoForms.push(this.eventoForm);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,6 +97,23 @@ export class PromptEventoPage implements OnInit{
|
||||||
get descripcion(){
|
get descripcion(){
|
||||||
return this.eventoForm.get('descripcion');
|
return this.eventoForm.get('descripcion');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interfaceEvento(evento: Evento): Eventoi{
|
||||||
|
let eventoInterface: Eventoi;
|
||||||
|
eventoInterface = {
|
||||||
|
discotecaID: this.tab1Service.discotecaI.discotecaID,
|
||||||
|
nombre: evento.nombre,
|
||||||
|
localizacion: this.tab1Service.discotecaI.localizacion,
|
||||||
|
fecha: evento.fecha,
|
||||||
|
hora: evento.hora,
|
||||||
|
descripcion: evento.descripcion,
|
||||||
|
precio1: evento.precio1,
|
||||||
|
precio2: evento.precio2,
|
||||||
|
}
|
||||||
|
|
||||||
|
return eventoInterface;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { User } from '../interfaces/user';
|
||||||
import { Discoteca } from '../discoteca';
|
import { Discoteca } from '../discoteca';
|
||||||
import { UserLogin } from '../interfaces/user-login';
|
import { UserLogin } from '../interfaces/user-login';
|
||||||
import { DiscotecaI } from '../interfaces/discoteca-i';
|
import { DiscotecaI } from '../interfaces/discoteca-i';
|
||||||
|
import { Eventoi } from '../interfaces/eventoi';
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
|
@ -32,6 +33,12 @@ export class ApiService {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
postEvento(eventoInterface: Eventoi): Observable<Eventoi>{
|
||||||
|
|
||||||
|
return this.http.post<Eventoi>(this.baseUrl+"/evento", eventoInterface);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@ import { NumericValueAccessor } from '@ionic/angular';
|
||||||
import { DiscotecaI } from '../interfaces/discoteca-i';
|
import { DiscotecaI } from '../interfaces/discoteca-i';
|
||||||
import { ApiService } from '../services/api.service';
|
import { ApiService } from '../services/api.service';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
|
import { Eventoi } from '../interfaces/eventoi';
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
|
@ -33,6 +34,7 @@ export class Tab1Service implements OnInit{
|
||||||
|
|
||||||
initValues(): void{
|
initValues(): void{
|
||||||
this.discoteca = new Discoteca();
|
this.discoteca = new Discoteca();
|
||||||
|
this.discoteca.setId(this.discotecaI.discotecaID);
|
||||||
this.discoteca.setNombre(this.discotecaI.nombre);
|
this.discoteca.setNombre(this.discotecaI.nombre);
|
||||||
this.discoteca.setTelefono(this.discotecaI.telefono);
|
this.discoteca.setTelefono(this.discotecaI.telefono);
|
||||||
this.discoteca.setLocalizacion(this.discotecaI.localizacion);
|
this.discoteca.setLocalizacion(this.discotecaI.localizacion);
|
||||||
|
@ -89,4 +91,16 @@ export class Tab1Service implements OnInit{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
postEvento(evento: Eventoi){
|
||||||
|
this.apiService.postEvento(evento)
|
||||||
|
.subscribe(evento => {
|
||||||
|
this.router.navigate(['/tabs']);
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
updateEvento(evento: Eventoi){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue