2021-12-05 17:21:38 +00:00
|
|
|
export default class CarService {
|
|
|
|
brands = ['Vapid', 'Carson', 'Kitano', 'Dabver', 'Ibex', 'Morello', 'Akira', 'Titan', 'Dover', 'Norma'];
|
|
|
|
|
|
|
|
colors = ['Black', 'White', 'Red', 'Blue', 'Silver', 'Green', 'Yellow'];
|
|
|
|
|
|
|
|
generateCar(id) {
|
|
|
|
return {
|
|
|
|
id,
|
|
|
|
vin: this.generateVin(),
|
|
|
|
brand: this.generateBrand(),
|
|
|
|
color: this.generateColor(),
|
|
|
|
year: this.generateYear()
|
2022-09-14 14:26:41 +00:00
|
|
|
};
|
2021-12-05 17:21:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
generateVin() {
|
2022-09-14 14:26:41 +00:00
|
|
|
let text = '';
|
|
|
|
let possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
2021-12-05 17:21:38 +00:00
|
|
|
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
text += possible.charAt(Math.floor(Math.random() * possible.length));
|
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
generateBrand() {
|
|
|
|
return this.brands[Math.floor(Math.random() * Math.floor(10))];
|
|
|
|
}
|
|
|
|
|
|
|
|
generateColor() {
|
|
|
|
return this.colors[Math.floor(Math.random() * Math.floor(7))];
|
|
|
|
}
|
|
|
|
|
|
|
|
generateYear() {
|
|
|
|
return 2000 + Math.floor(Math.random() * Math.floor(19));
|
|
|
|
}
|
|
|
|
}
|