Move timestamp comparator function into shared util module.

This commit is contained in:
Jonathan Bernard 2020-03-13 23:07:06 -05:00
parent 9c9fe8786c
commit ff17d9bf7a
2 changed files with 9 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import moment from 'moment';
import assign from 'lodash.assign';
import { library } from '@fortawesome/fontawesome-svg-core';
import { faPencilAlt } from '@fortawesome/free-solid-svg-icons';
import { byTimestampComparator } from '@/util';
library.add(faPencilAlt);
@ -28,7 +29,7 @@ export class SimpleDetails extends Vue {
return [{
name: this.measure.name,
data: measurementData
.sort((a, b) => a.timestamp.getTime() - b.timestamp.getTime())
.sort(byTimestampComparator)
.map((m) => ({ x: m.timestamp.toISOString(), y: m.value }))
}];
}

7
web/src/util.ts Normal file
View File

@ -0,0 +1,7 @@
import { Measurement, MeasurementMeta } from '@/models';
export function byTimestampComparator<T extends MeasurementMeta>(
a: Measurement<T>,
b: Measurement<T>): number {
return a.timestamp.getTime() - b.timestamp.getTime();
}