Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions gatsby-browser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import('@docsearch/react/style');
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"version": "0.1.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"@docsearch/react": "^1.0.0-alpha.27",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@mdx-js/mdx": "^1.5.2",
"@mdx-js/react": "^1.5.2",
"@openfonts/luckiest-guy_latin": "^1.44.1",
"@pauliescanlon/gatsby-mdx-routes": "^0.0.4",
"@popperjs/core": "^2.2.2",
"docsearch.js": "^2.6.3",
"emotion": "^10.0.27",
"gatsby": "^2.18.13",
"gatsby-dynamical-navigation": "^0.4.1",
Expand Down
77 changes: 0 additions & 77 deletions src/components/Docsearch.js

This file was deleted.

4 changes: 2 additions & 2 deletions src/components/Navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { MdxRoutes } from '@pauliescanlon/gatsby-mdx-routes';
import { createTree } from '../utils/createTree';
import processRoutes from '../utils/processRoutes';
import { media } from './Framework';
import Docsearch from './Docsearch';
import Search from './Search';
import popperText from '../images/popper-text.svg';
import { Menu } from 'react-feather';

Expand Down Expand Up @@ -251,7 +251,7 @@ export default function Navigation({ description, lang, meta, path }) {
</PopperTextLogoContainer>
<CloseMenuButton onClick={closeMenu}>Close Menu</CloseMenuButton>

<Docsearch scrolled={scrolled} name="docs" />
<Search />

<MenuContents ref={menuRef} onScroll={handleScroll}>
{createTree(processRoutes(routes, path)).map((route, index) => (
Expand Down
119 changes: 119 additions & 0 deletions src/components/Search.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
import { Fragment } from 'react';
import { Global, css } from '@emotion/core';
import { DocSearch } from '@docsearch/react';
import { Link, navigate } from 'gatsby';

const Hit = ({ hit, children }) => {
return <Link to={hit.url}>{children}</Link>;
};

const Search = () => (
<Fragment>
<Global
styles={css`
:root {
--docsearch-primary-color: #ff6b81;
--docsearch-text-color: rgb(245, 246, 247);
--docsearch-container-background: rgba(9, 10, 17, 0.8);
--docsearch-modal-background: #281e36;
--docsearch-modal-shadow: inset 1px 1px 0 0 rgb(44, 46, 64),
0 3px 8px 0 rgb(0, 3, 9);
--docsearch-searchbox-background: rgb(9, 10, 17);
--docsearch-searchbox-focus-background: #000;
--docsearch-hit-color: rgb(190, 195, 201);
--docsearch-hit-shadow: none;
--docsearch-hit-background: rgb(9, 10, 17);
--docsearch-key-gradient: linear-gradient(
Comment thread
s-pace marked this conversation as resolved.
-26.5deg,
var(--docsearch-modal-background) 0%,
rgb(65 46 80) 100%
);
--docsearch-key-shadow: inset 0 -2px 0 0 rgb(81 31 82),
Comment thread
s-pace marked this conversation as resolved.
inset 0 0 1px 1px rgb(125 81 111), 0 2px 2px 0 rgba(3, 4, 9, 0.5);
--docsearch-footer-background: #2f263c;
--docsearch-footer-shadow: inset 0 1px 0 0 rgba(73, 76, 106, 0.5),
0 -4px 8px 0 rgba(0, 0, 0, 0.2);
--docsearch-logo-color: #fff;
--docsearch-muted-color: rgb(127, 132, 151);

.DocSearch-Button {
Comment thread
s-pace marked this conversation as resolved.
--docsearch-searchbox-background: rgb(235, 237, 240);
--docsearch-searchbox-focus-background: #fff;
--docsearch-text-color: rgb(28, 30, 33);
--docsearch-muted-color: rgb(117 124 138);
--docsearch-key-gradient: linear-gradient(
-225deg,
rgb(213, 219, 228) 0%,
rgb(248, 248, 248) 100%
);
--docsearch-searchbox-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
--docsearch-key-shadow: inset 0 -2px 0 0 rgb(205, 205, 230),
inset 0 0 1px 1px #fff, 0 1px 2px 1px rgba(30, 35, 90, 0.4);
}
}

.DocSearch-Button {
margin: 10px;
height: 39px;
}

.DocSearch-Button-Placeholder {
width: 100%;
Comment thread
s-pace marked this conversation as resolved.
text-align: left;
}

.DocSearch-Search-Icon {
width: 28px;
}

.DocSearch-Modal {
a {
border-bottom-style: none;
}
li {
margin-bottom: 0;
}
.DocSearch-Commands-Key {
padding-bottom: 1px;
}
}

@media (max-width: 750px) {
.DocSearch-Button-KeySeparator,
.DocSearch-Button-Key {
display: flex;
}

.DocSearch-Button-Placeholder {
display: flex;
}
}
`}
/>
<DocSearch
apiKey="d5fa05c4e33e776fbf2b8021cbc15b37"
indexName="popper"
navigator={{
navigate({ suggestionUrl }) {
navigate(suggestionUrl);
},
}}
hitComponent={Hit}
transformItems={items => {
return items.map(item => {
// We transform the absolute URL into a relative URL to
// leverage Gatsby's preloading.
const a = document.createElement('a');
a.href = item.url;

return {
...item,
url: `${a.pathname}${a.hash}`,
};
});
}}
/>
</Fragment>
);

export default Search;
Loading