Search in sources :

Example 1 with JSAttributeNameValuePair

use of com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair in project intellij-plugins by JetBrains.

the class CreateFlexSkinIntention method appendSkinStates.

private static void appendSkinStates(final Collection<String> skinStates, final JSClass jsClass, final Set<JSClass> visited) {
    visited.add(jsClass);
    final JSAttributeList attributeList = jsClass.getAttributeList();
    if (attributeList != null) {
        final JSAttribute[] attributes = attributeList.getAttributesByName("SkinState");
        for (final JSAttribute attribute : attributes) {
            final JSAttributeNameValuePair pair = attribute.getValueByName(null);
            if (pair != null) {
                final String state = pair.getSimpleValue();
                if (!skinStates.contains(state)) {
                    skinStates.add(state);
                }
            }
        }
    }
    for (final JSClass superClass : jsClass.getSuperClasses()) {
        if (!visited.contains(superClass)) {
            appendSkinStates(skinStates, superClass, visited);
        }
    }
}
Also used : JSAttributeList(com.intellij.lang.javascript.psi.ecmal4.JSAttributeList) JSAttribute(com.intellij.lang.javascript.psi.ecmal4.JSAttribute) JSAttributeNameValuePair(com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair) JSClass(com.intellij.lang.javascript.psi.ecmal4.JSClass)

Example 2 with JSAttributeNameValuePair

use of com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair in project intellij-plugins by JetBrains.

the class MxmlReferenceContributor method registerReferenceProviders.

