Skip to content

Commit f263f77

Browse files
authored
enable prefer-destructuring rule (#2963)
* enable `prefer-destructuring` rule * fixes
1 parent 0434d94 commit f263f77

File tree

29 files changed

+71
-73
lines changed

29 files changed

+71
-73
lines changed

.changeset/strange-cheetahs-change.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
'codemirror-graphql': patch
3+
'graphiql': patch
4+
'@graphiql/react': patch
5+
'graphql-language-service': patch
6+
'graphql-language-service-server': patch
7+
'vscode-graphql-execution': patch
8+
---
9+
10+
enable `prefer-destructuring` rule

.eslintrc.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ module.exports = {
187187
'no-continue': 0,
188188
'no-inline-comments': 0,
189189
'no-mixed-operators': 0,
190-
'no-negated-condition': 'error',
190+
'no-negated-condition': 'off',
191+
'unicorn/no-negated-condition': 'error',
191192
'no-nested-ternary': 0,
192193
'no-new-object': 1,
193194
'no-plusplus': 0,
@@ -260,6 +261,7 @@ module.exports = {
260261
// Jest rules
261262
'jest/no-conditional-expect': 0,
262263

264+
'prefer-destructuring': ['error', { VariableDeclarator: { object: true } }],
263265
'promise/no-multiple-resolved': 'error',
264266
'sonarjs/no-redundant-jump': 'error',
265267
'unicorn/prefer-logical-operator-over-ternary': 'error',

packages/codemirror-graphql/src/hint.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ CodeMirror.registerHelper(
7070
editor: CodeMirror.Editor,
7171
options: GraphQLHintOptions,
7272
): IHints | undefined => {
73-
const schema = options.schema;
73+
const { schema } = options;
7474
if (!schema) {
7575
return;
7676
}

packages/codemirror-graphql/src/info.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,7 @@ CodeMirror.registerHelper(
6161
if (!options.schema || !token.state) {
6262
return;
6363
}
64-
65-
const state = token.state;
66-
const kind = state.kind;
67-
const step = state.step;
64+
const { kind, step } = token.state;
6865
const typeInfo = getTypeInfo(options.schema, token.state);
6966

7067
// Given a Schema and a Token, produce the contents of an info tooltip.
@@ -238,7 +235,7 @@ function renderDescription(
238235
| GraphQLEnumValue
239236
| GraphQLType,
240237
) {
241-
const description = (def as GraphQLInputField).description;
238+
const { description } = def as GraphQLInputField;
242239
if (description) {
243240
const descriptionDiv = document.createElement('div');
244241
descriptionDiv.className = 'info-description';
@@ -293,7 +290,7 @@ function text(
293290
ref: Maybe<SchemaReference> = null,
294291
) {
295292
if (className) {
296-
const onClick = options.onClick;
293+
const { onClick } = options;
297294
let node;
298295
if (onClick) {
299296
node = document.createElement('a');

packages/codemirror-graphql/src/jump.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,8 @@ CodeMirror.registerHelper(
5353
// Given a Schema and a Token, produce a "SchemaReference" which refers to
5454
// the particular artifact from the schema (such as a type, field, argument,
5555
// or directive) that token references.
56-
const state = token.state;
57-
const kind = state.kind;
58-
const step = state.step;
56+
const { state } = token;
57+
const { kind, step } = state;
5958
const typeInfo = getTypeInfo(options.schema, state);
6059

6160
if (

packages/codemirror-graphql/src/lint.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ CodeMirror.registerHelper(
4242
'lint',
4343
'graphql',
4444
(text: string, options: GraphQLLintOptions): CodeMirror.Annotation[] => {
45-
const schema = options.schema;
45+
const { schema } = options;
4646
const rawResults = getDiagnostics(
4747
text,
4848
schema,

packages/codemirror-graphql/src/results/mode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function indent(
5252
state: State,
5353
textAfter: string,
5454
) {
55-
const levels = state.levels;
55+
const { levels } = state;
5656
// If there is no stack of levels, use the current level.
5757
// Otherwise, use the top level, preemptively dedenting for close braces.
5858
const level =

packages/codemirror-graphql/src/utils/collectVariables.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function collectVariables(
2424
const variableToType = Object.create(null);
2525
documentAST.definitions.forEach(definition => {
2626
if (definition.kind === 'OperationDefinition') {
27-
const variableDefinitions = definition.variableDefinitions;
27+
const { variableDefinitions } = definition;
2828
if (variableDefinitions) {
2929
variableDefinitions.forEach(({ variable, type }) => {
3030
const inputType = typeFromAST(schema, type as NamedTypeNode);

packages/codemirror-graphql/src/utils/info-addon.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function createState(options: GraphQLInfoOptions) {
4545
}
4646

4747
function getHoverTime(cm: CodeMirror.Editor) {
48-
const options = cm.state.info.options;
48+
const { options } = cm.state.info;
4949
return options?.hoverTime || 500;
5050
}
5151

@@ -96,7 +96,7 @@ function onMouseHover(cm: CodeMirror.Editor, box: DOMRect) {
9696
});
9797

9898
const state = cm.state.info;
99-
const options = state.options;
99+
const { options } = state;
100100
const render = options.render || cm.getHelper(pos, 'info');
101101
if (render) {
102102
const token = cm.getTokenAt(pos, true);

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

+3-5
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function onKeyDown(cm: CodeMirror.Editor, event: KeyboardEvent) {
103103
};
104104

105105
const onClick = (clickEvent: MouseEvent) => {
106-
const destination = cm.state.jump.destination;
106+
const { destination } = cm.state.jump;
107107
if (destination) {
108108
cm.state.jump.options.onClick(destination, clickEvent);
109109
}
@@ -134,11 +134,9 @@ function enableJumpMode(cm: CodeMirror.Editor) {
134134
return;
135135
}
136136

137-
const cursor = cm.state.jump.cursor;
137+
const { cursor, options } = cm.state.jump;
138138
const pos = cm.coordsChar(cursor);
139139
const token = cm.getTokenAt(pos, true);
140-
141-
const options = cm.state.jump.options;
142140
const getDestination = options.getDestination || cm.getHelper(pos, 'jump');
143141
if (getDestination) {
144142
const destination = getDestination(token, options, cm);
@@ -156,7 +154,7 @@ function enableJumpMode(cm: CodeMirror.Editor) {
156154
}
157155

158156
function disableJumpMode(cm: CodeMirror.Editor) {
159-
const marker = cm.state.jump.marker;
157+
const { marker } = cm.state.jump;
160158
cm.state.jump.marker = null;
161159
cm.state.jump.destination = null;
162160

packages/codemirror-graphql/src/utils/mode-indent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function indent(
1919
state: State,
2020
textAfter: string,
2121
) {
22-
const levels = state.levels;
22+
const { levels } = state;
2323
// If there is no stack of levels, use the current level.
2424
// Otherwise, use the top level, preemptively dedenting for close braces.
2525
const level =

packages/codemirror-graphql/src/variables/hint.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,13 @@ function getVariablesHint(
8989
const state =
9090
token.state.kind === 'Invalid' ? token.state.prevState : token.state;
9191

92-
const kind = state.kind;
93-
const step = state.step;
94-
92+
const { kind, step } = state;
9593
// Variables can only be an object literal.
9694
if (kind === 'Document' && step === 0) {
9795
return hintList(cur, token, [{ text: '{' }]);
9896
}
9997

100-
const variableToType = options.variableToType;
98+
const { variableToType } = options;
10199
if (!variableToType) {
102100
return;
103101
}

packages/codemirror-graphql/src/variables/lint.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ CodeMirror.registerHelper(
6666
}
6767

6868
// If there are not yet known variables, do nothing.
69-
const variableToType = options.variableToType;
69+
const { variableToType } = options;
7070
if (!variableToType) {
7171
return [];
7272
}

packages/codemirror-graphql/src/variables/mode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function indent(
5353
state: State,
5454
textAfter: string,
5555
) {
56-
const levels = state.levels;
56+
const { levels } = state;
5757
// If there is no stack of levels, use the current level.
5858
// Otherwise, use the top level, preemptively dedenting for close braces.
5959
const level =

packages/graphiql-react/src/editor/components/image-preview.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function tokenToURL(token: Token) {
7676
const value = token.string.slice(1).slice(0, -1).trim();
7777

7878
try {
79-
const location = window.location;
79+
const { location } = window;
8080
return new URL(value, location.protocol + '//' + location.host);
8181
} catch {
8282
return;

packages/graphiql/src/components/GraphiQL.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ export function GraphiQLInterface(props: GraphiQLInterfaceProps) {
787787
type="button"
788788
id="disable-persist-headers"
789789
className={
790-
!editorContext.shouldPersistHeaders ? 'active' : undefined
790+
editorContext.shouldPersistHeaders ? undefined : 'active'
791791
}
792792
onClick={() => {
793793
editorContext.setShouldPersistHeaders(false);

packages/graphiql/src/components/__tests__/GraphiQL.spec.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ describe('GraphiQL', () => {
424424
const callback = async () => {
425425
try {
426426
await findByText('Persist headers');
427-
} catch (e) {
427+
} catch {
428428
// eslint-disable-next-line no-throw-literal
429429
throw 'failed';
430430
}

packages/graphiql/test/e2e-server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ app.post('/graphql-error/graphql', (_req, res, next) => {
4343
app.use(express.static(path.resolve(__dirname, '../')));
4444

4545
app.listen(process.env.PORT || 0, function () {
46-
const port = this.address().port;
46+
const { port } = this.address();
4747

4848
console.log(`Started on http://localhost:${port}/`);
4949
console.log('PID', process.pid);

packages/graphql-language-service-server/src/Logger.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class Logger implements VSCodeLogger {
6565
_log(message: string, severityKey: SeverityEnum): void {
6666
const timestamp = new Date().toLocaleString(undefined);
6767
const severity = DIAGNOSTIC_SEVERITY[severityKey];
68-
const pid = process.pid;
68+
const { pid } = process;
6969

7070
const stringMessage = String(message).trim();
7171
const logMessage = `${timestamp} [${severity}] (pid: ${pid}) graphql-language-service-usage-logs: ${stringMessage}\n`;

packages/graphql-language-service-server/src/MessageProcessor.ts

+11-14
Original file line numberDiff line numberDiff line change
@@ -429,14 +429,14 @@ export class MessageProcessor {
429429
'`textDocument`, `textDocument.uri`, and `contentChanges` arguments are required.',
430430
);
431431
}
432-
const textDocument = params.textDocument;
433-
const uri = textDocument.uri;
432+
const { textDocument } = params;
433+
const { uri } = textDocument;
434434
const project = this._graphQLCache.getProjectForFile(uri);
435435
try {
436-
const contentChanges = params.contentChanges;
436+
const { contentChanges } = params;
437437
const contentChange = contentChanges[contentChanges.length - 1];
438438

439-
// As `contentChanges` is an array and we just want the
439+
// As `contentChanges` is an array, and we just want the
440440
// latest update to the text, grab the last entry from the array.
441441

442442
// If it's a .js file, try parsing the contents to see if GraphQL queries
@@ -512,8 +512,8 @@ export class MessageProcessor {
512512
if (!params || !params.textDocument) {
513513
throw new Error('`textDocument` is required.');
514514
}
515-
const textDocument = params.textDocument;
516-
const uri = textDocument.uri;
515+
const { textDocument } = params;
516+
const { uri } = textDocument;
517517

518518
if (this._textDocumentCache.has(uri)) {
519519
this._textDocumentCache.delete(uri);
@@ -560,8 +560,7 @@ export class MessageProcessor {
560560

561561
this.validateDocumentAndPosition(params);
562562

563-
const textDocument = params.textDocument;
564-
const position = params.position;
563+
const { textDocument, position } = params;
565564

566565
// `textDocument/completion` event takes advantage of the fact that
567566
// `textDocument/didChange` event always fires before, which would have
@@ -617,8 +616,7 @@ export class MessageProcessor {
617616

618617
this.validateDocumentAndPosition(params);
619618

620-
const textDocument = params.textDocument;
621-
const position = params.position;
619+
const { textDocument, position } = params;
622620

623621
const cachedDocument = this._getCachedDocument(textDocument.uri);
624622
if (!cachedDocument) {
@@ -679,7 +677,7 @@ export class MessageProcessor {
679677
change.type === FileChangeTypeKind.Created ||
680678
change.type === FileChangeTypeKind.Changed
681679
) {
682-
const uri = change.uri;
680+
const { uri } = change;
683681

684682
const text = readFileSync(URI.parse(uri).fsPath, 'utf-8');
685683
const contents = this._parser(text, uri);
@@ -747,8 +745,7 @@ export class MessageProcessor {
747745
if (!params || !params.textDocument || !params.position) {
748746
throw new Error('`textDocument` and `position` arguments are required.');
749747
}
750-
const textDocument = params.textDocument;
751-
const position = params.position;
748+
const { textDocument, position } = params;
752749
const project = this._graphQLCache.getProjectForFile(textDocument.uri);
753750
if (project) {
754751
await this._cacheSchemaFilesForProject(project);
@@ -846,7 +843,7 @@ export class MessageProcessor {
846843
throw new Error('`textDocument` argument is required.');
847844
}
848845

849-
const textDocument = params.textDocument;
846+
const { textDocument } = params;
850847
const cachedDocument = this._getCachedDocument(textDocument.uri);
851848
if (!cachedDocument || !cachedDocument.contents[0]) {
852849
return [];

packages/graphql-language-service-server/src/findGraphQLTags.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export function findGraphQLTags(
156156
const asts = parsedASTs;
157157

158158
const parseTemplateLiteral = (node: TemplateLiteral) => {
159-
const loc = node.quasis[0].loc;
159+
const { loc } = node.quasis[0];
160160
if (loc) {
161161
if (node.quasis.length > 1) {
162162
const last = node.quasis.pop();
@@ -183,7 +183,7 @@ export function findGraphQLTags(
183183
const visitors = {
184184
CallExpression: (node: Expression) => {
185185
if ('callee' in node) {
186-
const callee = node.callee;
186+
const { callee } = node;
187187

188188
if (
189189
callee.type === 'Identifier' &&
@@ -203,7 +203,7 @@ export function findGraphQLTags(
203203
TaggedTemplateExpression: (node: TaggedTemplateExpression) => {
204204
const tagName = getGraphQLTagName(node.tag);
205205
if (tagName) {
206-
const loc = node.quasi.quasis[0].loc;
206+
const { loc } = node.quasi.quasis[0];
207207
const template =
208208
node.quasi.quasis.length > 1
209209
? node.quasi.quasis.map(quasi => quasi.value.raw).join('')

packages/graphql-language-service-server/src/startServer.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,7 @@ export default async function startServer(
168168
process.exit(1);
169169
}
170170

171-
const port = options.port;
172-
const hostname = options.hostname;
171+
const { port, hostname } = options;
173172
const socket = net
174173
.createServer(client => {
175174
client.setEncoding('utf8');

0 commit comments

Comments
 (0)