Ability to include sublocations

This commit is contained in:
Tom Southall
2022-03-02 20:36:44 +00:00
parent 6287c16caa
commit 46a3a446d5
7 changed files with 129 additions and 18 deletions

View File

@@ -26,11 +26,15 @@ export default function ItemContents(props) {
index,
item,
query,
searchType = 'startswith'
searchType = 'startswith',
setSelected,
totalItems
} = props
const globalMatch = searchType === 'contains'
const isNYC = item.name === 'New York City, New York, United States'
const matchedText = (includeSeparator) => {
return (
<SplitMatch
@@ -47,16 +51,73 @@ export default function ItemContents(props) {
}
const img = () => {
return item.name === 'New York City, New York, United States'
? <div><img src={imgNewYork} alt={item.name} /></div>
return isNYC
? <div className={styles.imgContainer}><img src={imgNewYork} alt={item.name} /></div>
: void 0
}
const SubLocations = () => {
if(totalItems <= 5 && (item.neighbourhoods || item.attractions)) {
const neighbourhoods = (totalItems > 1) ? item.neighbourhoods.slice(0,5) : item.neighbourhoods
const attractions = (totalItems > 1) ? item.attractions.slice(0,5) : item.attractions
return (
<div className={styles.sublocations}>
<SubLocationList title="Neighbourhoods" data={neighbourhoods} />
<SubLocationList title="Attractions" data={attractions} />
</div>
)
}
return null
}
const SubLocationList = (props) => {
const { title, data } = props
if(!data || !data.length) return null
return (
<div className={styles.sublocationList}>
<div className={styles.subLocationTitle}>{title}</div>
<>
{
data.map(
(value, index) =>
<SubLocation
key={`neighbourhood${index}`}
value={value}>
{value.name.split(',')[0]}
</SubLocation>
)
}
</>
</div>
)
}
const SubLocation = (props) => {
const { children, value } = props
const handleClick = (evt, value) => {
evt.stopPropagation()
setSelected(value, 'name')
}
return (
<div>
<div className={styles.sublocation} onMouseDown={(evt) => handleClick(evt, value)}>
{children}
</div>
</div>
)
}
const firstItem = () => {
return (
<div className={`${styles.container} ${styles.first}`}>
{img()}
<div>{matchedText(false)}</div>
<div className={styles.nameContainer}>{matchedText(false)}</div>
{SubLocations()}
</div>
)
}

View File

@@ -1,4 +1,5 @@
.first > div {
.first > .imgContainer,
.first > .nameContainer {
display: inline-block;
height: 50px;
vertical-align: middle;
@@ -25,4 +26,36 @@
.match {
font-weight: 600;
color: #000;
}
.sublocations {
display: block;
padding-top: 10px;
padding-left: 48px;
}
.sublocationList {
display: inline-block;
margin-right: 40px;
font-size: 15px;
}
.subLocationTitle {
text-transform: uppercase;
font-size: 0.8em;
color: #777;
margin-bottom: 3px;
margin-left: 10px;
}
.sublocation {
display:inline-block;
padding: 2px 10px 3px;
color: rgb(118, 58, 214);
}
.sublocation:hover {
color: #fff;
background: rgb(118, 58, 214);
border-radius: 15px;
}