@Override
public void registerReferenceProviders(@NotNull final PsiReferenceRegistrar registrar) {
    registrar.registerReferenceProvider(XmlPatterns.xmlAttributeValue().withLocalName(or(string().endsWith(STYLE_NAME_ATTR_SUFFIX), string().equalTo(STYLE_NAME_ATTR))).and(new FilterPattern(new ElementFilter() {

        public boolean isAcceptable(final Object element, final PsiElement context) {
            return !((PsiElement) element).textContains('{');
        }

        public boolean isClassAcceptable(final Class hintClass) {
            return true;
        }
    })), CssReferenceProviderUtil.CSS_CLASS_OR_ID_KEY_PROVIDER.getProvider());
    XmlUtil.registerXmlAttributeValueReferenceProvider(registrar, null, new ElementFilter() {

        @Override
        public boolean isAcceptable(Object element, PsiElement context) {
            PsiElement parent = ((PsiElement) element).getParent();
            if (parent instanceof XmlAttribute) {
                XmlAttributeDescriptor descriptor = ((XmlAttribute) parent).getDescriptor();
                if (descriptor instanceof AnnotationBackedDescriptorImpl) {
                    String format = ((AnnotationBackedDescriptor) descriptor).getFormat();
                    return FlexCssPropertyDescriptor.COLOR_FORMAT.equals(format);
                }
            }
            return false;
        }

        @Override
        public boolean isClassAcceptable(Class hintClass) {
            return true;
        }
    }, true, new PsiReferenceProvider() {

        @NotNull
        @Override
        public PsiReference[] getReferencesByElement(@NotNull final PsiElement element, @NotNull ProcessingContext context) {
            XmlAttributeValue value = (XmlAttributeValue) element;
            XmlAttribute parent = (XmlAttribute) value.getParent();
            int length = value.getTextLength();
            if (length >= 2) {
                AnnotationBackedDescriptor descriptor = (AnnotationBackedDescriptor) parent.getDescriptor();
                assert descriptor != null;
                if (JSCommonTypeNames.ARRAY_CLASS_NAME.equals(descriptor.getType())) {
                    // drop quotes
                    String text = element.getText().substring(1, length - 1);
                    final List<PsiReference> references = new ArrayList<>();
                    new ArrayAttributeValueProcessor() {

                        @Override
                        protected void processElement(int start, int end) {
                            references.add(new FlexColorReference(element, new TextRange(start + 1, end + 1)));
                        }
                    }.process(text);
                    return references.toArray(new PsiReference[references.size()]);
                } else {
                    // inside quotes
                    return new PsiReference[] { new FlexColorReference(element, new TextRange(1, length - 1)) };
                }
            }
            return PsiReference.EMPTY_ARRAY;
        }
    });
    XmlUtil.registerXmlAttributeValueReferenceProvider(registrar, null, new ElementFilter() {

        public boolean isAcceptable(final Object element, final PsiElement context) {
            PsiElement parent = ((PsiElement) element).getParent();
            if (!(parent instanceof XmlAttribute) || !((XmlAttribute) parent).isNamespaceDeclaration()) {
                return false;
            }
            final PsiElement parentParent = parent.getParent();
            if (parentParent instanceof XmlTag && MxmlJSClass.isInsideTagThatAllowsAnyXmlContent((XmlTag) parentParent)) {
                return false;
            }
            return true;
        }

        public boolean isClassAcceptable(final Class hintClass) {
            return true;
        }
    }, true, new PsiReferenceProvider() {

        @NotNull
        public PsiReference[] getReferencesByElement(@NotNull PsiElement element, @NotNull ProcessingContext context) {
            final String trimmedText = StringUtil.unquoteString(element.getText());
            if (CodeContext.isPackageBackedNamespace(trimmedText)) {
                final JSReferenceSet referenceSet = new JSReferenceSet(element, trimmedText, 1, false, false) {

                    @Override
                    protected JSTextReference createTextReference(String s, int offset, boolean methodRef) {
                        return new JSTextReference(this, s, offset, methodRef) {

                            @Override
                            protected ResolveResult[] doResolve(@NotNull PsiFile psiFile) {
                                if ("*".equals(getCanonicalText())) {
                                    return new ResolveResult[] { new JSResolveResult(mySet.getElement()) };
                                }
                                return super.doResolve(psiFile);
                            }

                            @Override
                            protected MyResolveProcessor createResolveProcessor(String name, PsiElement place, ResultSink resultSink) {
                                return new MyResolveProcessor(name, place, resultSink) {

                                    @Override
                                    public boolean execute(@NotNull PsiElement element, @NotNull ResolveState state) {
                                        if (!(element instanceof JSPackageWrapper))
                                            return true;
                                        return super.execute(element, state);
                                    }
                                };
                            }
                        };
                    }
                };
                return referenceSet.getReferences();
            } else {
                return PsiReference.EMPTY_ARRAY;
            }
        }
    });
    // source attribute of Binding tag is handled in JSLanguageInjector
    XmlUtil.registerXmlAttributeValueReferenceProvider(registrar, new String[] { FlexReferenceContributor.DESTINATION_ATTR_NAME }, new ScopeFilter(new ParentElementFilter(new AndFilter(XmlTagFilter.INSTANCE, new TagNameFilter(BINDING_TAG_NAME), new NamespaceFilter(JavaScriptSupportLoader.LANGUAGE_NAMESPACES)), 2)), new PsiReferenceProvider() {

        @NotNull
        public PsiReference[] getReferencesByElement(@NotNull final PsiElement element, @NotNull final ProcessingContext context) {
            final String trimmedText = StringUtil.unquoteString(element.getText());
            final JSReferenceSet referenceSet = new JSReferenceSet(element, trimmedText, 1, false);
            return referenceSet.getReferences();
        }
    });
    XmlUtil.registerXmlAttributeValueReferenceProvider(registrar, new String[] { FlexReferenceContributor.SOURCE_ATTR_NAME }, new ScopeFilter(new ParentElementFilter(new AndFilter(XmlTagFilter.INSTANCE, new ElementFilterBase<PsiElement>(PsiElement.class) {

        protected boolean isElementAcceptable(final PsiElement element, final PsiElement context) {
            return true;
        }
    }), 2)), new PsiReferenceProvider() {

        @NotNull
        public PsiReference[] getReferencesByElement(@NotNull final PsiElement element, @NotNull final ProcessingContext context) {
            final XmlAttribute attribute = (XmlAttribute) element.getParent();
            final XmlTag tag = attribute.getParent();
            final String tagName = tag.getLocalName();
            final String trimmedText = StringUtil.unquoteString(element.getText());
            if (JavaScriptSupportLoader.isLanguageNamespace(tag.getNamespace())) {
                if (FlexPredefinedTagNames.SCRIPT.equals(tagName)) {
                    return ReferenceSupport.getFileRefs(element, element, 1, ReferenceSupport.LookupOptions.SCRIPT_SOURCE);
                }
                final String[] tagsWithSourceAttr = { MxmlJSClass.XML_TAG_NAME, FlexPredefinedTagNames.MODEL, JSCommonTypeNames.STRING_CLASS_NAME, JSCommonTypeNames.BOOLEAN_CLASS_NAME, JSCommonTypeNames.INT_TYPE_NAME, JSCommonTypeNames.UINT_TYPE_NAME, JSCommonTypeNames.NUMBER_CLASS_NAME };
                if (ArrayUtil.contains(tagName, tagsWithSourceAttr)) {
                    return ReferenceSupport.getFileRefs(element, element, 1, ReferenceSupport.LookupOptions.XML_AND_MODEL_SOURCE);
                }
                if (FlexPredefinedTagNames.STYLE.equals(tagName)) {
                    if (trimmedText.startsWith("http:")) {
                        return PsiReference.EMPTY_ARRAY;
                    } else {
                        return ReferenceSupport.getFileRefs(element, element, 1, ReferenceSupport.LookupOptions.STYLE_SOURCE);
                    }
                }
            }
            if (element.textContains('{') || element.textContains('@')) {
                return PsiReference.EMPTY_ARRAY;
            }
            final XmlAttributeDescriptor descriptor = attribute.getDescriptor();
            final PsiElement psiElement = descriptor == null ? null : descriptor.getDeclaration();
            if (psiElement instanceof JSFunction) {
                final JSAttribute inspectableAttr = AnnotationBackedDescriptorImpl.findInspectableAttr(psiElement);
                if (inspectableAttr != null) {
                    final JSAttributeNameValuePair attributeNameValuePair = inspectableAttr.getValueByName(FORMAT_ATTR_NAME);
                    if (attributeNameValuePair != null && FILE_ATTR_VALUE.equals(attributeNameValuePair.getSimpleValue())) {
                        return ReferenceSupport.getFileRefs(element, element, 1, ReferenceSupport.LookupOptions.NON_EMBEDDED_ASSET);
                    }
                }
            }
            return PsiReference.EMPTY_ARRAY;
        }
    });
    final Function<PsiReference, LocalQuickFix[]> quickFixProvider = reference -> {
        final PsiElement element = reference.getElement();
        final String classFqn = getTrimmedValueAndRange((XmlElement) element).first;
        final String tagOrAttrName = element instanceof XmlAttributeValue ? ((XmlAttribute) element.getParent()).getName() : ((XmlTag) element).getLocalName();
        final CreateClassIntentionWithCallback[] intentions;
        if (SKIN_CLASS_ATTR_NAME.equals(tagOrAttrName)) {
            intentions = new CreateClassIntentionWithCallback[] { new CreateFlexSkinIntention(classFqn, element) };
        } else if ("firstView".equals(tagOrAttrName)) {
            intentions = new CreateClassIntentionWithCallback[] { new CreateFlexMobileViewIntentionAndFix(classFqn, element, false) };
        } else {
            intentions = new CreateClassIntentionWithCallback[] { new ActionScriptCreateClassOrInterfaceFix(classFqn, null, element), new CreateFlexComponentFix(classFqn, element) };
        }
        for (CreateClassIntentionWithCallback intention : intentions) {
            intention.setCreatedClassFqnConsumer(fqn -> {
                if (!element.isValid())
                    return;
                if (element instanceof XmlAttributeValue) {
                    ((XmlAttribute) element.getParent()).setValue(fqn);
                } else {
                    ((XmlTag) element).getValue().setText(fqn);
                }
            });
        }
        return intentions;
    };
    XmlUtil.registerXmlTagReferenceProvider(registrar, null, TrueFilter.INSTANCE, true, createReferenceProviderForTagOrAttributeExpectingJSClass(quickFixProvider));
    XmlUtil.registerXmlAttributeValueReferenceProvider(registrar, null, TrueFilter.INSTANCE, createReferenceProviderForTagOrAttributeExpectingJSClass(quickFixProvider));
    registrar.registerReferenceProvider(xmlAttribute().withParent(XmlTag.class).with(new PatternCondition<XmlAttribute>("") {

        @Override
        public boolean accepts(@NotNull XmlAttribute xmlAttribute, ProcessingContext context) {
            String attrName = xmlAttribute.getLocalName();
            int dotPos = attrName.indexOf('.');
            if (dotPos == -1)
                return false;
            return JavaScriptSupportLoader.isFlexMxmFile(xmlAttribute.getContainingFile());
        }
    }), new PsiReferenceProvider() {

        @NotNull
        public PsiReference[] getReferencesByElement(@NotNull final PsiElement element, @NotNull final ProcessingContext context) {
            String attrName = ((XmlAttribute) element).getLocalName();
            int dotPos = attrName.indexOf('.');
            if (dotPos == -1)
                return PsiReference.EMPTY_ARRAY;
            return new PsiReference[] { new FlexReferenceContributor.StateReference(element, new TextRange(dotPos + 1, attrName.length())) };
        }
    });
    XmlUtil.registerXmlTagReferenceProvider(registrar, null, new ElementFilterBase<XmlTag>(XmlTag.class) {

        protected boolean isElementAcceptable(final XmlTag element, final PsiElement context) {
            return element.getName().indexOf('.') != -1;
        }
    }, false, new PsiReferenceProvider() {

        @NotNull
        public PsiReference[] getReferencesByElement(@NotNull final PsiElement element, @NotNull final ProcessingContext context) {
            final String name = ((XmlTag) element).getName();
            int dotIndex = name.indexOf('.');
            if (dotIndex == -1)
                return PsiReference.EMPTY_ARRAY;
            final int tagOffset = element.getTextRange().getStartOffset();
            final XmlToken startTagElement = XmlTagUtil.getStartTagNameElement((XmlTag) element);
            final XmlToken endTagElement = XmlTagUtil.getEndTagNameElement((XmlTag) element);
            if (startTagElement != null) {
                if (endTagElement != null && endTagElement.getText().equals(startTagElement.getText())) {
                    final int start1 = startTagElement.getTextRange().getStartOffset() - tagOffset;
                    final int start2 = endTagElement.getTextRange().getStartOffset() - tagOffset;
                    return new PsiReference[] { new FlexReferenceContributor.StateReference(element, new TextRange(start1 + dotIndex + 1, startTagElement.getTextRange().getEndOffset() - tagOffset)), new FlexReferenceContributor.StateReference(element, new TextRange(start2 + dotIndex + 1, endTagElement.getTextRange().getEndOffset() - tagOffset)) };
                } else {
                    final int start = startTagElement.getTextRange().getStartOffset() - tagOffset;
                    return new PsiReference[] { new FlexReferenceContributor.StateReference(element, new TextRange(start + dotIndex + 1, startTagElement.getTextRange().getEndOffset() - tagOffset)) };
                }
            }
            return PsiReference.EMPTY_ARRAY;
        }
    });
    XmlUtil.registerXmlAttributeValueReferenceProvider(registrar, new String[] { "basedOn", "fromState", "toState", FlexStateElementNames.NAME, FlexStateElementNames.STATE_GROUPS }, new ScopeFilter(new ParentElementFilter(new AndFilter(XmlTagFilter.INSTANCE, new NamespaceFilter(MxmlJSClass.MXML_URIS)), 2)), new PsiReferenceProvider() {

        @NotNull
        public PsiReference[] getReferencesByElement(@NotNull final PsiElement element, @NotNull final ProcessingContext context) {
            final PsiElement parent = element.getParent();
            final PsiElement tag = parent.getParent();
            PsiReference ref = null;
            String tagName = ((XmlTag) tag).getLocalName();
            String attrName = ((XmlAttribute) parent).getName();
            String attrValue = ((XmlAttribute) parent).getValue();
            if (attrValue != null && attrValue.contains("{"))
                return PsiReference.EMPTY_ARRAY;
            if (FlexStateElementNames.NAME.equals(attrName)) {
                if ("State".equals(tagName)) {
                    ref = new AttributeValueSelfReference(element);
                } else {
                    return PsiReference.EMPTY_ARRAY;
                }
            } else if ("basedOn".equals(attrName) && element.getTextLength() == 2) {
                return PsiReference.EMPTY_ARRAY;
            } else if (FlexStateElementNames.STATE_GROUPS.equals(attrName)) {
                if ("State".equals(tagName)) {
                    return buildStateRefs(element, true);
                } else {
                    return PsiReference.EMPTY_ARRAY;
                }
            }
            if (FlexReferenceContributor.TRANSITION_TAG_NAME.equals(tagName)) {
                if ((element.textContains('*') && "*".equals(StringUtil.unquoteString(element.getText()))) || // empty value for attr, current state
                element.getTextLength() == 2) {
                    return PsiReference.EMPTY_ARRAY;
                }
            }
            if (ref == null) {
                ref = new FlexReferenceContributor.StateReference(element);
            }
            return new PsiReference[] { ref };
        }
    });
    XmlUtil.registerXmlAttributeValueReferenceProvider(registrar, new String[] { FlexStateElementNames.EXCLUDE_FROM, FlexStateElementNames.INCLUDE_IN }, new ScopeFilter(new ParentElementFilter(XmlTagFilter.INSTANCE, 2)), new PsiReferenceProvider() {

        @NotNull
        public PsiReference[] getReferencesByElement(@NotNull final PsiElement element, @NotNull final ProcessingContext context) {
            return buildStateRefs(element, false);
        }
    });
    XmlUtil.registerXmlAttributeValueReferenceProvider(registrar, new String[] { CodeContext.TARGET_ATTR_NAME }, new ScopeFilter(new ParentElementFilter(new AndFilter(XmlTagFilter.INSTANCE, new TagNameFilter(CodeContext.REPARENT_TAG_NAME), new NamespaceFilter(JavaScriptSupportLoader.MXML_URI3)), 2)), new PsiReferenceProvider() {

        @NotNull
        public PsiReference[] getReferencesByElement(@NotNull final PsiElement element, @NotNull final ProcessingContext context) {
            return new PsiReference[] { new XmlIdValueReference(element) };
        }
    });
}
Also used : JavaScriptSupportLoader(com.intellij.lang.javascript.JavaScriptSupportLoader) PsiMetaData(com.intellij.psi.meta.PsiMetaData) com.intellij.psi.filters(com.intellij.psi.filters) AnnotationBackedDescriptor(com.intellij.lang.javascript.flex.AnnotationBackedDescriptor) CreateClassIntentionWithCallback(com.intellij.lang.javascript.validation.fixes.CreateClassIntentionWithCallback) CreateFlexComponentFix(com.intellij.lang.javascript.flex.actions.newfile.CreateFlexComponentFix) CssReferenceProviderUtil(com.intellij.psi.css.resolve.CssReferenceProviderUtil) PsiTreeUtil(com.intellij.psi.util.PsiTreeUtil) LocalQuickFixProvider(com.intellij.codeInspection.LocalQuickFixProvider) JSAttribute(com.intellij.lang.javascript.psi.ecmal4.JSAttribute) JSReferenceSet(com.intellij.lang.javascript.psi.impl.JSReferenceSet) FlexCssPropertyDescriptor(com.intellij.javascript.flex.css.FlexCssPropertyDescriptor) PatternCondition(com.intellij.patterns.PatternCondition) FilterPattern(com.intellij.psi.filters.position.FilterPattern) XmlTagUtil(com.intellij.xml.util.XmlTagUtil) ResultSink(com.intellij.lang.javascript.psi.resolve.ResultSink) TextRange(com.intellij.openapi.util.TextRange) JSResolveResult(com.intellij.lang.javascript.psi.resolve.JSResolveResult) XmlPatterns.xmlAttribute(com.intellij.patterns.XmlPatterns.xmlAttribute) StandardPatterns.string(com.intellij.patterns.StandardPatterns.string) AttributeValueSelfReference(com.intellij.psi.impl.source.resolve.reference.impl.providers.AttributeValueSelfReference) JSFunction(com.intellij.lang.javascript.psi.JSFunction) List(java.util.List) AnnotationBackedDescriptorImpl(com.intellij.javascript.flex.mxml.schema.AnnotationBackedDescriptorImpl) XmlPatterns(com.intellij.patterns.XmlPatterns) com.intellij.psi(com.intellij.psi) com.intellij.util(com.intellij.util) NotNull(org.jetbrains.annotations.NotNull) CreateFlexSkinIntention(com.intellij.lang.javascript.flex.actions.newfile.CreateFlexSkinIntention) CodeContext(com.intellij.javascript.flex.mxml.schema.CodeContext) StringTokenizer(com.intellij.util.text.StringTokenizer) CreateFlexMobileViewIntentionAndFix(com.intellij.lang.javascript.validation.fixes.CreateFlexMobileViewIntentionAndFix) ActionScriptCreateClassOrInterfaceFix(com.intellij.lang.javascript.validation.fixes.ActionScriptCreateClassOrInterfaceFix) ParentElementFilter(com.intellij.psi.filters.position.ParentElementFilter) JSTextReference(com.intellij.lang.javascript.psi.impl.JSTextReference) ArrayList(java.util.ArrayList) NamespaceFilter(com.intellij.psi.filters.position.NamespaceFilter) com.intellij.psi.xml(com.intellij.psi.xml) XmlUtil(com.intellij.xml.util.XmlUtil) MxmlJSClass(com.intellij.javascript.flex.mxml.MxmlJSClass) JSPackageWrapper(com.intellij.lang.javascript.psi.ecmal4.impl.JSPackageWrapper) LocalQuickFix(com.intellij.codeInspection.LocalQuickFix) StandardPatterns.or(com.intellij.patterns.StandardPatterns.or) StringUtil(com.intellij.openapi.util.text.StringUtil) ReferenceSupport(com.intellij.lang.javascript.flex.ReferenceSupport) JSAttributeNameValuePair(com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair) JSCommonTypeNames(com.intellij.lang.javascript.psi.JSCommonTypeNames) Pair(com.intellij.openapi.util.Pair) XmlAttributeDescriptor(com.intellij.xml.XmlAttributeDescriptor) Collections(java.util.Collections) JSPackageWrapper(com.intellij.lang.javascript.psi.ecmal4.impl.JSPackageWrapper) FilterPattern(com.intellij.psi.filters.position.FilterPattern) CreateFlexMobileViewIntentionAndFix(com.intellij.lang.javascript.validation.fixes.CreateFlexMobileViewIntentionAndFix) List(java.util.List) ArrayList(java.util.ArrayList) CreateFlexComponentFix(com.intellij.lang.javascript.flex.actions.newfile.CreateFlexComponentFix) PatternCondition(com.intellij.patterns.PatternCondition) TextRange(com.intellij.openapi.util.TextRange) ParentElementFilter(com.intellij.psi.filters.position.ParentElementFilter) ParentElementFilter(com.intellij.psi.filters.position.ParentElementFilter) CreateClassIntentionWithCallback(com.intellij.lang.javascript.validation.fixes.CreateClassIntentionWithCallback) MxmlJSClass(com.intellij.javascript.flex.mxml.MxmlJSClass) JSResolveResult(com.intellij.lang.javascript.psi.resolve.JSResolveResult) ResultSink(com.intellij.lang.javascript.psi.resolve.ResultSink) NotNull(org.jetbrains.annotations.NotNull) AnnotationBackedDescriptor(com.intellij.lang.javascript.flex.AnnotationBackedDescriptor) XmlAttributeDescriptor(com.intellij.xml.XmlAttributeDescriptor) JSFunction(com.intellij.lang.javascript.psi.JSFunction) ActionScriptCreateClassOrInterfaceFix(com.intellij.lang.javascript.validation.fixes.ActionScriptCreateClassOrInterfaceFix) JSAttributeNameValuePair(com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair) JSTextReference(com.intellij.lang.javascript.psi.impl.JSTextReference) AnnotationBackedDescriptorImpl(com.intellij.javascript.flex.mxml.schema.AnnotationBackedDescriptorImpl) JSReferenceSet(com.intellij.lang.javascript.psi.impl.JSReferenceSet) NamespaceFilter(com.intellij.psi.filters.position.NamespaceFilter) JSAttribute(com.intellij.lang.javascript.psi.ecmal4.JSAttribute) AttributeValueSelfReference(com.intellij.psi.impl.source.resolve.reference.impl.providers.AttributeValueSelfReference) CreateFlexSkinIntention(com.intellij.lang.javascript.flex.actions.newfile.CreateFlexSkinIntention)

