Skip to content

Commit

Permalink
add Search component to @graphiql/react (#2586)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheyenbrock committed Aug 5, 2022
1 parent 597f526 commit fd28106
Show file tree
Hide file tree
Showing 19 changed files with 571 additions and 290 deletions.
2 changes: 1 addition & 1 deletion .changeset/five-pillows-fail.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ Add new components:
- UI components (`Dropdown`, `Spinner`, `UnStyledButton` and lots of icon components)
- Editor components (`QueryEditor`, `VariableEditor`, `HeaderEditor` and `ResponseEditor`)
- Toolbar components (`ExecuteButton` and `ToolbarButton`)
- Docs components (`Argument`, `DefaultValue`, `Directive`, `FieldLink` and `TypeLink`)
- Docs components (`Argument`, `DefaultValue`, `Directive`, `FieldLink`, `Search` and `TypeLink`)
- `History` component
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ browserslist
changesets
codemirror
codesandbox
combobox
commitlint
cosmicconfig
dompurify
Expand Down
1 change: 1 addition & 0 deletions packages/graphiql-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
},
"dependencies": {
"@graphiql/toolkit": "^1.0.0-next.0",
"@reach/combobox": "^0.17.0",
"codemirror": "^5.65.3",
"codemirror-graphql": "^2.0.0-next.0",
"copy-to-clipboard": "^3.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export function mockExplorerContextValue(
push() {},
reset() {},
show() {},
showSearch() {},
};
}

Expand Down
102 changes: 102 additions & 0 deletions packages/graphiql-react/src/explorer/components/search.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
@import url('@reach/combobox/styles.css');

[data-reach-combobox] {
color: var(--color-neutral-60);

&:not([data-state='idle']) {
border-radius: var(--border-radius-4);
box-shadow: var(--box-shadow);
color: var(--color-neutral-100);

& .graphiql-doc-explorer-search-input {
background: var(--color-neutral-0);
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}
}

.graphiql-doc-explorer-search-input {
align-items: center;
background-color: var(--color-neutral-7);
border-radius: var(--border-radius-4);
display: flex;
padding: var(--px-8) var(--px-12);
}

[data-reach-combobox-input] {
border: none;
background-color: transparent;
margin-left: var(--px-4);
width: 100%;

&:focus {
outline: none;
}
}

[data-reach-combobox-popover] {
border: none;
border-bottom-left-radius: var(--border-radius-4);
border-bottom-right-radius: var(--border-radius-4);
border-top: 1px solid var(--color-neutral-15);
max-height: 400px;
overflow-y: auto;

/**
* This makes sure that the logic for auto-scrolling the search results when
* using keyboard navigation works properly (we use `offsetTop` there).
*/
position: relative;
}

[data-reach-combobox-list] {
font-size: var(--font-size-body);
padding: var(--px-4);
}

[data-reach-combobox-option] {
border-radius: var(--border-radius-4);
color: var(--color-neutral-60);
overflow-x: hidden;
padding: var(--px-8) var(--px-12);
text-overflow: ellipsis;
white-space: nowrap;

&[data-highlighted] {
background-color: var(--color-neutral-7);
}

&:hover {
background-color: var(--color-neutral-10);
}

& + & {
margin-top: var(--px-4);
}
}

.graphiql-doc-explorer-search-type {
color: var(--color-blue);
}

.graphiql-doc-explorer-search-field {
color: var(--color-orche);
}

.graphiql-doc-explorer-search-argument {
color: var(--color-purple);
}

.graphiql-doc-explorer-search-divider {
color: var(--color-neutral-60);
font-size: var(--font-size-hint);
font-weight: var(--font-weight-medium);
margin-top: var(--px-8);
padding: var(--px-8) var(--px-12);
}

.graphiql-doc-explorer-search-empty {
color: var(--color-neutral-60);
padding: var(--px-8) var(--px-12);
}
Loading

0 comments on commit fd28106

Please sign in to comment.