Search in sources :

Example 1 with PsiLinkName

use of com.perl5.lang.pod.psi.PsiLinkName in project Perl5-IDEA by Camelcade.

the class PodFormatterL method computeReferences.

@Override
public PsiReference[] computeReferences() {
    List<PsiReference> references = new ArrayList<>();
    final PodLinkDescriptor descriptor = getLinkDescriptor();
    if (descriptor != null && !descriptor.isUrl()) {
        int linkStartOffset = getTextRange().getStartOffset();
        PsiLinkName linkNameElement = getLinkNameElement();
        if (linkNameElement != null) {
            references.add(new PodLinkToFileReference(this, linkNameElement.getTextRange().shiftLeft(linkStartOffset)));
        }
        PsiLinkSection linkSectionElement = getLinkSectionElement();
        if (linkSectionElement != null) {
            references.add(new PodLinkToSectionReference(this, linkSectionElement.getTextRange().shiftLeft(linkStartOffset)));
        }
    }
    references.addAll(Arrays.asList(ReferenceProvidersRegistry.getReferencesFromProviders(this)));
    return references.toArray(PsiReference.EMPTY_ARRAY);
}
Also used : PodLinkToFileReference(com.perl5.lang.pod.parser.psi.references.PodLinkToFileReference) PsiLinkName(com.perl5.lang.pod.psi.PsiLinkName) ArrayList(java.util.ArrayList) PsiReference(com.intellij.psi.PsiReference) PodLinkDescriptor(com.perl5.lang.pod.parser.psi.PodLinkDescriptor) PsiLinkSection(com.perl5.lang.pod.psi.PsiLinkSection) PodLinkToSectionReference(com.perl5.lang.pod.parser.psi.references.PodLinkToSectionReference)

Example 2 with PsiLinkName

use of com.perl5.lang.pod.psi.PsiLinkName in project Perl5-IDEA by Camelcade.

the class PodLinkDescriptor method create.

@Nullable
public static PodLinkDescriptor create(@NotNull PodFormatterL formatterL) {
    PsiLinkText textElement = formatterL.getLinkTextElement();
    PsiLinkName nameElement = formatterL.getLinkNameElement();
    PsiLinkSection sectionElement = formatterL.getLinkSectionElement();
    PsiLinkUrl linkUrlElement = formatterL.getLinkUrlElement();
    if (nameElement == null && sectionElement == null && linkUrlElement == null) {
        return null;
    }
    String linkTextText = null;
    String linkTextHtml = null;
    String linkName = null;
    String linkSection = null;
    boolean isUrl = false;
    boolean isSameFile = false;
    if (textElement != null) {
        linkTextHtml = PodRenderUtil.renderPsiElementAsHTML(textElement);
        linkTextText = PodRenderUtil.renderPsiElementAsText(textElement);
    }
    if (linkUrlElement != null) {
        isUrl = true;
        linkName = linkUrlElement.getText();
        if (linkTextText == null) {
            linkTextText = linkTextHtml = linkName;
        }
    } else if (sectionElement != null) {
        linkSection = PodRenderUtil.renderPsiElementAsText(sectionElement);
        if (linkTextText == null) {
            linkTextHtml = PodRenderUtil.renderPsiElementAsHTML(sectionElement);
            linkTextText = linkSection;
            if (nameElement != null) {
                linkName = nameElement.getText();
                linkTextHtml = buildTitle(linkName, linkTextHtml, false);
                linkTextText = buildTitle(linkName, linkTextText, false);
            }
        }
    }
    if (linkName == null) {
        if (nameElement != null) {
            linkName = nameElement.getText();
        } else {
            PsiFile containingFile = formatterL.getContainingFile();
            if (containingFile instanceof PodLinkTarget) {
                linkName = ((PodLinkTarget) containingFile).getPodLink();
                isSameFile = true;
            }
        }
    }
    return new PodLinkDescriptor(linkName, linkSection, linkTextText, linkTextHtml, isUrl, isSameFile);
}
Also used : PsiLinkText(com.perl5.lang.pod.psi.PsiLinkText) PsiLinkName(com.perl5.lang.pod.psi.PsiLinkName) PsiFile(com.intellij.psi.PsiFile) PsiLinkSection(com.perl5.lang.pod.psi.PsiLinkSection) PsiLinkUrl(com.perl5.lang.pod.psi.PsiLinkUrl) Nullable(org.jetbrains.annotations.Nullable)

Aggregations

PsiLinkName (com.perl5.lang.pod.psi.PsiLinkName)2 PsiLinkSection (com.perl5.lang.pod.psi.PsiLinkSection)2 PsiFile (com.intellij.psi.PsiFile)1 PsiReference (com.intellij.psi.PsiReference)1 PodLinkDescriptor (com.perl5.lang.pod.parser.psi.PodLinkDescriptor)1 PodLinkToFileReference (com.perl5.lang.pod.parser.psi.references.PodLinkToFileReference)1 PodLinkToSectionReference (com.perl5.lang.pod.parser.psi.references.PodLinkToSectionReference)1 PsiLinkText (com.perl5.lang.pod.psi.PsiLinkText)1 PsiLinkUrl (com.perl5.lang.pod.psi.PsiLinkUrl)1 ArrayList (java.util.ArrayList)1 Nullable (org.jetbrains.annotations.Nullable)1