Example 3 with JSAttributeNameValuePair

use of com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair in project intellij-plugins by JetBrains.

the class ActionScriptCompletionKeywordsContributor method process.

@Override
public boolean process(KeywordCompletionConsumer consumer, PsiElement context) {
    if (JSCompletionContributor.getInstance().isDoingSmartCodeCompleteAction())
        return false;
    final PsiElement parent = context.getParent();
    final PsiElement grandParent = parent != null ? parent.getParent() : null;
    final PsiElement grandGrandParent = grandParent != null ? grandParent.getParent() : null;
    if (parent instanceof JSReferenceExpression && ((JSReferenceExpression) parent).getQualifier() == null && (JSResolveUtil.isExprInTypeContext((JSReferenceExpression) parent) || grandParent instanceof JSExpressionStatement && (JSResolveUtil.isPlaceWhereNsCanBe(grandParent) || grandGrandParent instanceof JSFile && grandGrandParent.getContext() == null) || grandParent instanceof JSAttributeList || parent instanceof JSAttributeNameValuePair)) {
        if (!(grandParent instanceof JSImportStatement) && (grandParent instanceof JSAttributeList || JSResolveUtil.isPlaceWhereNsCanBe(grandParent) || grandGrandParent instanceof JSFile) && (!(grandParent instanceof JSFunction) || ((JSFunction) grandParent).getReturnTypeElement() != parent)) {
            consumer.consume(JSLookupPriority.SMART_KEYWORDS_PRIORITY, true, accessModifiers);
            consumer.consume(JSLookupPriority.SMART_KEYWORDS_PRIORITY, true, "class", "function", "interface", "namespace", "package", "extends", "implements", "import", "override", "static", "dynamic", "var", "const", "use", "final");
        }
        return false;
    }
    if (JSResolveUtil.isInPlaceWhereTypeCanBeDuringCompletion(parent) && JSResolveUtil.isPlaceWhereNsCanBe(grandParent)) {
        consumer.consume(JSLookupPriority.KEYWORDS_PRIORITY, false, JSKeywordsCompletionProvider.TYPE_LITERAL_VALUES);
        consumer.consume(JSLookupPriority.KEYWORDS_PRIORITY, false, "function");
        consumer.consume(JSLookupPriority.KEYWORDS_PRIORITY, true, accessModifiers);
        consumer.consume(JSLookupPriority.KEYWORDS_PRIORITY, true, "extends", "implements", "include", "import", "static", "override", "namespace", "class", "interface", "var", "use");
        return false;
    }
    return true;
}
Also used : JSAttributeList(com.intellij.lang.javascript.psi.ecmal4.JSAttributeList) JSReferenceExpression(com.intellij.lang.javascript.psi.JSReferenceExpression) JSFunction(com.intellij.lang.javascript.psi.JSFunction) JSImportStatement(com.intellij.lang.javascript.psi.ecmal4.JSImportStatement) JSAttributeNameValuePair(com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair) JSFile(com.intellij.lang.javascript.psi.JSFile) PsiElement(com.intellij.psi.PsiElement) JSExpressionStatement(com.intellij.lang.javascript.psi.JSExpressionStatement)

