add initial quick fix for utility conflict diagnostic
parent
b79dbfc9f9
commit
01941f967b
|
@ -22,7 +22,10 @@ import {
|
||||||
isInvalidApplyDiagnostic,
|
isInvalidApplyDiagnostic,
|
||||||
AugmentedDiagnostic,
|
AugmentedDiagnostic,
|
||||||
InvalidApplyDiagnostic,
|
InvalidApplyDiagnostic,
|
||||||
|
isUtilityConflictsDiagnostic,
|
||||||
|
UtilityConflictsDiagnostic,
|
||||||
} from '../diagnostics/types'
|
} from '../diagnostics/types'
|
||||||
|
import { flatten, dedupeBy } from '../../../util/array'
|
||||||
|
|
||||||
async function getDiagnosticsFromCodeActionParams(
|
async function getDiagnosticsFromCodeActionParams(
|
||||||
state: State,
|
state: State,
|
||||||
|
@ -35,7 +38,11 @@ async function getDiagnosticsFromCodeActionParams(
|
||||||
return params.context.diagnostics
|
return params.context.diagnostics
|
||||||
.map((diagnostic) => {
|
.map((diagnostic) => {
|
||||||
return diagnostics.find((d) => {
|
return diagnostics.find((d) => {
|
||||||
return rangesEqual(d.range, diagnostic.range)
|
return (
|
||||||
|
d.code === diagnostic.code &&
|
||||||
|
d.message === diagnostic.message &&
|
||||||
|
rangesEqual(d.range, diagnostic.range)
|
||||||
|
)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.filter(Boolean)
|
.filter(Boolean)
|
||||||
|
@ -55,11 +62,13 @@ export async function provideCodeActions(
|
||||||
codes
|
codes
|
||||||
)
|
)
|
||||||
|
|
||||||
return Promise.all(
|
let actions = diagnostics.map((diagnostic) => {
|
||||||
diagnostics
|
|
||||||
.map((diagnostic) => {
|
|
||||||
if (isInvalidApplyDiagnostic(diagnostic)) {
|
if (isInvalidApplyDiagnostic(diagnostic)) {
|
||||||
return provideInvalidApplyCodeAction(state, params, diagnostic)
|
return provideInvalidApplyCodeActions(state, params, diagnostic)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isUtilityConflictsDiagnostic(diagnostic)) {
|
||||||
|
return provideUtilityConflictsCodeActions(state, params, diagnostic)
|
||||||
}
|
}
|
||||||
|
|
||||||
let match = findLast(
|
let match = findLast(
|
||||||
|
@ -68,10 +77,11 @@ export async function provideCodeActions(
|
||||||
)
|
)
|
||||||
|
|
||||||
if (!match) {
|
if (!match) {
|
||||||
return null
|
return []
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return [
|
||||||
|
{
|
||||||
title: `Replace with '${match.groups.replacement}'`,
|
title: `Replace with '${match.groups.replacement}'`,
|
||||||
kind: CodeActionKind.QuickFix,
|
kind: CodeActionKind.QuickFix,
|
||||||
diagnostics: [diagnostic],
|
diagnostics: [diagnostic],
|
||||||
|
@ -85,10 +95,13 @@ export async function provideCodeActions(
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
]
|
||||||
})
|
})
|
||||||
.filter(Boolean)
|
|
||||||
)
|
return Promise.all(actions)
|
||||||
|
.then(flatten)
|
||||||
|
.then((x) => dedupeBy(x, (item) => JSON.stringify(item.edit)))
|
||||||
}
|
}
|
||||||
|
|
||||||
function classNameToAst(
|
function classNameToAst(
|
||||||
|
@ -154,11 +167,56 @@ function classNameToAst(
|
||||||
return cssObjToAst(obj, state.modules.postcss)
|
return cssObjToAst(obj, state.modules.postcss)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function provideInvalidApplyCodeAction(
|
async function provideUtilityConflictsCodeActions(
|
||||||
|
state: State,
|
||||||
|
params: CodeActionParams,
|
||||||
|
diagnostic: UtilityConflictsDiagnostic
|
||||||
|
): Promise<CodeAction[]> {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
title: `Delete '${diagnostic.className.className}'`,
|
||||||
|
kind: CodeActionKind.QuickFix,
|
||||||
|
diagnostics: [diagnostic],
|
||||||
|
edit: {
|
||||||
|
changes: {
|
||||||
|
[params.textDocument.uri]: [
|
||||||
|
{
|
||||||
|
range: diagnostic.className.classList.range,
|
||||||
|
newText: removeRangeFromString(
|
||||||
|
diagnostic.className.classList.classList,
|
||||||
|
diagnostic.className.relativeRange
|
||||||
|
),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: `Delete '${diagnostic.otherClassName.className}'`,
|
||||||
|
kind: CodeActionKind.QuickFix,
|
||||||
|
diagnostics: [diagnostic],
|
||||||
|
edit: {
|
||||||
|
changes: {
|
||||||
|
[params.textDocument.uri]: [
|
||||||
|
{
|
||||||
|
range: diagnostic.className.classList.range,
|
||||||
|
newText: removeRangeFromString(
|
||||||
|
diagnostic.className.classList.classList,
|
||||||
|
diagnostic.otherClassName.relativeRange
|
||||||
|
),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
async function provideInvalidApplyCodeActions(
|
||||||
state: State,
|
state: State,
|
||||||
params: CodeActionParams,
|
params: CodeActionParams,
|
||||||
diagnostic: InvalidApplyDiagnostic
|
diagnostic: InvalidApplyDiagnostic
|
||||||
): Promise<CodeAction> {
|
): Promise<CodeAction[]> {
|
||||||
let document = state.editor.documents.get(params.textDocument.uri)
|
let document = state.editor.documents.get(params.textDocument.uri)
|
||||||
let documentText = document.getText()
|
let documentText = document.getText()
|
||||||
const { postcss } = state.modules
|
const { postcss } = state.modules
|
||||||
|
@ -250,11 +308,12 @@ async function provideInvalidApplyCodeAction(
|
||||||
]).process(documentText, { from: undefined })
|
]).process(documentText, { from: undefined })
|
||||||
|
|
||||||
if (!change) {
|
if (!change) {
|
||||||
return null
|
return []
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return [
|
||||||
title: 'Extract to new rule.',
|
{
|
||||||
|
title: 'Extract to new rule',
|
||||||
kind: CodeActionKind.QuickFix,
|
kind: CodeActionKind.QuickFix,
|
||||||
diagnostics: [diagnostic],
|
diagnostics: [diagnostic],
|
||||||
edit: {
|
edit: {
|
||||||
|
@ -275,5 +334,6 @@ async function provideInvalidApplyCodeAction(
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,16 @@ export function dedupe<T>(arr: Array<T>): Array<T> {
|
||||||
return arr.filter((value, index, self) => self.indexOf(value) === index)
|
return arr.filter((value, index, self) => self.indexOf(value) === index)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function dedupeBy<T>(
|
||||||
|
arr: Array<T>,
|
||||||
|
transform: (item: T) => any
|
||||||
|
): Array<T> {
|
||||||
|
return arr.filter(
|
||||||
|
(value, index, self) =>
|
||||||
|
self.map(transform).indexOf(transform(value)) === index
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
export function ensureArray<T>(value: T | T[]): T[] {
|
export function ensureArray<T>(value: T | T[]): T[] {
|
||||||
return Array.isArray(value) ? value : [value]
|
return Array.isArray(value) ? value : [value]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue