add initial quick fix for utility conflict diagnostic
parent
b79dbfc9f9
commit
01941f967b
|
@ -22,7 +22,10 @@ import {
|
|||
isInvalidApplyDiagnostic,
|
||||
AugmentedDiagnostic,
|
||||
InvalidApplyDiagnostic,
|
||||
isUtilityConflictsDiagnostic,
|
||||
UtilityConflictsDiagnostic,
|
||||
} from '../diagnostics/types'
|
||||
import { flatten, dedupeBy } from '../../../util/array'
|
||||
|
||||
async function getDiagnosticsFromCodeActionParams(
|
||||
state: State,
|
||||
|
@ -35,7 +38,11 @@ async function getDiagnosticsFromCodeActionParams(
|
|||
return params.context.diagnostics
|
||||
.map((diagnostic) => {
|
||||
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)
|
||||
|
@ -55,11 +62,13 @@ export async function provideCodeActions(
|
|||
codes
|
||||
)
|
||||
|
||||
return Promise.all(
|
||||
diagnostics
|
||||
.map((diagnostic) => {
|
||||
let actions = diagnostics.map((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(
|
||||
|
@ -68,10 +77,11 @@ export async function provideCodeActions(
|
|||
)
|
||||
|
||||
if (!match) {
|
||||
return null
|
||||
return []
|
||||
}
|
||||
|
||||
return {
|
||||
return [
|
||||
{
|
||||
title: `Replace with '${match.groups.replacement}'`,
|
||||
kind: CodeActionKind.QuickFix,
|
||||
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(
|
||||
|
@ -154,11 +167,56 @@ function classNameToAst(
|
|||
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,
|
||||
params: CodeActionParams,
|
||||
diagnostic: InvalidApplyDiagnostic
|
||||
): Promise<CodeAction> {
|
||||
): Promise<CodeAction[]> {
|
||||
let document = state.editor.documents.get(params.textDocument.uri)
|
||||
let documentText = document.getText()
|
||||
const { postcss } = state.modules
|
||||
|
@ -250,11 +308,12 @@ async function provideInvalidApplyCodeAction(
|
|||
]).process(documentText, { from: undefined })
|
||||
|
||||
if (!change) {
|
||||
return null
|
||||
return []
|
||||
}
|
||||
|
||||
return {
|
||||
title: 'Extract to new rule.',
|
||||
return [
|
||||
{
|
||||
title: 'Extract to new rule',
|
||||
kind: CodeActionKind.QuickFix,
|
||||
diagnostics: [diagnostic],
|
||||
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)
|
||||
}
|
||||
|
||||
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[] {
|
||||
return Array.isArray(value) ? value : [value]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue