Search in sources :

Example 1 with ScssLintSettingsPage

use of com.scss.settings.ScssLintSettingsPage in project scss-lint-plugin by idok.

the class ScssLintInspection method showSettings.

static void showSettings(Project project) {
    ScssLintSettingsPage configurable = new ScssLintSettingsPage(project);
    configurable.showSettings();
//        String dimensionKey = ShowSettingsUtilImpl.createDimensionKey(configurable);
//        SingleConfigurableEditor singleConfigurableEditor = new SingleConfigurableEditor(project, configurable, dimensionKey, false);
//        singleConfigurableEditor.show();
}
Also used : ScssLintSettingsPage(com.scss.settings.ScssLintSettingsPage)

Example 2 with ScssLintSettingsPage

use of com.scss.settings.ScssLintSettingsPage in project scss-lint-plugin by idok.

the class ScssLintAnnotationResult method apply.

@Override
public void apply(@NotNull PsiFile file, ScssLintAnnotationResult annotationResult, @NotNull AnnotationHolder holder) {
    if (annotationResult == null) {
        return;
    }
    InspectionProjectProfileManager inspectionProjectProfileManager = InspectionProjectProfileManager.getInstance(file.getProject());
    SeverityRegistrar severityRegistrar = inspectionProjectProfileManager.getSeverityRegistrar();
    HighlightDisplayKey inspectionKey = getHighlightDisplayKeyByClass();
    EditorColorsScheme colorsScheme = annotationResult.input.colorsScheme;
    Document document = PsiDocumentManager.getInstance(file.getProject()).getDocument(file);
    if (document == null) {
        return;
    }
    if (annotationResult.fileLevel != null) {
        Annotation annotation = holder.createWarningAnnotation(file, annotationResult.fileLevel);
        annotation.registerFix(new EditSettingsAction(new ScssLintSettingsPage(file.getProject())));
        annotation.setFileLevelAnnotation(true);
        return;
    }
    // TODO consider adding a fix to edit configuration file
    if (annotationResult.result == null || annotationResult.result.lint == null || annotationResult.result.lint.isEmpty()) {
        return;
    }
    // String relativeFile = FileUtils.makeRelative(file.getProject(), file.getVirtualFile());
    List<Lint.Issue> issues = annotationResult.result.lint.values().iterator().next();
    if (issues == null) {
        return;
    }
    ScssLintProjectComponent component = annotationResult.input.project.getComponent(ScssLintProjectComponent.class);
    int tabSize = 4;
    for (Lint.Issue issue : issues) {
        HighlightSeverity severity = getHighlightSeverity(issue, component.treatAsWarnings);
        TextAttributes forcedTextAttributes = AnnotatorUtils.getTextAttributes(colorsScheme, severityRegistrar, severity);
        Annotation annotation = createAnnotation(holder, file, document, issue, "SCSS Lint: ", tabSize, severity, forcedTextAttributes, inspectionKey, false);
        if (annotation != null) {
            int offset = StringUtil.lineColToOffset(document.getText(), issue.line - 1, issue.column);
            PsiElement lit = PsiUtil.getElementAtOffset(file, offset);
            BaseActionFix actionFix = Fixes.getFixForRule(issue.linter, lit);
            if (actionFix != null) {
                annotation.registerFix(actionFix, null, inspectionKey);
            }
        //                annotation.registerFix(new SuppressActionFix(issue.rule, lit), null, inspectionKey);
        }
    }
}
Also used : HighlightSeverity(com.intellij.lang.annotation.HighlightSeverity) HighlightDisplayKey(com.intellij.codeInsight.daemon.HighlightDisplayKey) Lint(com.scss.utils.scssLint.Lint) ScssLintSettingsPage(com.scss.settings.ScssLintSettingsPage) Document(com.intellij.openapi.editor.Document) Annotation(com.intellij.lang.annotation.Annotation) Lint(com.scss.utils.scssLint.Lint) TextAttributes(com.intellij.openapi.editor.markup.TextAttributes) EditorColorsScheme(com.intellij.openapi.editor.colors.EditorColorsScheme) InspectionProjectProfileManager(com.intellij.profile.codeInspection.InspectionProjectProfileManager) SeverityRegistrar(com.intellij.codeInsight.daemon.impl.SeverityRegistrar) PsiElement(com.intellij.psi.PsiElement) BaseActionFix(com.scss.annotator.BaseActionFix)

Aggregations

ScssLintSettingsPage (com.scss.settings.ScssLintSettingsPage)2 HighlightDisplayKey (com.intellij.codeInsight.daemon.HighlightDisplayKey)1 SeverityRegistrar (com.intellij.codeInsight.daemon.impl.SeverityRegistrar)1 Annotation (com.intellij.lang.annotation.Annotation)1 HighlightSeverity (com.intellij.lang.annotation.HighlightSeverity)1 Document (com.intellij.openapi.editor.Document)1 EditorColorsScheme (com.intellij.openapi.editor.colors.EditorColorsScheme)1 TextAttributes (com.intellij.openapi.editor.markup.TextAttributes)1 InspectionProjectProfileManager (com.intellij.profile.codeInspection.InspectionProjectProfileManager)1 PsiElement (com.intellij.psi.PsiElement)1 BaseActionFix (com.scss.annotator.BaseActionFix)1 Lint (com.scss.utils.scssLint.Lint)1