|
| 1 | +/** |
| 2 | + * @license |
| 3 | + * Copyright Google Inc. All Rights Reserved. |
| 4 | + * |
| 5 | + * Use of this source code is governed by an MIT-style license that can be |
| 6 | + * found in the LICENSE file at https://angular.io/license |
| 7 | + */ |
| 8 | + |
| 9 | +import {GrammarDefinition} from './types'; |
| 10 | + |
| 11 | +/** Highlighting definition for the `host` object of a directive or component. */ |
| 12 | +export const HostObjectLiteral: GrammarDefinition = { |
| 13 | + scopeName: 'host-object-literal.ng', |
| 14 | + injectionSelector: 'L:meta.decorator.ts -comment -text.html -expression.ng', |
| 15 | + patterns: [{include: '#hostObjectLiteral'}], |
| 16 | + repository: { |
| 17 | + hostObjectLiteral: { |
| 18 | + begin: /(host)\s*(:)\s*{/, |
| 19 | + beginCaptures: { |
| 20 | + // Key is shown as JS syntax. |
| 21 | + 1: {name: 'meta.object-literal.key.ts'}, |
| 22 | + // Colon is shown as JS syntax. |
| 23 | + 2: {name: 'meta.object-literal.key.ts punctuation.separator.key-value.ts'} |
| 24 | + }, |
| 25 | + contentName: 'hostbindings.ng', |
| 26 | + end: /}/, |
| 27 | + patterns: [ |
| 28 | + // Try to match host bindings inside the `host`. |
| 29 | + {include: '#ngHostBindingDynamic'}, |
| 30 | + // Try to match a static binding inside the `host`. |
| 31 | + {include: '#ngHostBindingStatic'}, |
| 32 | + // Include the default TS syntax so that anything that doesn't |
| 33 | + // match the above will get the default highlighting. |
| 34 | + {include: 'source.ts'}, |
| 35 | + ] |
| 36 | + }, |
| 37 | + |
| 38 | + // A bound property inside `host`, e.g. `[attr.foo]="expr"` or `(click)="handleClick()"`. |
| 39 | + ngHostBindingDynamic: { |
| 40 | + begin: /\s*('|")([\[(].*?[\])])(\1)(:)/, |
| 41 | + beginCaptures: { |
| 42 | + // Opening quote is shown as a string. Only allows single and double quotes, no backticks. |
| 43 | + 1: {name: 'string'}, |
| 44 | + // Name is shown as an HTML attribute. |
| 45 | + 2: {name: 'entity.other.attribute-name.html'}, |
| 46 | + // Closing quote is shown as a string. |
| 47 | + 3: {name: 'string'}, |
| 48 | + // Colon is shown as JS syntax. |
| 49 | + 4: {name: 'meta.object-literal.key.ts punctuation.separator.key-value.ts'} |
| 50 | + }, |
| 51 | + contentName: 'hostbinding.dynamic.ng', |
| 52 | + patterns: [ |
| 53 | + {include: '#ngHostBindingDynamicValue'}, |
| 54 | + ], |
| 55 | + end: /(?=,|})/ |
| 56 | + }, |
| 57 | + |
| 58 | + // Value of a bound property inside `host`. |
| 59 | + ngHostBindingDynamicValue: { |
| 60 | + begin: /\s*(`|'|")/, |
| 61 | + beginCaptures: { |
| 62 | + // Opening quote is shown as a string. Allows backticks as well. |
| 63 | + 1: {name: 'string'}, |
| 64 | + }, |
| 65 | + patterns: [ |
| 66 | + // Content is shown as an Angular expression. |
| 67 | + {include: 'expression.ng'}, |
| 68 | + ], |
| 69 | + // Ends on the same kind of quote as the opening. |
| 70 | + // @ts-ignore |
| 71 | + end: /\1/, |
| 72 | + endCaptures: { |
| 73 | + // Closing quote is shown as a string. |
| 74 | + 0: {name: 'string'}, |
| 75 | + } |
| 76 | + }, |
| 77 | + |
| 78 | + // Static value inside `host`. |
| 79 | + ngHostBindingStatic: { |
| 80 | + // Note that we need to allow both quoted and non-quoted keys. |
| 81 | + begin: /\s*('|")?(.*?)(\1)?\s*:/, |
| 82 | + end: /(?=,|})/, |
| 83 | + beginCaptures: { |
| 84 | + // Opening quote is shown as a string. Only allows single and double quotes, no backticks. |
| 85 | + 1: {name: 'string'}, |
| 86 | + // Name is shown as an HTML attribute. |
| 87 | + 2: {name: 'entity.other.attribute-name.html'}, |
| 88 | + // Closing quote is shown as a string. |
| 89 | + 3: {name: 'string'}, |
| 90 | + // Colon is shown as JS syntax. |
| 91 | + 4: {name: 'meta.object-literal.key.ts punctuation.separator.key-value.ts'}, |
| 92 | + }, |
| 93 | + contentName: 'hostbinding.static.ng', |
| 94 | + patterns: [ |
| 95 | + // Use TypeScript highlighting for the value. This allows us to deal |
| 96 | + // with things like escaped strings and variables correctly. |
| 97 | + {include: 'source.ts'}, |
| 98 | + ] |
| 99 | + }, |
| 100 | + } |
| 101 | +}; |
0 commit comments