angular-hotel-manager/src/app/api/api.ts

58 lines
1.4 KiB
TypeScript

import { InMemoryDbService } from 'angular-in-memory-web-api';
import { Hotel } from '../HotelItem/hotel';
/**
* Initial data for in memory web api
*
* @export
* @class HotelData
* @implements {InMemoryDbService}
*/
export class HotelData implements InMemoryDbService {
createDb(): Record<string, Hotel[]> {
const hotels: Hotel[] = [
{
id: 1,
hotelName: 'Buea sweet life',
description: 'Belle vue au bord de la mer',
price: 230.5,
imageUrl: 'assets/img/1.jpg',
rating: 3.5,
tags: ['nouveau']
}, {
id: 2,
hotelName: 'Marakech',
description: 'Profitez de la vue sur les montagnes',
price: 145.5,
imageUrl: 'assets/img/2.jpg',
rating: 5,
tags: ['nouveau']
}, {
id: 3,
hotelName: 'Abudja new look palace',
description: 'Séjour complet avec service de voitures',
price: 120.12,
imageUrl: 'assets/img/3.jpg',
rating: 4,
tags: ['nouveau']
}, {
id: 4,
hotelName: 'Cape town city',
description: 'Magnifique cadre pour votre séjour',
price: 135.12,
imageUrl: 'assets/img/4.jpg',
rating: 2.5,
tags: ['nouveau']
}
];
return { hotels };
}
genId(hotels: Hotel[]): number {
return hotels.length > 0 ? Math.max(...hotels.map(hotel => hotel.id)) + 1 : 1;
}
}