db-vendo-client/parse/trip.js
2024-12-18 01:16:57 +00:00

17 lines
351 B
JavaScript

const parseTrip = (ctx, t) => { // t = raw trip
const {profile} = ctx;
// pretend the trip is a leg in a journey
const trip = profile.parseJourneyLeg(ctx, t);
trip.id = trip.tripId; // TODO journeyId
delete trip.tripId;
delete trip.reachable;
trip.cancelled = t.cancelled;
// TODO opt.scheduledDays
return trip;
};
export {
parseTrip,
};