Blame view
src/app/model/vessel.ts
798 Bytes
de59ffef8 add model + search |
1 2 3 4 |
import {Message} from './message'; export class Vessel { messages: Array<Message>; |
29e50d28c put date of first... |
5 |
firstAppearance: number; |
de59ffef8 add model + search |
6 7 8 9 10 11 |
constructor(messages: Array<Message>) { this.messages = messages; } addMessage(message: Message): void { |
29e50d28c put date of first... |
12 13 |
this.messages.push(message); this.determineFirstAppearance(message); |
de59ffef8 add model + search |
14 15 16 |
} getMMSI(): string { |
9bbae2409 highlight selecte... |
17 18 19 |
if (this.messages.length === 0) { return ''; } |
de59ffef8 add model + search |
20 21 22 23 24 25 |
return this.messages[0].mmsi; } getName(): string { return this.messages[0].vesselName; } |
287033a62 add vessel positi... |
26 |
public getColor(): string { |
72dfa80e2 eache vessel have... |
27 |
return '#' + (+this.getMMSI()).toString(16).substr(0, 6); |
287033a62 add vessel positi... |
28 |
} |
29e50d28c put date of first... |
29 30 31 32 33 34 |
determineFirstAppearance(message: Message): void { const timeInS = Date.parse(message.time) / 1000; if (this.firstAppearance > timeInS) { this.firstAppearance = timeInS; } } |
de59ffef8 add model + search |
35 |
} |