/* * Copyright 2012 Ronnie Kolehmainen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.github.cssxfire.resolve; import com.intellij.psi.PsiElement; import com.intellij.psi.css.CssBlock; import com.intellij.psi.util.PsiTreeUtil; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.jetbrains.plugins.scss.psi.SCSSMixinDeclaration; import org.jetbrains.plugins.scss.psi.SassScssVariableDeclaration; /** * This class will only be loaded if the SASS plugin is active. See {@link CssPluginsFacade#getVariableProcessor(com.intellij.psi.PsiElement, String)} * <br><br> * Created by IntelliJ IDEA. * User: Ronnie */ public class ScssVariableProcessor extends CssResolveProcessor { public ScssVariableProcessor(String name) { super(name); } @Override public boolean executeInScope(@NotNull PsiElement base) { // If the variable is used within a mixin, check if the variable is declared as mixin parameter or // locally within the same block SCSSMixinDeclaration mixinDeclaration = PsiTreeUtil.getParentOfType(base, SCSSMixinDeclaration.class); if (mixinDeclaration != null) { if (!executeChildren(mixinDeclaration)) { return false; } CssBlock[] blocks = PsiTreeUtil.getChildrenOfType(mixinDeclaration, CssBlock.class); if (blocks != null) { for (CssBlock block : blocks) { if (!executeChildren(block)) { return false; } } } } return super.executeInScope(base); } private boolean executeChildren(@Nullable PsiElement element) { if (element == null) { return true; } SassScssVariableDeclaration[] localVariableDeclarations = PsiTreeUtil.getChildrenOfType(element, SassScssVariableDeclaration.class); if (localVariableDeclarations != null) { for (SassScssVariableDeclaration localVariableDeclaration : localVariableDeclarations) { if (!executeInternal(localVariableDeclaration)) { return false; } } } return true; } public boolean executeInternal(@NotNull PsiElement element) { if (element instanceof SassScssVariableDeclaration) { SassScssVariableDeclaration scssVariableDeclaration = (SassScssVariableDeclaration) element; String scssVariableDeclarationName = scssVariableDeclaration.getName(); if (scssVariableDeclarationName.equals(name)) { if (CssResolveUtils.containsErrors(scssVariableDeclaration.getParent())) { // Error in PSI tree - skip return true; } result.set(element); return false; } } return true; } }