Example 4 with JSAttributeNameValuePair

use of com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair in project intellij-plugins by JetBrains.

the class ActionScriptSmartCompletionContributor method getEventsMap.

public static Map<String, String> getEventsMap(JSClass clazzToProcess) {
    if (clazzToProcess == null)
        return Collections.emptyMap();
    final Map<String, String> eventsMap = new THashMap<>();
    class EventsDataCollector extends ResolveProcessor implements ActionScriptResolveUtil.MetaDataProcessor {

        public EventsDataCollector() {
            super(null);
            setToProcessHierarchy(true);
            setToProcessMembers(false);
            setTypeContext(true);
            setLocalResolve(true);
        }

        @Override
        public boolean process(@NotNull final JSAttribute jsAttribute) {
            if ("Event".equals(jsAttribute.getName())) {
                final JSAttributeNameValuePair eventAttr = jsAttribute.getValueByName("name");
                JSAttributeNameValuePair typeAttr = jsAttribute.getValueByName("type");
                if (eventAttr != null && typeAttr != null) {
                    final String simpleValue = eventAttr.getSimpleValue();
                    if (simpleValue != null) {
                        eventsMap.put(simpleValue, typeAttr.getSimpleValue());
                    }
                }
            }
            return true;
        }

        @Override
        public boolean handleOtherElement(final PsiElement el, final PsiElement context, final Ref<PsiElement> continuePassElement) {
            return true;
        }

        @Override
        public boolean execute(@NotNull PsiElement element, @NotNull ResolveState state) {
            if (element instanceof JSClass) {
                ActionScriptResolveUtil.processMetaAttributesForClass(element, this, true);
            }
            return true;
        }
    }
    final EventsDataCollector eventsDataCollector = new EventsDataCollector();
    if (clazzToProcess instanceof XmlBackedJSClassImpl) {
        XmlFile file = (XmlFile) clazzToProcess.getParent().getContainingFile();
        if (file != null && JavaScriptSupportLoader.isFlexMxmFile(file)) {
            final XmlDocument xmlDocument = file.getDocument();
            final XmlTag rootTag = xmlDocument == null ? null : xmlDocument.getRootTag();
            final XmlTag[] tags = rootTag == null ? XmlTag.EMPTY : MxmlJSClass.findLanguageSubTags(rootTag, FlexPredefinedTagNames.METADATA);
            JSResolveUtil.JSInjectedFilesVisitor injectedFilesVisitor = new JSResolveUtil.JSInjectedFilesVisitor() {

                @Override
                protected void process(JSFile file) {
                    for (PsiElement element : file.getChildren()) {
                        if (element instanceof JSAttributeList) {
                            ActionScriptResolveUtil.processAttributeList(eventsDataCollector, null, (JSAttributeList) element, true, true);
                        }
                    }
                }
            };
            for (XmlTag tag : tags) {
                JSResolveUtil.processInjectedFileForTag(tag, injectedFilesVisitor);
            }
        }
    }
    clazzToProcess.processDeclarations(eventsDataCollector, ResolveState.initial(), clazzToProcess, clazzToProcess);
    return eventsMap;
}
Also used : JSAttributeList(com.intellij.lang.javascript.psi.ecmal4.JSAttributeList) XmlBackedJSClassImpl(com.intellij.lang.javascript.flex.XmlBackedJSClassImpl) XmlFile(com.intellij.psi.xml.XmlFile) XmlDocument(com.intellij.psi.xml.XmlDocument) NotNull(org.jetbrains.annotations.NotNull) ResolveState(com.intellij.psi.ResolveState) Ref(com.intellij.openapi.util.Ref) THashMap(gnu.trove.THashMap) JSAttribute(com.intellij.lang.javascript.psi.ecmal4.JSAttribute) JSAttributeNameValuePair(com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair) JSClass(com.intellij.lang.javascript.psi.ecmal4.JSClass) MxmlJSClass(com.intellij.javascript.flex.mxml.MxmlJSClass) PsiElement(com.intellij.psi.PsiElement) XmlTag(com.intellij.psi.xml.XmlTag)

