Skip to content

Commit

Permalink
fix(base-renderer): remove OTP1 compatability conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
miles-grant-ibigroup committed Nov 26, 2024
1 parent bad8e44 commit 40d95da
Showing 1 changed file with 1 addition and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,6 @@ import React from 'react'

import FormattedDuration from '../../../util/formatted-duration'

/**
* Helper function that changes alert timestamps from milliseconds to seconds
* for display using the alerts body component from itinerary-body.
*/
function withAlertTimestampsInSeconds(alert) {
return {
...alert,
effectiveEndDate: alert.effectiveEndDate / 1000,
effectiveStartDate: alert.effectiveStartDate / 1000
}
}

/**
* Calculate commonly-used pieces of data used to render the trip status
* component. The monitoredTrip param can be undefined.
Expand Down Expand Up @@ -63,9 +51,7 @@ export default function baseRenderer(monitoredTrip) {

// Set some alert data if the matching itinerary exists.
// (Convert alert timestamps in milliseconds to seconds for display using alerts body.)
data.alerts = data.matchingItinerary?.alerts?.map(
withAlertTimestampsInSeconds
)
data.alerts = data.matchingItinerary?.alerts
data.hasMoreThanOneAlert = !!(data.alerts?.length > 0)
data.shouldRenderAlerts = data.hasMoreThanOneAlert

Expand Down

0 comments on commit 40d95da

Please sign in to comment.