File size: 4,263 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | import React from 'react';
import { connectStateResults, ClearRefinements } from 'react-instantsearch-dom';
const NoResults = ({ searchResults }) => {
if (!searchResults || searchResults.nbHits > 0) {
return null;
}
const hasRefinements = searchResults.getRefinements().length > 0;
const description = hasRefinements
? 'Try to reset your applied filters.'
: 'Please try another query.';
return (
<div className="hits-empty-state">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="138"
height="138"
className="hits-empty-state-image"
>
<defs>
<linearGradient id="c" x1="50%" x2="50%" y1="100%" y2="0%">
<stop offset="0%" stopColor="#F5F5FA" />
<stop offset="100%" stopColor="#FFF" />
</linearGradient>
<path
id="b"
d="M68.71 114.25a45.54 45.54 0 1 1 0-91.08 45.54 45.54 0 0 1 0 91.08z"
/>
<filter
id="a"
width="140.6%"
height="140.6%"
x="-20.3%"
y="-15.9%"
filterUnits="objectBoundingBox"
>
<feOffset dy="4" in="SourceAlpha" result="shadowOffsetOuter1" />
<feGaussianBlur
in="shadowOffsetOuter1"
result="shadowBlurOuter1"
stdDeviation="5.5"
/>
<feColorMatrix
in="shadowBlurOuter1"
result="shadowMatrixOuter1"
values="0 0 0 0 0.145098039 0 0 0 0 0.17254902 0 0 0 0 0.380392157 0 0 0 0.15 0"
/>
<feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter2" />
<feGaussianBlur
in="shadowOffsetOuter2"
result="shadowBlurOuter2"
stdDeviation="1.5"
/>
<feColorMatrix
in="shadowBlurOuter2"
result="shadowMatrixOuter2"
values="0 0 0 0 0.364705882 0 0 0 0 0.392156863 0 0 0 0 0.580392157 0 0 0 0.2 0"
/>
<feMerge>
<feMergeNode in="shadowMatrixOuter1" />
<feMergeNode in="shadowMatrixOuter2" />
</feMerge>
</filter>
</defs>
<g fill="none" fillRule="evenodd">
<circle
cx="68.85"
cy="68.85"
r="68.85"
fill="#5468FF"
opacity=".07"
/>
<circle
cx="68.85"
cy="68.85"
r="52.95"
fill="#5468FF"
opacity=".08"
/>
<use fill="#000" filter="url(#a)" xlinkHref="#b" />
<use fill="url(#c)" xlinkHref="#b" />
<path
d="M76.01 75.44c5-5 5.03-13.06.07-18.01a12.73 12.73 0 0 0-18 .07c-5 4.99-5.03 13.05-.07 18a12.73 12.73 0 0 0 18-.06zm2.5 2.5a16.28 16.28 0 0 1-23.02.09A16.29 16.29 0 0 1 55.57 55a16.28 16.28 0 0 1 23.03-.1 16.28 16.28 0 0 1-.08 23.04zm1.08-1.08l-2.15 2.16 8.6 8.6 2.16-2.15-8.6-8.6z"
fill="#5369FF"
/>
</g>
</svg>
<p className="hits-empty-state-title">
Sorry, we can't find any matches to your query!
</p>
<p className="hits-empty-state-description">{description}</p>
<ClearRefinements
translations={{
reset: (
<div className="clear-filters">
<svg
xmlns="http://www.w3.org/2000/svg"
width="11"
height="11"
viewBox="0 0 11 11"
>
<g fill="none" fillRule="evenodd">
<path d="M0 0h11v11H0z" />
<path
fill="#000"
fillRule="nonzero"
d="M8.26 2.75a3.896 3.896 0 1 0 1.102 3.262l.007-.056a.49.49 0 0 1 .485-.456c.253 0 .451.206.437.457 0 0 .012-.109-.006.061a4.813 4.813 0 1 1-1.348-3.887v-.987a.458.458 0 1 1 .917.002v2.062a.459.459 0 0 1-.459.459H7.334a.458.458 0 1 1-.002-.917h.928z"
/>
</g>
</svg>
Clear filters
</div>
),
}}
/>
</div>
);
};
export default connectStateResults(NoResults);
|