Fix Dec 2020
This commit is contained in:
parent
3fbc153804
commit
38f7991a0c
@ -5,9 +5,10 @@ import { InitComponent} from './init/init.component';
|
||||
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: '404', redirectTo:'/home'},
|
||||
{ path: ':name', component: SlideComponent },
|
||||
{ path: '', redirectTo: '/home', pathMatch: 'full'}
|
||||
// { path: '', component: InitComponent }
|
||||
{ path: '', redirectTo: '/home', pathMatch: 'full'},
|
||||
{ path: '**', redirectTo: '/home' }
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
|
@ -2,6 +2,8 @@ import { Injectable } from '@angular/core';
|
||||
import { HttpClient,HttpResponse } from '@angular/common/http';
|
||||
import { Observable } from 'rxjs';
|
||||
import {environment} from '../environments/environment';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
@ -10,7 +12,10 @@ export class ClientService {
|
||||
|
||||
apiUrl:string
|
||||
|
||||
constructor(private http: HttpClient) {
|
||||
constructor(
|
||||
private http: HttpClient,
|
||||
private router: Router
|
||||
) {
|
||||
this.apiUrl = environment.uriAPI
|
||||
}
|
||||
|
||||
@ -23,9 +28,7 @@ export class ClientService {
|
||||
}
|
||||
|
||||
getItem(name:string) : Observable<any> {
|
||||
return this.http.get<any>(
|
||||
this.apiUrl+'/items/'+name+'/index.json', {}
|
||||
)
|
||||
return this.http.get<any>(this.apiUrl+'/items/'+name+'/index.json', {})
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ div.element {
|
||||
}
|
||||
|
||||
div.init-title {
|
||||
text-align:center;font-size:8vw;font-size:calc(12px + 2vw);cursor:pointer;background:#fff;color:#000;padding-top:5px;font-family:'Frutiger';
|
||||
text-align:center;font-size:8vw;font-size:calc(12px + 2vw);cursor:pointer;background:transparent;color:#fff;padding-top:5px;font-family:'Frutiger';
|
||||
}
|
||||
|
||||
div.big-title {
|
||||
|
@ -64,7 +64,12 @@ export class SlideComponent implements OnInit {
|
||||
params => {
|
||||
if (params.name) {
|
||||
this.clientService.getItem(params.name).subscribe(
|
||||
(r) => { this.slide = r.data;}
|
||||
(r) => {
|
||||
this.slide = r.data;
|
||||
},
|
||||
(error) => {
|
||||
this.router.navigate(['404'])
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,11 @@
|
||||
{"title":"Traktorea", "url":"https://www.soinumapa.net/wp-content/uploads/2020/10/20201017_TRACTOR_ARANDO.mp3"},
|
||||
{"title":"Kanpaiak", "url":"https://www.soinumapa.net/wp-content/uploads/2020/10/20201017_BEIRE_CAMPANAS_EDIT.mp3"},
|
||||
{"title":"Erlezaintza", "url":"https://www.soinumapa.net/wp-content/uploads/2020/10/20200909_ABEJAS_COMER_APICULTOR_DIA_BEIRE_ARGUEDAS.mp3"},
|
||||
{"title":"Uxue Santutegia", "url":"https://www.soinumapa.net/wp-content/uploads/2020/10/20200912_INTERIOR_IGLESIA_PUERTA_UJUE_EDITED.mp3"}
|
||||
{"title":"Uxue Santutegia", "url":"https://www.soinumapa.net/wp-content/uploads/2020/10/20200912_INTERIOR_IGLESIA_PUERTA_UJUE_EDITED.mp3"},
|
||||
{"title":"Artzaina", "url":"http://www.soinumapa.net/wp-content/uploads/2020/10/20201001_PASTOR_LLAMA_OVEJAS_BEIRE_EDITED.mp3"},
|
||||
{"title":"Kilkerrak", "url":"http://www.soinumapa.net/wp-content/uploads/2020/10/20200911_GRILLOS_BEIRE_NOCHE.mp3"},
|
||||
{"title":"Tren geltokian", "url":"http://www.soinumapa.net/wp-content/uploads/2020/10/20200911_TREN_ESPERANDO_BEIRE_DIA.mp3"},
|
||||
{"title":"Improvisaciones musicales - Violín", "url":"http://lrullo.audio-lab.org/files/2020/12/MUSICA_VIOLIN.mp3"},
|
||||
{"title":"Improvisaciones musicales - Acordeón", "url":"http://lrullo.audio-lab.org/files/2020/12/MUSICA_ACORDEON.mp3"}
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user