use of com.redhat.qute.project.tags.UserTag in project quarkus-ls by redhat-developer.
the class QuteProject method findUserTag.
/**
* Find user tag by the given tagName and null otherwise.
*
* @param tagName the tag name.
*
* @return user tag by the given tagName and null otherwise.
*/
public UserTag findUserTag(String tagName) {
// Source tags
Collection<UserTag> tags = getSourceUserTags();
for (UserTag userTag : tags) {
if (tagName.equals(userTag.getName())) {
return userTag;
}
}
// Binary tags
tags = getBinaryUserTags().getNow(Collections.emptyList());
for (UserTag userTag : tags) {
if (tagName.equals(userTag.getName())) {
return userTag;
}
}
return null;
}
use of com.redhat.qute.project.tags.UserTag in project quarkus-ls by redhat-developer.
the class QuteHover method doHoverForSection.
private CompletableFuture<Hover> doHoverForSection(Section section, Template template, HoverRequest hoverRequest, CancelChecker cancelChecker) {
if (section.hasTag()) {
// the section defines a tag (e : {#for
String tagName = section.getTag();
if (section.getSectionKind() == SectionKind.CUSTOM) {
// custom tag: search information about user tag
QuteProject project = template.getProject();
if (project != null) {
UserTag userTag = project.findUserTag(tagName);
if (userTag != null) {
Range range = createSectionTagRange(section, hoverRequest);
if (range != null) {
boolean hasMarkdown = hoverRequest.canSupportMarkupKind(MarkupKind.MARKDOWN);
MarkupContent content = DocumentationUtils.getDocumentation(userTag, hasMarkdown);
Hover hover = new Hover(content, range);
return CompletableFuture.completedFuture(hover);
}
}
}
} else {
// core tag like #for, #if, etc: display document hover for the section
Optional<Snippet> snippetSection = //
snippetRegistryProvider.getSnippetRegistry().getSnippets().stream().filter(//
snippet -> tagName.equals(snippet.getLabel())).findFirst();
if (snippetSection.isPresent()) {
Snippet snippet = snippetSection.get();
Range range = createSectionTagRange(section, hoverRequest);
if (range != null) {
boolean hasMarkdown = hoverRequest.canSupportMarkupKind(MarkupKind.MARKDOWN);
MarkupContent content = DocumentationUtils.getDocumentation(snippet, hasMarkdown);
Hover hover = new Hover(content, range);
return CompletableFuture.completedFuture(hover);
}
}
}
}
return NO_HOVER;
}
use of com.redhat.qute.project.tags.UserTag in project quarkus-ls by redhat-developer.
the class QuteDiagnosticsForSyntax method addUserTag.
private static void addUserTag(Collection<UserTag> tags, EngineBuilder engineBuilder) {
for (UserTag userTag : tags) {
String tagName = userTag.getName();
String tagTemplateId = userTag.getTemplateId();
engineBuilder.addSectionHelper(new UserTagSectionHelper.Factory(tagName, tagTemplateId));
}
}
use of com.redhat.qute.project.tags.UserTag in project quarkus-ls by redhat-developer.
the class QuteDefinition method findDefinitionFromStartEndTagSection.
private static boolean findDefinitionFromStartEndTagSection(int offset, Section section, Template template, List<LocationLink> locations) {
if (section.isInStartTagName(offset)) {
int locationsLength = locations.size();
if (section.getSectionKind() == SectionKind.CUSTOM) {
QuteProject project = template.getProject();
if (project != null) {
String tagName = section.getTag();
UserTag userTag = project.findUserTag(tagName);
if (userTag != null) {
// 1. Jump to custom user tag file inside src/main/resources/templates/tags
String userTagUri = userTag.getUri();
Range targetRange = new Range(new Position(0, 0), new Position(0, 0));
Range originRange = QutePositionUtility.selectStartTagName(section);
locations.add(new LocationLink(userTagUri, targetRange, targetRange, originRange));
} else {
// 2. Jump to custom tag declared in the the {#insert custom-tag of the included
// Qute template (by using {#include base).
Range originRange = null;
Node parent = section.getParent();
while (parent != null) {
if (parent.getKind() == NodeKind.Section) {
Section parentSection = (Section) parent;
if (parentSection.getSectionKind() == SectionKind.INCLUDE) {
IncludeSection includeSection = (IncludeSection) parentSection;
List<QuteIndex> indexes = project.findInsertTagParameter(includeSection.getReferencedTemplateId(), tagName);
if (indexes != null) {
for (QuteIndex index : indexes) {
String linkedTemplateUri = index.getTemplatePath().toUri().toString();
Range linkedTargetRange = index.getRange();
if (originRange == null) {
originRange = QutePositionUtility.selectStartTagName(section);
}
locations.add(new LocationLink(linkedTemplateUri, linkedTargetRange, linkedTargetRange, originRange));
}
}
}
}
parent = parent.getParent();
}
}
}
}
if (section.hasEndTag() && locationsLength == locations.size()) {
// 3. Jump to end tag section
Range originRange = QutePositionUtility.selectStartTagName(section);
Range targetRange = QutePositionUtility.selectEndTagName(section);
locations.add(new LocationLink(template.getUri(), targetRange, targetRange, originRange));
}
return true;
} else if (section.isInEndTagName(offset)) {
if (section.hasStartTag()) {
// Jump to start tag section
Range originRange = QutePositionUtility.selectEndTagName(section);
Range targetRange = QutePositionUtility.selectStartTagName(section);
locations.add(new LocationLink(template.getUri(), targetRange, targetRange, originRange));
}
return true;
}
return false;
}
use of com.redhat.qute.project.tags.UserTag in project quarkus-ls by redhat-developer.
the class QuteDiagnostics method validateSectionTag.
private static void validateSectionTag(Section section, Template template, ResolvingJavaTypeContext resolvingJavaTypeContext, List<Diagnostic> diagnostics) {
String tagName = section.getTag();
if (StringUtils.isEmpty(tagName)) {
return;
}
SectionKind sectionKind = section.getSectionKind();
if (sectionKind == SectionKind.CUSTOM) {
if (!resolvingJavaTypeContext.isBinaryUserTagResolved()) {
// Don't validate custom tag, if the binary user tags are not loaded.
return;
}
QuteProject project = template.getProject();
if (project != null) {
// Check if section tag is an user tag
UserTag userTag = project.findUserTag(tagName);
if (userTag != null) {
return;
}
// Check if section tag is a parameter from an include section
Node parent = section.getParent();
while (parent != null) {
if (parent.getKind() == NodeKind.Section) {
Section parentSection = (Section) parent;
if (parentSection.getSectionKind() == SectionKind.INCLUDE) {
IncludeSection includeSection = (IncludeSection) parentSection;
List<QuteIndex> indexes = project.findInsertTagParameter(includeSection.getReferencedTemplateId(), tagName);
if (indexes != null) {
return;
}
}
}
parent = parent.getParent();
}
Range range = QutePositionUtility.selectStartTagName(section);
Diagnostic diagnostic = createDiagnostic(range, DiagnosticSeverity.Error, QuteErrorCode.UndefinedSectionTag, tagName);
// Create data information helpful for code action
diagnostic.setData(DiagnosticDataFactory.createUndefinedSectionTagData(tagName));
diagnostics.add(diagnostic);
}
}
}
Aggregations