2016-11-22 12:10:23 -05:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2019-10-24 15:06:58 -04:00
|
|
|
import {AST, AstPath, Attribute, BoundDirectivePropertyAst, BoundElementPropertyAst, BoundEventAst, BoundTextAst, Element, ElementAst, ImplicitReceiver, NAMED_ENTITIES, Node as HtmlAst, NullTemplateVisitor, ParseSpan, PropertyRead, TagContentType, Text, findNode, getHtmlTagDefinition} from '@angular/compiler';
|
2019-03-04 09:46:18 -05:00
|
|
|
import {getExpressionScope} from '@angular/compiler-cli/src/language_services';
|
2016-11-22 12:10:23 -05:00
|
|
|
|
2019-10-24 14:48:09 -04:00
|
|
|
import {AstResult} from './common';
|
2017-05-09 19:16:50 -04:00
|
|
|
import {getExpressionCompletions} from './expressions';
|
2016-11-22 12:10:23 -05:00
|
|
|
import {attributeNames, elementNames, eventNames, propertyNames} from './html_info';
|
2019-10-24 14:35:03 -04:00
|
|
|
import * as ng from './types';
|
2019-10-21 21:49:32 -04:00
|
|
|
import {diagnosticInfoFromTemplateInfo, findTemplateAstAt, getSelectors, hasTemplateReference, inSpan, spanOf} from './utils';
|
2016-11-22 12:10:23 -05:00
|
|
|
|
|
|
|
const TEMPLATE_ATTR_PREFIX = '*';
|
|
|
|
|
|
|
|
const hiddenHtmlElements = {
|
|
|
|
html: true,
|
|
|
|
script: true,
|
|
|
|
noscript: true,
|
|
|
|
base: true,
|
|
|
|
body: true,
|
|
|
|
title: true,
|
|
|
|
head: true,
|
|
|
|
link: true,
|
|
|
|
};
|
|
|
|
|
2019-10-17 21:58:10 -04:00
|
|
|
const ANGULAR_ELEMENTS: ReadonlyArray<string> = ['ng-container', 'ng-content', 'ng-template'];
|
2019-09-19 02:13:30 -04:00
|
|
|
|
2019-08-28 13:18:18 -04:00
|
|
|
export function getTemplateCompletions(
|
2019-10-24 14:35:03 -04:00
|
|
|
templateInfo: AstResult, position: number): ng.CompletionEntry[] {
|
|
|
|
let result: ng.CompletionEntry[] = [];
|
2019-09-13 10:25:28 -04:00
|
|
|
const {htmlAst, template} = templateInfo;
|
2016-11-22 12:10:23 -05:00
|
|
|
// The templateNode starts at the delimiter character so we add 1 to skip it.
|
2019-09-13 10:25:28 -04:00
|
|
|
const templatePosition = position - template.span.start;
|
|
|
|
const path = findNode(htmlAst, templatePosition);
|
|
|
|
const mostSpecific = path.tail;
|
2019-08-21 17:36:00 -04:00
|
|
|
if (path.empty || !mostSpecific) {
|
|
|
|
result = elementCompletions(templateInfo, path);
|
|
|
|
} else {
|
2019-09-13 10:25:28 -04:00
|
|
|
const astPosition = templatePosition - mostSpecific.sourceSpan.start.offset;
|
2019-08-21 17:36:00 -04:00
|
|
|
mostSpecific.visit(
|
|
|
|
{
|
|
|
|
visitElement(ast) {
|
2019-09-13 10:25:28 -04:00
|
|
|
const startTagSpan = spanOf(ast.sourceSpan);
|
|
|
|
const tagLen = ast.name.length;
|
2019-08-28 13:18:18 -04:00
|
|
|
// + 1 for the opening angle bracket
|
|
|
|
if (templatePosition <= startTagSpan.start + tagLen + 1) {
|
2019-08-21 17:36:00 -04:00
|
|
|
// If we are in the tag then return the element completions.
|
|
|
|
result = elementCompletions(templateInfo, path);
|
|
|
|
} else if (templatePosition < startTagSpan.end) {
|
|
|
|
// We are in the attribute section of the element (but not in an attribute).
|
|
|
|
// Return the attribute completions.
|
|
|
|
result = attributeCompletions(templateInfo, path);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
visitAttribute(ast) {
|
|
|
|
if (!ast.valueSpan || !inSpan(templatePosition, spanOf(ast.valueSpan))) {
|
|
|
|
// We are in the name of an attribute. Show attribute completions.
|
|
|
|
result = attributeCompletions(templateInfo, path);
|
|
|
|
} else if (ast.valueSpan && inSpan(templatePosition, spanOf(ast.valueSpan))) {
|
|
|
|
result = attributeValueCompletions(templateInfo, templatePosition, ast);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
visitText(ast) {
|
|
|
|
// Check if we are in a entity.
|
|
|
|
result = entityCompletions(getSourceText(template, spanOf(ast)), astPosition);
|
2019-08-28 13:18:18 -04:00
|
|
|
if (result.length) return result;
|
2019-08-21 17:36:00 -04:00
|
|
|
result = interpolationCompletions(templateInfo, templatePosition);
|
2019-08-28 13:18:18 -04:00
|
|
|
if (result.length) return result;
|
2019-09-13 10:25:28 -04:00
|
|
|
const element = path.first(Element);
|
2019-08-21 17:36:00 -04:00
|
|
|
if (element) {
|
2019-09-13 10:25:28 -04:00
|
|
|
const definition = getHtmlTagDefinition(element.name);
|
2019-08-21 17:36:00 -04:00
|
|
|
if (definition.contentType === TagContentType.PARSABLE_DATA) {
|
2016-11-22 12:10:23 -05:00
|
|
|
result = voidElementAttributeCompletions(templateInfo, path);
|
2019-08-28 13:18:18 -04:00
|
|
|
if (!result.length) {
|
2019-08-21 17:36:00 -04:00
|
|
|
// If the element can hold content, show element completions.
|
2016-11-22 12:10:23 -05:00
|
|
|
result = elementCompletions(templateInfo, path);
|
|
|
|
}
|
|
|
|
}
|
2019-08-21 17:36:00 -04:00
|
|
|
} else {
|
|
|
|
// If no element container, implies parsable data so show elements.
|
|
|
|
result = voidElementAttributeCompletions(templateInfo, path);
|
2019-08-28 13:18:18 -04:00
|
|
|
if (!result.length) {
|
2019-08-21 17:36:00 -04:00
|
|
|
result = elementCompletions(templateInfo, path);
|
|
|
|
}
|
|
|
|
}
|
2016-11-22 12:10:23 -05:00
|
|
|
},
|
2019-08-21 17:36:00 -04:00
|
|
|
visitComment(ast) {},
|
|
|
|
visitExpansion(ast) {},
|
|
|
|
visitExpansionCase(ast) {}
|
|
|
|
},
|
|
|
|
null);
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-10-24 14:35:03 -04:00
|
|
|
function attributeCompletions(info: AstResult, path: AstPath<HtmlAst>): ng.CompletionEntry[] {
|
2019-09-13 10:25:28 -04:00
|
|
|
const item = path.tail instanceof Element ? path.tail : path.parentOf(path.tail);
|
2016-11-22 12:10:23 -05:00
|
|
|
if (item instanceof Element) {
|
2019-10-21 21:49:32 -04:00
|
|
|
return attributeCompletionsForElement(info, item.name);
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
2019-08-28 13:18:18 -04:00
|
|
|
return [];
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function attributeCompletionsForElement(
|
2019-10-24 14:35:03 -04:00
|
|
|
info: AstResult, elementName: string): ng.CompletionEntry[] {
|
|
|
|
const results: ng.CompletionEntry[] = [];
|
2016-11-22 12:10:23 -05:00
|
|
|
|
|
|
|
// Add html attributes
|
2019-10-21 21:49:32 -04:00
|
|
|
for (const name of attributeNames(elementName)) {
|
|
|
|
results.push({
|
|
|
|
name,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.HTML_ATTRIBUTE,
|
2019-10-21 21:49:32 -04:00
|
|
|
sortText: name,
|
|
|
|
});
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add html properties
|
2019-10-21 21:49:32 -04:00
|
|
|
for (const name of propertyNames(elementName)) {
|
|
|
|
results.push({
|
|
|
|
name: `[${name}]`,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ATTRIBUTE,
|
2019-10-21 21:49:32 -04:00
|
|
|
sortText: name,
|
|
|
|
});
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add html events
|
2019-10-21 21:49:32 -04:00
|
|
|
for (const name of eventNames(elementName)) {
|
|
|
|
results.push({
|
|
|
|
name: `(${name})`,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ATTRIBUTE,
|
2019-10-21 21:49:32 -04:00
|
|
|
sortText: name,
|
2016-11-22 12:10:23 -05:00
|
|
|
});
|
2019-10-21 21:49:32 -04:00
|
|
|
}
|
2016-11-22 12:10:23 -05:00
|
|
|
|
2019-10-21 21:49:32 -04:00
|
|
|
// Add Angular attributes
|
|
|
|
results.push(...angularAttributes(info, elementName));
|
2016-11-22 12:10:23 -05:00
|
|
|
|
2019-10-21 21:49:32 -04:00
|
|
|
return results;
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
2019-08-28 13:18:18 -04:00
|
|
|
function attributeValueCompletions(
|
2019-10-24 14:35:03 -04:00
|
|
|
info: AstResult, position: number, attr: Attribute): ng.CompletionEntry[] {
|
2017-05-09 19:16:50 -04:00
|
|
|
const path = findTemplateAstAt(info.templateAst, position);
|
2019-08-28 13:18:18 -04:00
|
|
|
if (!path.tail) {
|
|
|
|
return [];
|
|
|
|
}
|
2017-05-09 19:16:50 -04:00
|
|
|
const dinfo = diagnosticInfoFromTemplateInfo(info);
|
2019-08-28 13:18:18 -04:00
|
|
|
const visitor =
|
|
|
|
new ExpressionVisitor(info, position, attr, () => getExpressionScope(dinfo, path, false));
|
|
|
|
path.tail.visit(visitor, null);
|
|
|
|
if (!visitor.result || !visitor.result.length) {
|
|
|
|
// Try allwoing widening the path
|
|
|
|
const widerPath = findTemplateAstAt(info.templateAst, position, /* allowWidening */ true);
|
|
|
|
if (widerPath.tail) {
|
|
|
|
const widerVisitor = new ExpressionVisitor(
|
|
|
|
info, position, attr, () => getExpressionScope(dinfo, widerPath, false));
|
|
|
|
widerPath.tail.visit(widerVisitor, null);
|
|
|
|
return widerVisitor.result || [];
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
}
|
2019-08-28 13:18:18 -04:00
|
|
|
return visitor.result || [];
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
2019-10-24 14:35:03 -04:00
|
|
|
function elementCompletions(info: AstResult, path: AstPath<HtmlAst>): ng.CompletionEntry[] {
|
2019-09-13 10:25:28 -04:00
|
|
|
const htmlNames = elementNames().filter(name => !(name in hiddenHtmlElements));
|
2016-11-22 12:10:23 -05:00
|
|
|
|
|
|
|
// Collect the elements referenced by the selectors
|
2019-09-13 10:25:28 -04:00
|
|
|
const directiveElements = getSelectors(info)
|
|
|
|
.selectors.map(selector => selector.element)
|
|
|
|
.filter(name => !!name) as string[];
|
2016-11-22 12:10:23 -05:00
|
|
|
|
2019-09-13 10:25:28 -04:00
|
|
|
const components = directiveElements.map(name => {
|
2019-08-28 13:18:18 -04:00
|
|
|
return {
|
|
|
|
name,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.COMPONENT,
|
2019-08-28 13:18:18 -04:00
|
|
|
sortText: name,
|
|
|
|
};
|
|
|
|
});
|
2019-09-13 10:25:28 -04:00
|
|
|
const htmlElements = htmlNames.map(name => {
|
2019-08-28 13:18:18 -04:00
|
|
|
return {
|
|
|
|
name,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ELEMENT,
|
2019-08-28 13:18:18 -04:00
|
|
|
sortText: name,
|
|
|
|
};
|
|
|
|
});
|
2019-10-17 20:38:56 -04:00
|
|
|
const angularElements = ANGULAR_ELEMENTS.map(name => {
|
2019-09-19 02:13:30 -04:00
|
|
|
return {
|
|
|
|
name,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ANGULAR_ELEMENT,
|
2019-09-19 02:13:30 -04:00
|
|
|
sortText: name,
|
|
|
|
};
|
|
|
|
});
|
2016-11-22 12:10:23 -05:00
|
|
|
|
|
|
|
// Return components and html elements
|
2019-10-17 20:38:56 -04:00
|
|
|
return uniqueByName([...htmlElements, ...components, ...angularElements]);
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
2019-08-28 13:18:18 -04:00
|
|
|
/**
|
|
|
|
* Filter the specified `entries` by unique name.
|
|
|
|
* @param entries Completion Entries
|
|
|
|
*/
|
2019-10-24 14:35:03 -04:00
|
|
|
function uniqueByName(entries: ng.CompletionEntry[]) {
|
2019-08-28 13:18:18 -04:00
|
|
|
const results = [];
|
|
|
|
const set = new Set();
|
|
|
|
for (const entry of entries) {
|
|
|
|
if (!set.has(entry.name)) {
|
|
|
|
set.add(entry.name);
|
|
|
|
results.push(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2019-10-24 14:35:03 -04:00
|
|
|
function entityCompletions(value: string, position: number): ng.CompletionEntry[] {
|
2016-11-22 12:10:23 -05:00
|
|
|
// Look for entity completions
|
|
|
|
const re = /&[A-Za-z]*;?(?!\d)/g;
|
|
|
|
let found: RegExpExecArray|null;
|
2019-10-24 14:35:03 -04:00
|
|
|
let result: ng.CompletionEntry[] = [];
|
2016-11-22 12:10:23 -05:00
|
|
|
while (found = re.exec(value)) {
|
|
|
|
let len = found[0].length;
|
|
|
|
if (position >= found.index && position < (found.index + len)) {
|
2019-08-28 13:18:18 -04:00
|
|
|
result = Object.keys(NAMED_ENTITIES).map(name => {
|
|
|
|
return {
|
|
|
|
name: `&${name};`,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ENTITY,
|
2019-08-28 13:18:18 -04:00
|
|
|
sortText: name,
|
|
|
|
};
|
|
|
|
});
|
2016-11-22 12:10:23 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-10-24 14:35:03 -04:00
|
|
|
function interpolationCompletions(info: AstResult, position: number): ng.CompletionEntry[] {
|
2016-11-22 12:10:23 -05:00
|
|
|
// Look for an interpolation in at the position.
|
2017-05-09 19:16:50 -04:00
|
|
|
const templatePath = findTemplateAstAt(info.templateAst, position);
|
2019-08-28 13:18:18 -04:00
|
|
|
if (!templatePath.tail) {
|
|
|
|
return [];
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
2019-09-13 10:25:28 -04:00
|
|
|
const visitor = new ExpressionVisitor(
|
2019-08-28 13:18:18 -04:00
|
|
|
info, position, undefined,
|
|
|
|
() => getExpressionScope(diagnosticInfoFromTemplateInfo(info), templatePath, false));
|
|
|
|
templatePath.tail.visit(visitor, null);
|
|
|
|
return uniqueByName(visitor.result || []);
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// There is a special case of HTML where text that contains a unclosed tag is treated as
|
|
|
|
// text. For exaple '<h1> Some <a text </h1>' produces a text nodes inside of the H1
|
|
|
|
// element "Some <a text". We, however, want to treat this as if the user was requesting
|
|
|
|
// the attributes of an "a" element, not requesting completion in the a text element. This
|
|
|
|
// code checks for this case and returns element completions if it is detected or undefined
|
|
|
|
// if it is not.
|
2019-08-28 13:18:18 -04:00
|
|
|
function voidElementAttributeCompletions(
|
2019-10-24 14:35:03 -04:00
|
|
|
info: AstResult, path: AstPath<HtmlAst>): ng.CompletionEntry[] {
|
2019-09-13 10:25:28 -04:00
|
|
|
const tail = path.tail;
|
2016-11-22 12:10:23 -05:00
|
|
|
if (tail instanceof Text) {
|
2019-09-13 10:25:28 -04:00
|
|
|
const match = tail.value.match(/<(\w(\w|\d|-)*:)?(\w(\w|\d|-)*)\s/);
|
2016-11-22 12:10:23 -05:00
|
|
|
// The position must be after the match, otherwise we are still in a place where elements
|
|
|
|
// are expected (such as `<|a` or `<a|`; we only want attributes for `<a |` or after).
|
2017-04-28 18:10:30 -04:00
|
|
|
if (match &&
|
|
|
|
path.position >= (match.index || 0) + match[0].length + tail.sourceSpan.start.offset) {
|
2016-11-22 12:10:23 -05:00
|
|
|
return attributeCompletionsForElement(info, match[3]);
|
|
|
|
}
|
|
|
|
}
|
2019-08-28 13:18:18 -04:00
|
|
|
return [];
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
class ExpressionVisitor extends NullTemplateVisitor {
|
2019-10-24 14:35:03 -04:00
|
|
|
private getExpressionScope: () => ng.SymbolTable;
|
|
|
|
result: ng.CompletionEntry[]|undefined;
|
2016-11-22 12:10:23 -05:00
|
|
|
|
|
|
|
constructor(
|
2019-08-21 17:36:00 -04:00
|
|
|
private info: AstResult, private position: number, private attr?: Attribute,
|
2019-10-24 14:35:03 -04:00
|
|
|
getExpressionScope?: () => ng.SymbolTable) {
|
2016-11-22 12:10:23 -05:00
|
|
|
super();
|
2017-04-28 18:10:30 -04:00
|
|
|
this.getExpressionScope = getExpressionScope || (() => info.template.members);
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
visitDirectiveProperty(ast: BoundDirectivePropertyAst): void {
|
|
|
|
this.attributeValueCompletions(ast.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
visitElementProperty(ast: BoundElementPropertyAst): void {
|
|
|
|
this.attributeValueCompletions(ast.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
visitEvent(ast: BoundEventAst): void { this.attributeValueCompletions(ast.handler); }
|
|
|
|
|
|
|
|
visitElement(ast: ElementAst): void {
|
|
|
|
if (this.attr && getSelectors(this.info) && this.attr.name.startsWith(TEMPLATE_ATTR_PREFIX)) {
|
|
|
|
// The value is a template expression but the expression AST was not produced when the
|
|
|
|
// TemplateAst was produce so
|
|
|
|
// do that now.
|
|
|
|
|
|
|
|
const key = this.attr.name.substr(TEMPLATE_ATTR_PREFIX.length);
|
|
|
|
|
|
|
|
// Find the selector
|
|
|
|
const selectorInfo = getSelectors(this.info);
|
|
|
|
const selectors = selectorInfo.selectors;
|
|
|
|
const selector =
|
2019-10-11 16:36:42 -04:00
|
|
|
selectors.filter(s => s.attrs.some((attr, i) => i % 2 === 0 && attr === key))[0];
|
2016-11-22 12:10:23 -05:00
|
|
|
|
|
|
|
const templateBindingResult =
|
2019-07-16 15:18:32 -04:00
|
|
|
this.info.expressionParser.parseTemplateBindings(key, this.attr.value, null, 0);
|
2016-11-22 12:10:23 -05:00
|
|
|
|
|
|
|
// find the template binding that contains the position
|
2017-04-28 18:10:30 -04:00
|
|
|
if (!this.attr.valueSpan) return;
|
2019-02-08 17:10:20 -05:00
|
|
|
const valueRelativePosition = this.position - this.attr.valueSpan.start.offset;
|
2016-11-22 12:10:23 -05:00
|
|
|
const bindings = templateBindingResult.templateBindings;
|
|
|
|
const binding =
|
|
|
|
bindings.find(
|
|
|
|
binding => inSpan(valueRelativePosition, binding.span, /* exclusive */ true)) ||
|
|
|
|
bindings.find(binding => inSpan(valueRelativePosition, binding.span));
|
|
|
|
|
|
|
|
const keyCompletions = () => {
|
|
|
|
let keys: string[] = [];
|
|
|
|
if (selector) {
|
2019-10-11 16:36:42 -04:00
|
|
|
const attrNames = selector.attrs.filter((_, i) => i % 2 === 0);
|
2016-11-22 12:10:23 -05:00
|
|
|
keys = attrNames.filter(name => name.startsWith(key) && name != key)
|
|
|
|
.map(name => lowerName(name.substr(key.length)));
|
|
|
|
}
|
|
|
|
keys.push('let');
|
2019-08-28 13:18:18 -04:00
|
|
|
this.result = keys.map(key => {
|
|
|
|
return {
|
|
|
|
name: key,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.KEY,
|
2019-08-28 13:18:18 -04:00
|
|
|
sortText: key,
|
|
|
|
};
|
|
|
|
});
|
2016-11-22 12:10:23 -05:00
|
|
|
};
|
|
|
|
|
2019-10-11 16:36:42 -04:00
|
|
|
if (!binding || (binding.key === key && !binding.expression)) {
|
2016-11-22 12:10:23 -05:00
|
|
|
// We are in the root binding. We should return `let` and keys that are left in the
|
|
|
|
// selector.
|
|
|
|
keyCompletions();
|
|
|
|
} else if (binding.keyIsVar) {
|
|
|
|
const equalLocation = this.attr.value.indexOf('=');
|
|
|
|
this.result = [];
|
|
|
|
if (equalLocation >= 0 && valueRelativePosition >= equalLocation) {
|
|
|
|
// We are after the '=' in a let clause. The valid values here are the members of the
|
|
|
|
// template reference's type parameter.
|
|
|
|
const directiveMetadata = selectorInfo.map.get(selector);
|
2017-04-28 18:10:30 -04:00
|
|
|
if (directiveMetadata) {
|
|
|
|
const contextTable =
|
|
|
|
this.info.template.query.getTemplateContext(directiveMetadata.type.reference);
|
|
|
|
if (contextTable) {
|
|
|
|
this.result = this.symbolsToCompletions(contextTable.values());
|
|
|
|
}
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
} else if (binding.key && valueRelativePosition <= (binding.key.length - key.length)) {
|
|
|
|
keyCompletions();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// If the position is in the expression or after the key or there is no key, return the
|
|
|
|
// expression completions
|
|
|
|
if ((binding.expression && inSpan(valueRelativePosition, binding.expression.ast.span)) ||
|
|
|
|
(binding.key &&
|
|
|
|
valueRelativePosition > binding.span.start + (binding.key.length - key.length)) ||
|
|
|
|
!binding.key) {
|
|
|
|
const span = new ParseSpan(0, this.attr.value.length);
|
2019-07-29 16:23:29 -04:00
|
|
|
const offset = ast.sourceSpan.start.offset;
|
2016-11-22 12:10:23 -05:00
|
|
|
this.attributeValueCompletions(
|
|
|
|
binding.expression ? binding.expression.ast :
|
2019-07-29 16:23:29 -04:00
|
|
|
new PropertyRead(
|
|
|
|
span, span.toAbsolute(offset),
|
|
|
|
new ImplicitReceiver(span, span.toAbsolute(offset)), ''),
|
2019-10-24 19:07:04 -04:00
|
|
|
this.position);
|
2016-11-22 12:10:23 -05:00
|
|
|
} else {
|
|
|
|
keyCompletions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
visitBoundText(ast: BoundTextAst) {
|
2019-10-24 19:07:04 -04:00
|
|
|
if (inSpan(this.position, ast.value.sourceSpan)) {
|
2016-11-22 12:10:23 -05:00
|
|
|
const completions = getExpressionCompletions(
|
2019-10-24 19:07:04 -04:00
|
|
|
this.getExpressionScope(), ast.value, this.position, this.info.template.query);
|
2016-11-22 12:10:23 -05:00
|
|
|
if (completions) {
|
|
|
|
this.result = this.symbolsToCompletions(completions);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private attributeValueCompletions(value: AST, position?: number) {
|
|
|
|
const symbols = getExpressionCompletions(
|
2019-10-11 16:36:42 -04:00
|
|
|
this.getExpressionScope(), value,
|
|
|
|
position === undefined ? this.attributeValuePosition : position, this.info.template.query);
|
2016-11-22 12:10:23 -05:00
|
|
|
if (symbols) {
|
|
|
|
this.result = this.symbolsToCompletions(symbols);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-24 14:35:03 -04:00
|
|
|
private symbolsToCompletions(symbols: ng.Symbol[]): ng.CompletionEntry[] {
|
2019-08-28 13:18:18 -04:00
|
|
|
return symbols.filter(s => !s.name.startsWith('__') && s.public).map(symbol => {
|
|
|
|
return {
|
|
|
|
name: symbol.name,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: symbol.kind as ng.CompletionKind,
|
2019-08-28 13:18:18 -04:00
|
|
|
sortText: symbol.name,
|
|
|
|
};
|
|
|
|
});
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private get attributeValuePosition() {
|
2017-04-28 18:10:30 -04:00
|
|
|
if (this.attr && this.attr.valueSpan) {
|
2019-10-24 19:07:04 -04:00
|
|
|
return this.position;
|
2017-04-28 18:10:30 -04:00
|
|
|
}
|
|
|
|
return 0;
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-24 14:35:03 -04:00
|
|
|
function getSourceText(template: ng.TemplateSource, span: ng.Span): string {
|
2016-11-22 12:10:23 -05:00
|
|
|
return template.source.substring(span.start, span.end);
|
|
|
|
}
|
|
|
|
|
|
|
|
const templateAttr = /^(\w+:)?(template$|^\*)/;
|
|
|
|
|
2019-10-21 21:49:32 -04:00
|
|
|
function lowerName(name: string): string {
|
|
|
|
return name && (name[0].toLowerCase() + name.substr(1));
|
|
|
|
}
|
|
|
|
|
2019-10-24 14:35:03 -04:00
|
|
|
function angularAttributes(info: AstResult, elementName: string): ng.CompletionEntry[] {
|
2019-10-21 21:49:32 -04:00
|
|
|
const {selectors, map: selectorMap} = getSelectors(info);
|
|
|
|
const templateRefs = new Set<string>();
|
|
|
|
const inputs = new Set<string>();
|
|
|
|
const outputs = new Set<string>();
|
|
|
|
const others = new Set<string>();
|
|
|
|
for (const selector of selectors) {
|
|
|
|
if (selector.element && selector.element !== elementName) {
|
|
|
|
continue;
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
2019-10-21 21:49:32 -04:00
|
|
|
const summary = selectorMap.get(selector) !;
|
|
|
|
for (const attr of selector.attrs) {
|
|
|
|
if (attr) {
|
|
|
|
if (hasTemplateReference(summary.type)) {
|
|
|
|
templateRefs.add(attr);
|
|
|
|
} else {
|
|
|
|
others.add(attr);
|
|
|
|
}
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
}
|
2019-10-21 21:49:32 -04:00
|
|
|
for (const input of Object.values(summary.inputs)) {
|
|
|
|
inputs.add(input);
|
|
|
|
}
|
|
|
|
for (const output of Object.values(summary.outputs)) {
|
|
|
|
outputs.add(output);
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-24 14:35:03 -04:00
|
|
|
const results: ng.CompletionEntry[] = [];
|
2019-10-21 21:49:32 -04:00
|
|
|
for (const name of templateRefs) {
|
|
|
|
results.push({
|
|
|
|
name: `*${name}`,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ATTRIBUTE,
|
2019-10-21 21:49:32 -04:00
|
|
|
sortText: name,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
for (const name of inputs) {
|
|
|
|
results.push({
|
|
|
|
name: `[${name}]`,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ATTRIBUTE,
|
2019-10-21 21:49:32 -04:00
|
|
|
sortText: name,
|
|
|
|
});
|
|
|
|
// Add banana-in-a-box syntax
|
|
|
|
// https://angular.io/guide/template-syntax#two-way-binding-
|
|
|
|
if (outputs.has(`${name}Change`)) {
|
|
|
|
results.push({
|
|
|
|
name: `[(${name})]`,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ATTRIBUTE,
|
2019-10-21 21:49:32 -04:00
|
|
|
sortText: name,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (const name of outputs) {
|
|
|
|
results.push({
|
|
|
|
name: `(${name})`,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ATTRIBUTE,
|
2019-10-21 21:49:32 -04:00
|
|
|
sortText: name,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
for (const name of others) {
|
|
|
|
results.push({
|
|
|
|
name,
|
2019-10-24 14:35:03 -04:00
|
|
|
kind: ng.CompletionKind.ATTRIBUTE,
|
2019-10-21 21:49:32 -04:00
|
|
|
sortText: name,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return results;
|
2016-11-22 12:10:23 -05:00
|
|
|
}
|