fix winning claim for top search results
This commit is contained in:
parent
7eb340167a
commit
9343f5855c
2 changed files with 15 additions and 27 deletions
|
@ -1,7 +1,7 @@
|
||||||
// @flow
|
// @flow
|
||||||
import * as ICONS from 'constants/icons';
|
import * as ICONS from 'constants/icons';
|
||||||
import React, { useEffect, Fragment } from 'react';
|
import React, { useEffect, Fragment } from 'react';
|
||||||
import { isURIValid, normalizeURI, regexInvalidURI } from 'lbry-redux';
|
import { regexInvalidURI } from 'lbry-redux';
|
||||||
import ClaimPreview from 'component/claimPreview';
|
import ClaimPreview from 'component/claimPreview';
|
||||||
import ClaimList from 'component/claimList';
|
import ClaimList from 'component/claimList';
|
||||||
import Page from 'component/page';
|
import Page from 'component/page';
|
||||||
|
@ -27,28 +27,18 @@ type Props = {
|
||||||
export default function SearchPage(props: Props) {
|
export default function SearchPage(props: Props) {
|
||||||
const { search, uris, onFeedbackPositive, onFeedbackNegative, location, isSearching, showNsfw } = props;
|
const { search, uris, onFeedbackPositive, onFeedbackNegative, location, isSearching, showNsfw } = props;
|
||||||
const urlParams = new URLSearchParams(location.search);
|
const urlParams = new URLSearchParams(location.search);
|
||||||
const urlQuery = urlParams.get('q');
|
const urlQuery = urlParams.get('q') || '';
|
||||||
const additionalOptions: AdditionalOptions = { isBackgroundSearch: false };
|
const additionalOptions: AdditionalOptions = { isBackgroundSearch: false };
|
||||||
if (!showNsfw) {
|
if (!showNsfw) {
|
||||||
additionalOptions['nsfw'] = false;
|
additionalOptions['nsfw'] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
let normalizedUri;
|
const INVALID_URI_CHARS = new RegExp(regexInvalidURI, 'gu');
|
||||||
let isUriValid;
|
const modifiedUrlQuery = urlQuery
|
||||||
if (isURIValid(urlQuery)) {
|
|
||||||
isUriValid = true;
|
|
||||||
normalizedUri = normalizeURI(urlQuery);
|
|
||||||
} else {
|
|
||||||
let INVALID_URI_CHARS = new RegExp(regexInvalidURI, 'gu');
|
|
||||||
let modifiedUrlQuery = urlQuery
|
|
||||||
? urlQuery
|
|
||||||
.trim()
|
.trim()
|
||||||
.replace(/\s+/g, '-')
|
.replace(/\s+/g, '-')
|
||||||
.replace(INVALID_URI_CHARS, '')
|
.replace(INVALID_URI_CHARS, '');
|
||||||
: '';
|
const uriFromQuery = `lbry://${modifiedUrlQuery}`;
|
||||||
isUriValid = isURIValid(modifiedUrlQuery);
|
|
||||||
normalizedUri = isUriValid && normalizeURI(modifiedUrlQuery);
|
|
||||||
}
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (urlQuery) {
|
if (urlQuery) {
|
||||||
|
@ -61,14 +51,12 @@ export default function SearchPage(props: Props) {
|
||||||
<section className="search">
|
<section className="search">
|
||||||
{urlQuery && (
|
{urlQuery && (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
{isUriValid && (
|
|
||||||
<header className="search__header">
|
<header className="search__header">
|
||||||
<ClaimUri uri={normalizedUri} />
|
<ClaimUri uri={uriFromQuery} />
|
||||||
<div className="card">
|
<div className="card">
|
||||||
<ClaimPreview uri={normalizedUri} type="large" placeholder="publish" />
|
<ClaimPreview uri={uriFromQuery} type="large" placeholder="publish" />
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
)}
|
|
||||||
|
|
||||||
<ClaimList
|
<ClaimList
|
||||||
uris={uris}
|
uris={uris}
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
.claim-preview--large {
|
.claim-preview--large {
|
||||||
border: none;
|
border: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
padding: var(--spacing-medium);
|
padding: var(--spacing-small);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
Loading…
Reference in a new issue