Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Camsys/v1/dev #3

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading