Skip to content

Commit 2936a79

Browse files
authoredAug 26, 2024··
Merge branch 'main' into sse
2 parents c35884d + a929862 commit 2936a79

File tree

18 files changed

+61
-31
lines changed

18 files changed

+61
-31
lines changed
 

‎examples/graphiql-webpack/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"@graphiql/plugin-code-exporter": "^3.1.2",
1313
"@graphiql/plugin-explorer": "^3.2.2",
1414
"@graphiql/toolkit": "^0.11.0",
15-
"@graphiql/react": "^0.26.1",
16-
"graphiql": "^3.7.0",
15+
"@graphiql/react": "^0.26.2",
16+
"graphiql": "^3.7.1",
1717
"graphql": "^16.8.1",
1818
"graphql-ws": "^5.5.5",
1919
"react": "^18.2.0",

‎packages/cm6-graphql/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# cm6-graphql
22

3+
## 0.1.1
4+
5+
### Patch Changes
6+
7+
- [#3751](https://github.com/graphql/graphiql/pull/3751) [`b8538d8`](https://github.com/graphql/graphiql/commit/b8538d87421edb086b32d4eb2e30a3f7d9d9e893) Thanks [@dimaMachina](https://github.com/dimaMachina)! - replace deprecated `navigator.platform` with `navigator.userAgent`
8+
9+
fix placeholder `⌘ K` in doc explorer search input for non mac devices, replace by `Ctrl K`
10+
311
## 0.1.0
412

513
### Minor Changes

‎packages/cm6-graphql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cm6-graphql",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "GraphQL language support for CodeMirror 6",
55
"scripts": {
66
"build": "cm-buildhelper src/index.ts",

‎packages/cm6-graphql/src/helpers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ export class Position implements IPosition {
3838
}
3939
}
4040

41-
const isMac = () => /mac/i.test(navigator.platform);
41+
const isMac = () => navigator.userAgent.includes('Mac');
4242
export const isMetaKeyPressed = (e: MouseEvent) =>
4343
isMac() ? e.metaKey : e.ctrlKey;

‎packages/codemirror-graphql/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 2.1.1
4+
5+
### Patch Changes
6+
7+
- [#3751](https://github.com/graphql/graphiql/pull/3751) [`b8538d8`](https://github.com/graphql/graphiql/commit/b8538d87421edb086b32d4eb2e30a3f7d9d9e893) Thanks [@dimaMachina](https://github.com/dimaMachina)! - replace deprecated `navigator.platform` with `navigator.userAgent`
8+
9+
fix placeholder `⌘ K` in doc explorer search input for non mac devices, replace by `Ctrl K`
10+
311
## 2.1.0
412

513
### Minor Changes

‎packages/codemirror-graphql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror-graphql",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "GraphQL mode and helpers for CodeMirror.",
55
"contributors": [
66
"Hyohyeon Jeong <asiandrummer@fb.com>",

‎packages/codemirror-graphql/src/utils/jump-addon.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function onKeyDown(cm: CodeMirror.Editor, event: KeyboardEvent) {
121121
}
122122

123123
const isMac =
124-
typeof navigator !== 'undefined' && navigator?.appVersion.includes('Mac');
124+
typeof navigator !== 'undefined' && navigator.userAgent.includes('Mac');
125125

126126
function isJumpModifier(key: string) {
127127
return key === (isMac ? 'Meta' : 'Control');

‎packages/graphiql-react/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @graphiql/react
22

3+
## 0.26.2
4+
5+
### Patch Changes
6+
7+
- [#3751](https://github.com/graphql/graphiql/pull/3751) [`b8538d8`](https://github.com/graphql/graphiql/commit/b8538d87421edb086b32d4eb2e30a3f7d9d9e893) Thanks [@dimaMachina](https://github.com/dimaMachina)! - replace deprecated `navigator.platform` with `navigator.userAgent`
8+
9+
fix placeholder `⌘ K` in doc explorer search input for non mac devices, replace by `Ctrl K`
10+
11+
- Updated dependencies [[`b8538d8`](https://github.com/graphql/graphiql/commit/b8538d87421edb086b32d4eb2e30a3f7d9d9e893)]:
12+
- codemirror-graphql@2.1.1
13+
314
## 0.26.1
415

516
### Patch Changes

‎packages/graphiql-react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/react",
3-
"version": "0.26.1",
3+
"version": "0.26.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/graphql/graphiql",
@@ -57,7 +57,7 @@
5757
"@types/codemirror": "^5.60.8",
5858
"clsx": "^1.2.1",
5959
"codemirror": "^5.65.3",
60-
"codemirror-graphql": "^2.1.0",
60+
"codemirror-graphql": "^2.1.1",
6161
"copy-to-clipboard": "^3.2.0",
6262
"framer-motion": "^6.5.1",
6363
"get-value": "^3.0.1",

‎packages/graphiql-react/src/editor/common.ts

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
import { KeyMap } from './types';
2+
import { isMacOs } from '../utility/is-macos';
23

34
export const DEFAULT_EDITOR_THEME = 'graphiql';
45
export const DEFAULT_KEY_MAP: KeyMap = 'sublime';
56

6-
let isMacOs = false;
7-
8-
if (typeof window === 'object') {
9-
isMacOs = window.navigator.platform.toLowerCase().indexOf('mac') === 0;
10-
}
11-
127
export const commonKeys = {
138
// Persistent search box in Query Editor
149
[isMacOs ? 'Cmd-F' : 'Ctrl-F']: 'findPersistent',

‎packages/graphiql-react/src/explorer/components/doc-explorer.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
&:not(:focus-within) [role='combobox'] {
4040
height: 24px;
41-
width: 4ch;
41+
width: 5ch;
4242
}
4343

4444
& [role='combobox']:focus {

‎packages/graphiql-react/src/explorer/components/search.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import { useExplorerContext } from '../context';
2424

2525
import './search.css';
2626
import { renderType } from './utils';
27+
import { isMacOs } from '../../utility/is-macos';
2728

2829
export function Search() {
2930
const { explorerNavStack, push } = useExplorerContext({
@@ -103,7 +104,7 @@ export function Search() {
103104
onFocus={handleFocus}
104105
onBlur={handleFocus}
105106
onChange={event => setSearchValue(event.target.value)}
106-
placeholder="&#x2318; K"
107+
placeholder={`${isMacOs ? '⌘' : 'Ctrl'} K`}
107108
ref={inputRef}
108109
value={searchValue}
109110
data-cy="doc-explorer-input"

‎packages/graphiql-react/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export {
7171
} from './storage';
7272
export { useTheme } from './theme';
7373
export { useDragResize } from './utility/resize';
74+
export { isMacOs } from './utility/is-macos';
7475

7576
export * from './icons';
7677
export * from './ui';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export const isMacOs =
2+
typeof navigator !== 'undefined' && navigator.userAgent.includes('Mac');

‎packages/graphiql/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## 3.7.1
4+
5+
### Patch Changes
6+
7+
- [#3751](https://github.com/graphql/graphiql/pull/3751) [`b8538d8`](https://github.com/graphql/graphiql/commit/b8538d87421edb086b32d4eb2e30a3f7d9d9e893) Thanks [@dimaMachina](https://github.com/dimaMachina)! - replace deprecated `navigator.platform` with `navigator.userAgent`
8+
9+
fix placeholder `⌘ K` in doc explorer search input for non mac devices, replace by `Ctrl K`
10+
11+
- Updated dependencies [[`b8538d8`](https://github.com/graphql/graphiql/commit/b8538d87421edb086b32d4eb2e30a3f7d9d9e893)]:
12+
- @graphiql/react@0.26.2
13+
314
## 3.7.0
415

516
### Minor Changes

‎packages/graphiql/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphiql",
3-
"version": "3.7.0",
3+
"version": "3.7.1",
44
"description": "An graphical interactive in-browser GraphQL IDE.",
55
"contributors": [
66
"Hyohyeon Jeong <asiandrummer@fb.com>",
@@ -47,7 +47,7 @@
4747
"webpack": "webpack-cli --config resources/webpack.config.js"
4848
},
4949
"dependencies": {
50-
"@graphiql/react": "^0.26.1"
50+
"@graphiql/react": "^0.26.2"
5151
},
5252
"peerDependencies": {
5353
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2",

‎packages/graphiql/src/components/GraphiQL.tsx

+2-5
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ import {
6060
UseVariableEditorArgs,
6161
VariableEditor,
6262
WriteableEditorProps,
63+
isMacOs,
6364
} from '@graphiql/react';
6465

6566
const majorVersion = parseInt(React.version.slice(0, 2), 10);
@@ -915,11 +916,7 @@ export function GraphiQLInterface(props: GraphiQLInterfaceProps) {
915916
);
916917
}
917918

918-
const modifier =
919-
typeof window !== 'undefined' &&
920-
window.navigator.platform.toLowerCase().indexOf('mac') === 0
921-
? 'Cmd'
922-
: 'Ctrl';
919+
const modifier = isMacOs ? '⌘' : 'Ctrl';
923920

924921
const SHORT_KEYS = Object.entries({
925922
'Search in editor': [modifier, 'F'],

‎packages/graphiql/test/beforeDevServer.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,13 @@ const path = require('node:path');
1010
// eslint-disable-next-line import-x/no-extraneous-dependencies
1111
const { createHandler } = require('graphql-http/lib/use/express');
1212
const schema = require('./schema');
13-
const badSchema = require('../cypress/fixtures/bad-schema.json');
13+
const { customExecute } = require('./execute');
1414

1515
module.exports = function beforeDevServer(app, _server, _compiler) {
1616
// GraphQL Server
17-
app.post('/graphql', createHandler({ schema }));
18-
app.get('/graphql', createHandler({ schema }));
19-
20-
app.post('/bad/graphql', (_req, res, next) => {
21-
res.json({ data: badSchema });
22-
next();
23-
});
17+
const handler = createHandler({ schema, execute: customExecute });
18+
app.post('/graphql', handler);
19+
app.get('/graphql', handler);
2420

2521
app.use('/images', express.static(path.join(__dirname, 'images')));
2622

0 commit comments

Comments
 (0)
Please sign in to comment.