Skip to content

Commit

Permalink
Merge pull request #3 from camsys/camsys/v1/dev
Browse files Browse the repository at this point in the history
Camsys/v1/dev
  • Loading branch information
mbsalvatore authored Aug 22, 2024
2 parents 4ea1146 + a8cb1ea commit ce745ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions lib/components/narrative/line-itin/connected-itinerary-body.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ class ConnectedItineraryBody extends Component {
}
})

let bookingUrl = ''
console.log(itinerary.legs[0].bookingUrl)
if (itinerary.legs && itinerary.legs[0] && itinerary.legs[0].bookingUrl) {
bookingUrl = itinerary.legs[0].bookingUrl
console.log(bookingUrl)
}

return (
<ItineraryBodyContainer>
<StyledItineraryBody
Expand Down Expand Up @@ -117,6 +124,11 @@ class ConnectedItineraryBody extends Component {
TransitLegSummary={TransitLegSummary}
/>
<TripDetails itinerary={tripDetailItin} />
{bookingUrl && (
<a href={bookingUrl} rel="noreferrer" target="_blank">
[DEMO USE ONLY] Click here to book
</a>
)}
<TripTools itinerary={itinerary} />
</ItineraryBodyContainer>
)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "otp-react-redux",
"version": "6.4.0",
"version": "6.5.0-alpha",
"description": "A library for writing modern OpenTripPlanner-compatible multimodal journey planning web applications using React and Redux",
"main": "build/index.js",
"scripts": {
Expand Down

0 comments on commit ce745ab

Please sign in to comment.