Example 5 with JSAttributeNameValuePair

use of com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair in project intellij-plugins by JetBrains.

the class FlexUnitSupport method getCustomRunner.

/**
   * @return [RunWith] metadata default attribute value. Can be <code>null</code>, empty string or whatever.
   */
@Nullable
public static String getCustomRunner(JSClass clazz) {
    final JSAttribute[] attrs = clazz.getAttributeList().getAttributesByName(RUN_WITH_ATTRIBUTE);
    if (attrs.length == 0)
        return null;
    final JSAttributeNameValuePair attr = attrs[0].getValueByName(null);
    return attr == null ? null : attr.getSimpleValue();
}
Also used : JSAttribute(com.intellij.lang.javascript.psi.ecmal4.JSAttribute) JSAttributeNameValuePair(com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair) Nullable(org.jetbrains.annotations.Nullable)

Aggregations

JSAttributeNameValuePair (com.intellij.lang.javascript.psi.ecmal4.JSAttributeNameValuePair)12 JSAttribute (com.intellij.lang.javascript.psi.ecmal4.JSAttribute)7 PsiElement (com.intellij.psi.PsiElement)6 JSAttributeList (com.intellij.lang.javascript.psi.ecmal4.JSAttributeList)4 JSClass (com.intellij.lang.javascript.psi.ecmal4.JSClass)3 XmlAttributeDescriptor (com.intellij.xml.XmlAttributeDescriptor)3 NotNull (org.jetbrains.annotations.NotNull)3 InvalidPropertyException (com.intellij.flex.uiDesigner.InvalidPropertyException)2 MxmlJSClass (com.intellij.javascript.flex.mxml.MxmlJSClass)2 AnnotationBackedDescriptor (com.intellij.lang.javascript.flex.AnnotationBackedDescriptor)2 JSFile (com.intellij.lang.javascript.psi.JSFile)2 JSFunction (com.intellij.lang.javascript.psi.JSFunction)2 Ref (com.intellij.openapi.util.Ref)2 VirtualFile (com.intellij.openapi.vfs.VirtualFile)2 Nullable (org.jetbrains.annotations.Nullable)2 LocalQuickFix (com.intellij.codeInspection.LocalQuickFix)1 LocalQuickFixProvider (com.intellij.codeInspection.LocalQuickFixProvider)1 FlexCssPropertyDescriptor (com.intellij.javascript.flex.css.FlexCssPropertyDescriptor)1 AnnotationBackedDescriptorImpl (com.intellij.javascript.flex.mxml.schema.AnnotationBackedDescriptorImpl)1 CodeContext (com.intellij.javascript.flex.mxml.schema.CodeContext)1