-
Notifications
You must be signed in to change notification settings - Fork 34
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
feat(location-field): make location group order configurable #771
base: master
Are you sure you want to change the base?
feat(location-field): make location group order configurable #771
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks fine, but could you add in one of the stories a control to toggle on/off the new renderOtherFirst
prop? Also, please update the snapshots.
const OtherFeaturesHeader = () => ( | ||
<S.MenuGroupHeader as={headingType} bgColor="#333" key="other-header"> | ||
<FormattedMessage | ||
description="Text for header above the 'other'" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description looks unfinished, could you fix please?
…/otp-ui into reorder-other-to-first
Blocked by #774 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please use Storybook controls to illustrate renderOtherFirst
?
const [otherControl, setOtherControl] = useState(false); | ||
return ( | ||
<> | ||
<label htmlFor="other-input"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you make Storybook create the controls using argTypes
instead? (Storybook will add that to its "Controls" tab - I should have mentioned that in my previous review but somehow thought you knew) Do that for this story only. Refer to e.g.
FlexRoute.argTypes = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a few tiny nitpicks!
return ( | ||
<> | ||
{/* Only include the header if there are features to show */} | ||
{(title === GeocoderResultsConstants.other || |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{(title === GeocoderResultsConstants.other || | |
{(title === GeocoderResultsConstants.OTHER || |
typo?
@@ -113,6 +113,8 @@ export interface LocationFieldProps { | |||
maxNearbyStops?: number; | |||
type: string; | |||
}; | |||
/** Order of geocoder results to display */ | |||
geocoderResultsOrder?: Array<"STATIONS" | "STOPS" | "OTHER">; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There might be a fancy way to grab these from the object, but I'm not sure how. @daniel-heppner-ibigroup might now. But for now we should at least add a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please try avoiding creating a new component type on each render.
bgColor, | ||
title, | ||
HeaderMessage, | ||
featuresArray |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename to features
? Sort props.
@@ -159,6 +160,11 @@ const LocationField = ({ | |||
GeocodedOptionIconComponent = GeocodedOptionIcon, | |||
geocoderConfig, | |||
getCurrentPosition, | |||
geocoderResultsOrder = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sort props.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this prop is better than the original one.
const Header = () => ( | ||
<S.MenuGroupHeader as={headingType} bgColor={bgColor} key={title}> | ||
{HeaderMessage} | ||
</S.MenuGroupHeader> | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inline this or move this component to top level (avoid creating a new component class on each render).
let Element; | ||
switch (result) { | ||
case GeocoderResultsConstants.OTHER: | ||
Element = otherFeatures.length > 0 && ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename to element
lower case.
/> | ||
} | ||
key="other-header" | ||
featuresArray={otherFeatures} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sort props (multiple instances)
bgColor="#333" | ||
HeaderMessage={ | ||
<FormattedMessage | ||
id="otpUi.LocationField.other" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Default to English? (multiple instances)
// avoid displaying headers | ||
const transitFeaturesPresent = | ||
stopFeatures.length > 0 || stationFeatures.length > 0; | ||
const FeaturesElements = ({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move this component to top level (avoid creating a new component class on each render).
currentPosition={currentPosition} | ||
geocoderConfig={geocoderConfig} | ||
getCurrentPosition={getCurrentPosition} | ||
preferredLayers={["example_layer"]} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sort props
@amy-corson-ibigroup Also please update the props in the PR description... |
Allows configuration of the order of the returned location group results, so that if you pass
renderOtherFirst
through the config, it puts the "other" category first in the results, above stops and stations.