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

DT-4910: New texts for infobox #4875

Merged
merged 50 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
9846088
fix: added new links for Tampere
Dvun Oct 20, 2023
33b3c11
fix: added new text in infobox with links
Dvun Oct 20, 2023
182ba1c
fix: added new text in infobox with links
Dvun Oct 20, 2023
67fc9ae
fix: added new translation texts
Dvun Oct 20, 2023
99f7b31
fix: renamed names in config
Dvun Oct 23, 2023
e807d10
fix: renamed
Dvun Oct 23, 2023
290cf17
fix: added new text for infobox
Dvun Oct 23, 2023
7cb8c67
fix: added new text for infobox
Dvun Oct 23, 2023
f569001
fix: renamed nysse-ticket-limited" to train-ticket-limited"
Dvun Nov 1, 2023
ed2ca98
fix: new function for check pickup type
Dvun Nov 7, 2023
3cb02df
fix: added mode check
Dvun Nov 7, 2023
6cb1f7f
fix: fixed function to check is Rail mode or not
Dvun Nov 8, 2023
22ed412
Merge branch 'v3' into DT-4910
Dvun Nov 8, 2023
08845a0
fix: fixed mystic string to constants
Dvun Nov 8, 2023
acad2d2
fix: fixed check
Dvun Nov 9, 2023
ca55d23
fix: removed not needed if
Dvun Nov 9, 2023
81dfc4b
fix: totally reworked infoBoxText and created with nested constants
Dvun Nov 9, 2023
ac037fb
fix: if statement fix and removed 2 constants for default infoText
Dvun Nov 9, 2023
ae21227
fix: created new InfoBox component
Dvun Nov 10, 2023
28d9113
fix: infoboxtext moved to own component
Dvun Nov 10, 2023
2487893
fix: fixed if statement for info box
Dvun Nov 13, 2023
9c720c7
fix: renamed from InfoBox to FareDisclaimer + added defaultProps
Dvun Nov 15, 2023
14043e3
fix: config method renamed
Dvun Nov 15, 2023
291099d
fix: renamed config method
Dvun Nov 15, 2023
798ee74
fix: renamed function name
Dvun Nov 15, 2023
98260b8
fix: renamed function names and methods
Dvun Nov 15, 2023
f83a7c3
fix: fix
Dvun Nov 15, 2023
8934ca8
fix: config update
Dvun Nov 16, 2023
0954c57
fix: renamed configData to linkText
Dvun Nov 16, 2023
44d211b
fix: reworked, updated function to show info text
Dvun Nov 16, 2023
c5d341d
fix: removed unnecessary function
Dvun Nov 16, 2023
dafbba7
fix: updated to more generic
Dvun Nov 16, 2023
f3274b1
fix: fix
Dvun Nov 16, 2023
1c1b6e1
fix: fixed same text pushed many times
Dvun Nov 16, 2023
f575303
fix: fix code
Dvun Nov 16, 2023
8ee65b8
fix: code fix
Dvun Nov 17, 2023
88aad96
fix: code fix
Dvun Nov 17, 2023
84758f0
fix: removed config
Dvun Nov 17, 2023
d8faf24
fix: updated code and config with agencyName coming inside values
Dvun Nov 17, 2023
a5bec27
fix: removed 'train-ticket-limited' texts
Dvun Nov 17, 2023
d94c436
fix: update to more generic properties
Dvun Nov 17, 2023
f1c717e
fix: update to more generic properties
Dvun Nov 17, 2023
125255c
fix: update to more generic properties
Dvun Nov 17, 2023
bc3c5a5
fix: moved texts from translation.js
Dvun Nov 17, 2023
7b77158
fix: fix
Dvun Nov 17, 2023
b9c7ed1
fix: bad update :(
Dvun Nov 17, 2023
0285ffa
fix: changed propTypes
Dvun Nov 17, 2023
8b6c417
fix: update
Dvun Nov 17, 2023
65567b7
chore: remove redundant variables
vesameskanen Nov 18, 2023
74e5f3c
fix: incorrect message id
vesameskanen Nov 20, 2023
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
43 changes: 43 additions & 0 deletions app/component/FareDisclaimer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import React from 'react';
import { FormattedMessage } from 'react-intl';
import PropTypes from 'prop-types';
import Icon from './Icon';

const FareDisclaimer = ({ textId, values, href = null, linkText = null }) => {
return (
<div className="disclaimer-container unknown-fare-disclaimer__top">
<div className="icon-container">
<Icon className="info" img="icon-icon_info" />
</div>
<div className="description-container">
<FormattedMessage id={textId} values={values} />

{href && (
<a href={href}>
<FormattedMessage id={linkText} defaultMessage={linkText} />
</a>
)}
</div>
</div>
);
};

FareDisclaimer.propTypes = {
textId: PropTypes.string.isRequired,
values: PropTypes.oneOfType([
PropTypes.shape({
agencyName: PropTypes.string,
}),
PropTypes.object,
]),
href: PropTypes.string,
linkText: PropTypes.string,
};

FareDisclaimer.defaultProps = {
values: {},
href: null,
linkText: null,
};

export default FareDisclaimer;
147 changes: 84 additions & 63 deletions app/component/ItineraryTab.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
import get from 'lodash/get';
import PropTypes from 'prop-types';
import React from 'react';
import { createFragmentContainer, graphql } from 'react-relay';
import cx from 'classnames';
import { matchShape, routerShape } from 'found';
import { FormattedMessage, intlShape } from 'react-intl';
import connectToStores from 'fluxible-addons-react/connectToStores';

import Icon from './Icon';
import get from 'lodash/get';
import TicketInformation from './TicketInformation';
import RouteInformation from './RouteInformation';
import ItinerarySummary from './ItinerarySummary';
import ItineraryLegs from './ItineraryLegs';
import BackButton from './BackButton';
import MobileTicketPurchaseInformation from './MobileTicketPurchaseInformation';
import {
getRoutes,
getZones,
compressLegs,
getRoutes,
getTotalBikingDistance,
getTotalBikingDuration,
getTotalDrivingDistance,
getTotalDrivingDuration,
getTotalWalkingDistance,
getTotalWalkingDuration,
legContainsRentalBike,
getTotalDrivingDuration,
getTotalDrivingDistance,
getZones,
isCallAgencyPickupType,
legContainsRentalBike,
} from '../util/legUtils';
import { BreakpointConsumer } from '../util/withBreakpoint';

Expand All @@ -36,14 +34,15 @@ import {
} from '../util/fareUtils';
import { addAnalyticsEvent } from '../util/analyticsUtils';
import {
getCurrentMillis,
getFormattedTimeDate,
isToday,
isTomorrow,
getFormattedTimeDate,
getCurrentMillis,
} from '../util/timeUtils';
import CityBikeDurationInfo from './CityBikeDurationInfo';
import { getCityBikeNetworkId } from '../util/citybikes';
import { FareShape } from '../util/shapes';
import FareDisclaimer from './FareDisclaimer';

const AlertShape = PropTypes.shape({ alertSeverityLevel: PropTypes.string });

Expand Down Expand Up @@ -87,7 +86,7 @@ class ItineraryTab extends React.Component {

static defaultProps = {
hideTitle: false,
currentLanguage: "fi"
currentLanguage: 'fi',
};

static contextTypes = {
Expand Down Expand Up @@ -159,7 +158,7 @@ class ItineraryTab extends React.Component {
walkingDistance > 0 &&
(bikingDistance > 0 || drivingDistance > 0) &&
futureText !== '';
const extraProps = {
return {
walking: {
duration: walkingDuration,
distance: walkingDistance,
Expand All @@ -175,7 +174,6 @@ class ItineraryTab extends React.Component {
futureText,
isMultiRow,
};
return extraProps;
};

render() {
Expand Down Expand Up @@ -217,8 +215,60 @@ class ItineraryTab extends React.Component {
const suggestionIndex = this.context.match.params.secondHash
? Number(this.context.match.params.secondHash) + 1
: Number(this.context.match.params.hash) + 1;
const itineraryContainsCallLegs = itinerary.legs.some(leg => isCallAgencyPickupType(leg));


const disclaimers = [];
Copy link
Member

@vesameskanen vesameskanen Nov 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seuraava olisi hyvä ratkaisu:
Rakenna taulukko FareDisclaimereja. Taulukoon pusketaan CallAgency yms disclaimerit, ja lisäksi n kpl mode disclaimereja. Eli iteroi kaikki legit ja katso onko käytössä leg.mode disclaimer. Jos on puske taulukkoon.
Tekstit kannattaa siirtää pois translations.txt tiedostosta config .modeDisclaimer objektiin.


if (shouldShowFareInfo(config) && fares.some(fare => fare.isUnknown)) {
const found = {};
itinerary.legs.forEach(leg => {
if (
config.modeDisclaimers?.[leg.mode] &&
!found[leg.mode]
) {
found[leg.mode] = true;
const disclaimer = config.modeDisclaimers[leg.mode][currentLanguage];
disclaimers.push(
<FareDisclaimer
key={leg.mode}
values={{}}
textId={disclaimer.disclaimer}
href={disclaimer.link}
linkText={disclaimer.text}
/>,
);
}
});

if (config.callAgencyInfo && itinerary.legs.some(leg => isCallAgencyPickupType(leg))) {
disclaimers.push(
<FareDisclaimer
textId="separate-ticket-required-for-call-agency-disclaimer"
values={{
agencyName: get(
config,
`callAgencyInfo.${currentLanguage}.callAgencyInfoLink`,
),
}}
href={config.callAgencyInfo[currentLanguage].callAgencyInfoLink}
linkText={
config.callAgencyInfo[currentLanguage].callAgencyInfoLinkText
}
/>,
);
}

if (!disclaimers.length) {
disclaimers.push(
<FareDisclaimer
textId="separate-ticket-required-disclaimer"
values={{
agencyName: get(config, 'ticketInformation.primaryAgencyName'),
}}
/>,
);
}
}

return (
<div className="itinerary-tab">
<h2 className="sr-only">
Expand All @@ -241,7 +291,11 @@ class ItineraryTab extends React.Component {
futureText={extraProps.futureText}
isMultiRow={extraProps.isMultiRow}
isMobile={this.props.isMobile}
hideBottomDivider={shouldShowFarePurchaseInfo(config, breakpoint, fares)}
hideBottomDivider={shouldShowFarePurchaseInfo(
config,
breakpoint,
fares,
)}
/>
) : (
<>
Expand Down Expand Up @@ -282,18 +336,19 @@ class ItineraryTab extends React.Component {
config={config}
/>
),
shouldShowFareInfo(config) && (
shouldShowFarePurchaseInfo(config,breakpoint,fares) ? (
shouldShowFareInfo(config) &&
(shouldShowFarePurchaseInfo(config, breakpoint, fares) ? (
<MobileTicketPurchaseInformation
fares={fares}
zones={getZones(itinerary.legs)}
/>) :
( <TicketInformation
/>
) : (
<TicketInformation
fares={fares}
zones={getZones(itinerary.legs)}
legs={itinerary.legs}
/>)
),
/>
)),
<div
className={cx('momentum-scroll itinerary-tabs__scroll', {
multirow: extraProps.isMultiRow,
Expand All @@ -305,45 +360,7 @@ class ItineraryTab extends React.Component {
'bp-large': breakpoint === 'large',
})}
>
{shouldShowFareInfo(config) &&
fares.some(fare => fare.isUnknown) && (
<div className="disclaimer-container unknown-fare-disclaimer__top">
<div className="icon-container">
<Icon className="info" img="icon-icon_info" />
</div>
{config.callAgencyInfo && itineraryContainsCallLegs ?
(<div className="description-container">
<FormattedMessage
id="separate-ticket-required-for-call-agency-disclaimer"
values={{
callAgencyInfoUrl: get(
config,
`callAgencyInfo.${currentLanguage}.callAgencyInfoLink`,
),
}}
/>
<a href={config.callAgencyInfo[currentLanguage].callAgencyInfoLink}>
<FormattedMessage
id={config.callAgencyInfo[currentLanguage].callAgencyInfoLinkText}
defaultMessage={config.callAgencyInfo[currentLanguage].callAgencyInfoLinkText}
/>
</a>
</div>
) : (
<div className="description-container">
<FormattedMessage
id="separate-ticket-required-disclaimer"
values={{
agencyName: get(
config,
'ticketInformation.primaryAgencyName',
),
}}
/>
</div>
)}
</div>
)}
<>{disclaimers}</>
<ItineraryLegs
fares={fares}
itinerary={itinerary}
Expand Down Expand Up @@ -406,7 +423,11 @@ const withRelay = createFragmentContainer(
}
legs {
mode
nextLegs(numberOfLegs: 2 originModesWithParentStation: [RAIL] destinationModesWithParentStation: [RAIL]) {
nextLegs(
numberOfLegs: 2
originModesWithParentStation: [RAIL]
destinationModesWithParentStation: [RAIL]
) {
mode
distance
route {
Expand Down Expand Up @@ -439,7 +460,7 @@ const withRelay = createFragmentContainer(
tripHeadsign
pattern {
code
}
}
occupancy {
occupancyStatus
}
Expand Down
Loading
Loading