aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/util
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/common/util')
-rw-r--r--modern/src/common/util/formatter.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/modern/src/common/util/formatter.js b/modern/src/common/util/formatter.js
index 0f7d2cc8..792a4ef0 100644
--- a/modern/src/common/util/formatter.js
+++ b/modern/src/common/util/formatter.js
@@ -1,3 +1,4 @@
+import { useSelector } from 'react-redux';
import moment from 'moment';
import {
altitudeFromMeters,
@@ -68,6 +69,16 @@ export const formatNumericHours = (value, t) => {
return `${hours} ${t('sharedHourAbbreviation')} ${minutes} ${t('sharedMinuteAbbreviation')}`;
};
+export const formatDriverUniqueId = (value) => {
+ const drivers = useSelector((state) => state.drivers.items);
+ let driverId = `${value}`;
+ const storedDriver = Object.values(drivers).find((d) => d.uniqueId === driverId);
+ if (storedDriver) {
+ driverId += ` (${storedDriver.name})`;
+ }
+ return driverId;
+};
+
export const formatCoordinate = (key, value, unit) => {
let hemisphere;
let degrees;