2016-06-23 12:47:54 -04: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
|
|
|
|
*/
|
|
|
|
|
2015-02-18 04:06:31 -05:00
|
|
|
/**
|
2015-06-15 09:57:42 -04:00
|
|
|
* This file is a port of shadowCSS from webcomponents.js to TypeScript.
|
2015-02-18 04:06:31 -05:00
|
|
|
*
|
|
|
|
* Please make sure to keep to edits in sync with the source file.
|
|
|
|
*
|
2015-05-18 14:57:20 -04:00
|
|
|
* Source:
|
|
|
|
* https://github.com/webcomponents/webcomponentsjs/blob/4efecd7e0e/src/ShadowCSS/ShadowCSS.js
|
2015-02-18 04:06:31 -05:00
|
|
|
*
|
|
|
|
* The original file level comment is reproduced below
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
This is a limited shim for ShadowDOM css styling.
|
|
|
|
https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html#styles
|
|
|
|
|
|
|
|
The intention here is to support only the styling features which can be
|
|
|
|
relatively simply implemented. The goal is to allow users to avoid the
|
|
|
|
most obvious pitfalls and do so without compromising performance significantly.
|
|
|
|
For ShadowDOM styling that's not covered here, a set of best practices
|
|
|
|
can be provided that should allow users to accomplish more complex styling.
|
|
|
|
|
|
|
|
The following is a list of specific ShadowDOM styling features and a brief
|
|
|
|
discussion of the approach used to shim.
|
|
|
|
|
|
|
|
Shimmed features:
|
|
|
|
|
|
|
|
* :host, :host-context: ShadowDOM allows styling of the shadowRoot's host
|
|
|
|
element using the :host rule. To shim this feature, the :host styles are
|
|
|
|
reformatted and prefixed with a given scope name and promoted to a
|
|
|
|
document level stylesheet.
|
|
|
|
For example, given a scope name of .foo, a rule like this:
|
|
|
|
|
|
|
|
:host {
|
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
becomes:
|
|
|
|
|
|
|
|
.foo {
|
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
|
2016-08-26 19:11:57 -04:00
|
|
|
* encapsulation: Styles defined within ShadowDOM, apply only to
|
2015-12-16 02:47:48 -05:00
|
|
|
dom inside the ShadowDOM. Polymer uses one of two techniques to implement
|
2015-02-18 04:06:31 -05:00
|
|
|
this feature.
|
|
|
|
|
|
|
|
By default, rules are prefixed with the host element tag name
|
|
|
|
as a descendant selector. This ensures styling does not leak out of the 'top'
|
|
|
|
of the element's ShadowDOM. For example,
|
|
|
|
|
|
|
|
div {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
becomes:
|
|
|
|
|
|
|
|
x-foo div {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
becomes:
|
|
|
|
|
|
|
|
|
|
|
|
Alternatively, if WebComponents.ShadowCSS.strictStyling is set to true then
|
|
|
|
selectors are scoped by adding an attribute selector suffix to each
|
|
|
|
simple selector that contains the host element tag name. Each element
|
|
|
|
in the element's ShadowDOM template is also given the scope attribute.
|
|
|
|
Thus, these rules match only elements that have the scope attribute.
|
|
|
|
For example, given a scope name of x-foo, a rule like this:
|
|
|
|
|
|
|
|
div {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
becomes:
|
|
|
|
|
|
|
|
div[x-foo] {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
Note that elements that are dynamically added to a scope must have the scope
|
|
|
|
selector added to them manually.
|
|
|
|
|
|
|
|
* upper/lower bound encapsulation: Styles which are defined outside a
|
|
|
|
shadowRoot should not cross the ShadowDOM boundary and should not apply
|
|
|
|
inside a shadowRoot.
|
|
|
|
|
|
|
|
This styling behavior is not emulated. Some possible ways to do this that
|
|
|
|
were rejected due to complexity and/or performance concerns include: (1) reset
|
|
|
|
every possible property for every possible selector for a given scope name;
|
|
|
|
(2) re-implement css in javascript.
|
|
|
|
|
|
|
|
As an alternative, users should make sure to use selectors
|
|
|
|
specific to the scope in which they are working.
|
|
|
|
|
|
|
|
* ::distributed: This behavior is not emulated. It's often not necessary
|
|
|
|
to style the contents of a specific insertion point and instead, descendants
|
|
|
|
of the host element can be styled selectively. Users can also create an
|
|
|
|
extra node around an insertion point and style that node's contents
|
|
|
|
via descendent selectors. For example, with a shadowRoot like this:
|
|
|
|
|
|
|
|
<style>
|
|
|
|
::content(div) {
|
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<content></content>
|
|
|
|
|
|
|
|
could become:
|
|
|
|
|
|
|
|
<style>
|
|
|
|
/ *@polyfill .content-container div * /
|
|
|
|
::content(div) {
|
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="content-container">
|
|
|
|
<content></content>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
Note the use of @polyfill in the comment above a ShadowDOM specific style
|
|
|
|
declaration. This is a directive to the styling shim to use the selector
|
|
|
|
in comments in lieu of the next selector when running under polyfill.
|
|
|
|
*/
|
|
|
|
|
|
|
|
export class ShadowCss {
|
2015-06-12 17:11:11 -04:00
|
|
|
strictStyling: boolean = true;
|
2015-02-18 04:06:31 -05:00
|
|
|
|
2015-06-12 17:11:11 -04:00
|
|
|
constructor() {}
|
2015-02-18 04:06:31 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Shim some cssText with the given selector. Returns cssText that can
|
|
|
|
* be included in the document via WebComponents.ShadowCSS.addCssToDocument(css).
|
2015-02-18 13:14:19 -05:00
|
|
|
*
|
|
|
|
* When strictStyling is true:
|
|
|
|
* - selector is the attribute added to all elements inside the host,
|
|
|
|
* - hostSelector is the attribute added to the host itself.
|
2015-02-18 04:06:31 -05:00
|
|
|
*/
|
2015-02-18 13:14:19 -05:00
|
|
|
shimCssText(cssText: string, selector: string, hostSelector: string = ''): string {
|
2016-08-12 04:39:43 -04:00
|
|
|
const sourceMappingUrl: string = extractSourceMappingUrl(cssText);
|
2015-10-30 18:09:04 -04:00
|
|
|
cssText = stripComments(cssText);
|
2015-02-18 04:06:31 -05:00
|
|
|
cssText = this._insertDirectives(cssText);
|
2016-08-12 04:39:43 -04:00
|
|
|
return this._scopeCssText(cssText, selector, hostSelector) + sourceMappingUrl;
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
2015-10-30 18:09:04 -04:00
|
|
|
private _insertDirectives(cssText: string): string {
|
2015-02-18 04:06:31 -05:00
|
|
|
cssText = this._insertPolyfillDirectivesInCssText(cssText);
|
|
|
|
return this._insertPolyfillRulesInCssText(cssText);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process styles to convert native ShadowDOM rules that will trip
|
|
|
|
* up the css parser; we rely on decorating the stylesheet with inert rules.
|
|
|
|
*
|
|
|
|
* For example, we convert this rule:
|
|
|
|
*
|
|
|
|
* polyfill-next-selector { content: ':host menu-item'; }
|
|
|
|
* ::content menu-item {
|
|
|
|
*
|
|
|
|
* to this:
|
|
|
|
*
|
|
|
|
* scopeName menu-item {
|
|
|
|
*
|
|
|
|
**/
|
2015-10-30 18:09:04 -04:00
|
|
|
private _insertPolyfillDirectivesInCssText(cssText: string): string {
|
2015-02-18 04:06:31 -05:00
|
|
|
// Difference with webcomponents.js: does not handle comments
|
2016-09-26 12:31:45 -04:00
|
|
|
return cssText.replace(
|
|
|
|
_cssContentNextSelectorRe, function(...m: string[]) { return m[1] + '{'; });
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process styles to add rules which will only apply under the polyfill
|
|
|
|
*
|
|
|
|
* For example, we convert this rule:
|
|
|
|
*
|
|
|
|
* polyfill-rule {
|
|
|
|
* content: ':host menu-item';
|
|
|
|
* ...
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* to this:
|
|
|
|
*
|
|
|
|
* scopeName menu-item {...}
|
|
|
|
*
|
|
|
|
**/
|
2015-10-30 18:09:04 -04:00
|
|
|
private _insertPolyfillRulesInCssText(cssText: string): string {
|
2015-02-18 04:06:31 -05:00
|
|
|
// Difference with webcomponents.js: does not handle comments
|
2016-09-26 12:31:45 -04:00
|
|
|
return cssText.replace(_cssContentRuleRe, (...m: string[]) => {
|
|
|
|
const rule = m[0].replace(m[1], '').replace(m[2], '');
|
|
|
|
return m[3] + rule;
|
|
|
|
});
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure styles are scoped. Pseudo-scoping takes a rule like:
|
|
|
|
*
|
|
|
|
* .foo {... }
|
|
|
|
*
|
|
|
|
* and converts this to
|
|
|
|
*
|
|
|
|
* scopeName .foo { ... }
|
|
|
|
*/
|
2015-10-30 18:09:04 -04:00
|
|
|
private _scopeCssText(cssText: string, scopeSelector: string, hostSelector: string): string {
|
2016-08-12 18:20:58 -04:00
|
|
|
const unscoped = this._extractUnscopedRulesFromCssText(cssText);
|
2015-02-18 04:06:31 -05:00
|
|
|
cssText = this._insertPolyfillHostInCssText(cssText);
|
|
|
|
cssText = this._convertColonHost(cssText);
|
|
|
|
cssText = this._convertColonHostContext(cssText);
|
|
|
|
cssText = this._convertShadowDOMSelectors(cssText);
|
2016-09-26 12:31:45 -04:00
|
|
|
if (scopeSelector) {
|
2015-10-29 13:57:54 -04:00
|
|
|
cssText = this._scopeSelectors(cssText, scopeSelector, hostSelector);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
cssText = cssText + '\n' + unscoped;
|
|
|
|
return cssText.trim();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process styles to add rules which will only apply under the polyfill
|
|
|
|
* and do not process via CSSOM. (CSSOM is destructive to rules on rare
|
|
|
|
* occasions, e.g. -webkit-calc on Safari.)
|
|
|
|
* For example, we convert this rule:
|
|
|
|
*
|
|
|
|
* @polyfill-unscoped-rule {
|
|
|
|
* content: 'menu-item';
|
|
|
|
* ... }
|
|
|
|
*
|
|
|
|
* to this:
|
|
|
|
*
|
|
|
|
* menu-item {...}
|
|
|
|
*
|
|
|
|
**/
|
2015-10-30 18:09:04 -04:00
|
|
|
private _extractUnscopedRulesFromCssText(cssText: string): string {
|
2015-02-18 04:06:31 -05:00
|
|
|
// Difference with webcomponents.js: does not handle comments
|
2016-08-12 18:20:58 -04:00
|
|
|
let r = '';
|
|
|
|
let m: RegExpExecArray;
|
2016-08-05 12:50:49 -04:00
|
|
|
_cssContentUnscopedRuleRe.lastIndex = 0;
|
|
|
|
while ((m = _cssContentUnscopedRuleRe.exec(cssText)) !== null) {
|
2016-09-26 12:31:45 -04:00
|
|
|
const rule = m[0].replace(m[2], '').replace(m[1], m[3]);
|
2015-07-10 13:38:24 -04:00
|
|
|
r += rule + '\n\n';
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* convert a rule like :host(.foo) > .bar { }
|
|
|
|
*
|
|
|
|
* to
|
|
|
|
*
|
|
|
|
* scopeName.foo > .bar
|
|
|
|
*/
|
2015-10-30 18:09:04 -04:00
|
|
|
private _convertColonHost(cssText: string): string {
|
2015-05-18 14:57:20 -04:00
|
|
|
return this._convertColonRule(cssText, _cssColonHostRe, this._colonHostPartReplacer);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* convert a rule like :host-context(.foo) > .bar { }
|
|
|
|
*
|
|
|
|
* to
|
|
|
|
*
|
|
|
|
* scopeName.foo > .bar, .foo scopeName > .bar { }
|
|
|
|
*
|
|
|
|
* and
|
|
|
|
*
|
|
|
|
* :host-context(.foo:host) .bar { ... }
|
|
|
|
*
|
|
|
|
* to
|
|
|
|
*
|
|
|
|
* scopeName.foo .bar { ... }
|
|
|
|
*/
|
2015-10-30 18:09:04 -04:00
|
|
|
private _convertColonHostContext(cssText: string): string {
|
2016-06-08 19:38:52 -04:00
|
|
|
return this._convertColonRule(
|
|
|
|
cssText, _cssColonHostContextRe, this._colonHostContextPartReplacer);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
2015-10-30 18:09:04 -04:00
|
|
|
private _convertColonRule(cssText: string, regExp: RegExp, partReplacer: Function): string {
|
2015-02-18 04:06:31 -05:00
|
|
|
// p1 = :host, p2 = contents of (), p3 rest of rule
|
2016-09-26 12:31:45 -04:00
|
|
|
return cssText.replace(regExp, function(...m: string[]) {
|
|
|
|
if (m[2]) {
|
|
|
|
const parts = m[2].split(',');
|
|
|
|
const r: string[] = [];
|
2016-08-12 18:20:58 -04:00
|
|
|
for (let i = 0; i < parts.length; i++) {
|
|
|
|
let p = parts[i];
|
2016-09-26 12:31:45 -04:00
|
|
|
if (!p) break;
|
|
|
|
r.push(partReplacer(_polyfillHostNoCombinator, p.trim(), m[3]));
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
return r.join(',');
|
|
|
|
} else {
|
|
|
|
return _polyfillHostNoCombinator + m[3];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-10-30 18:09:04 -04:00
|
|
|
private _colonHostContextPartReplacer(host: string, part: string, suffix: string): string {
|
2016-09-26 12:31:45 -04:00
|
|
|
if (part.indexOf(_polyfillHost) > -1) {
|
2015-02-18 04:06:31 -05:00
|
|
|
return this._colonHostPartReplacer(host, part, suffix);
|
|
|
|
} else {
|
|
|
|
return host + part + suffix + ', ' + part + ' ' + host + suffix;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-30 18:09:04 -04:00
|
|
|
private _colonHostPartReplacer(host: string, part: string, suffix: string): string {
|
2016-09-26 12:31:45 -04:00
|
|
|
return host + part.replace(_polyfillHost, '') + suffix;
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert combinators like ::shadow and pseudo-elements like ::content
|
|
|
|
* by replacing with space.
|
|
|
|
*/
|
2015-10-30 18:09:04 -04:00
|
|
|
private _convertShadowDOMSelectors(cssText: string): string {
|
2016-08-12 19:08:37 -04:00
|
|
|
return _shadowDOMSelectorsRe.reduce(
|
2016-09-26 12:31:45 -04:00
|
|
|
(result, pattern) => { return result.replace(pattern, ' '); }, cssText);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// change a selector like 'div' to 'name div'
|
2015-10-30 18:09:04 -04:00
|
|
|
private _scopeSelectors(cssText: string, scopeSelector: string, hostSelector: string): string {
|
|
|
|
return processRules(cssText, (rule: CssRule) => {
|
2016-08-12 18:20:58 -04:00
|
|
|
let selector = rule.selector;
|
|
|
|
let content = rule.content;
|
2015-10-30 18:09:04 -04:00
|
|
|
if (rule.selector[0] != '@' || rule.selector.startsWith('@page')) {
|
|
|
|
selector =
|
|
|
|
this._scopeSelector(rule.selector, scopeSelector, hostSelector, this.strictStyling);
|
2016-04-17 21:18:11 -04:00
|
|
|
} else if (rule.selector.startsWith('@media') || rule.selector.startsWith('@supports')) {
|
2015-10-30 18:09:04 -04:00
|
|
|
content = this._scopeSelectors(rule.content, scopeSelector, hostSelector);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
2015-10-30 18:09:04 -04:00
|
|
|
return new CssRule(selector, content);
|
|
|
|
});
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
private _scopeSelector(
|
|
|
|
selector: string, scopeSelector: string, hostSelector: string, strict: boolean): string {
|
2016-08-12 19:08:37 -04:00
|
|
|
return selector.split(',')
|
2016-08-26 19:11:57 -04:00
|
|
|
.map(part => part.trim().split(_shadowDeepSelectors))
|
2016-08-12 19:08:37 -04:00
|
|
|
.map((deepParts) => {
|
|
|
|
const [shallowPart, ...otherParts] = deepParts;
|
|
|
|
const applyScope = (shallowPart: string) => {
|
|
|
|
if (this._selectorNeedsScoping(shallowPart, scopeSelector)) {
|
2016-08-26 19:11:57 -04:00
|
|
|
return strict ?
|
|
|
|
this._applyStrictSelectorScope(shallowPart, scopeSelector, hostSelector) :
|
2016-08-12 19:08:37 -04:00
|
|
|
this._applySelectorScope(shallowPart, scopeSelector, hostSelector);
|
|
|
|
} else {
|
|
|
|
return shallowPart;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return [applyScope(shallowPart), ...otherParts].join(' ');
|
|
|
|
})
|
|
|
|
.join(', ');
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
2015-10-30 18:09:04 -04:00
|
|
|
private _selectorNeedsScoping(selector: string, scopeSelector: string): boolean {
|
2016-08-12 18:20:58 -04:00
|
|
|
const re = this._makeScopeMatcher(scopeSelector);
|
2016-08-05 12:50:49 -04:00
|
|
|
return !re.test(selector);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
2015-10-30 18:09:04 -04:00
|
|
|
private _makeScopeMatcher(scopeSelector: string): RegExp {
|
2016-08-12 18:20:58 -04:00
|
|
|
const lre = /\[/g;
|
|
|
|
const rre = /\]/g;
|
2016-09-26 12:31:45 -04:00
|
|
|
scopeSelector = scopeSelector.replace(lre, '\\[').replace(rre, '\\]');
|
2016-08-05 12:50:49 -04:00
|
|
|
return new RegExp('^(' + scopeSelector + ')' + _selectorReSuffix, 'm');
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
private _applySelectorScope(selector: string, scopeSelector: string, hostSelector: string):
|
|
|
|
string {
|
2016-08-26 19:11:57 -04:00
|
|
|
// Difference from webcomponents.js: scopeSelector could not be an array
|
2015-02-18 13:14:19 -05:00
|
|
|
return this._applySimpleSelectorScope(selector, scopeSelector, hostSelector);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// scope via name and [is=name]
|
2016-06-08 19:38:52 -04:00
|
|
|
private _applySimpleSelectorScope(selector: string, scopeSelector: string, hostSelector: string):
|
|
|
|
string {
|
2016-08-29 11:18:55 -04:00
|
|
|
// In Android browser, the lastIndex is not reset when the regex is used in String.replace()
|
|
|
|
_polyfillHostRe.lastIndex = 0;
|
2016-08-05 12:50:49 -04:00
|
|
|
if (_polyfillHostRe.test(selector)) {
|
2016-08-12 18:20:58 -04:00
|
|
|
const replaceBy = this.strictStyling ? `[${hostSelector}]` : scopeSelector;
|
2016-09-26 12:31:45 -04:00
|
|
|
return selector.replace(_polyfillHostNoCombinator, replaceBy)
|
|
|
|
.replace(_polyfillHostRe, replaceBy + ' ');
|
2015-02-18 04:06:31 -05:00
|
|
|
} else {
|
|
|
|
return scopeSelector + ' ' + selector;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// return a selector with [name] suffix on each simple selector
|
2015-10-30 18:09:04 -04:00
|
|
|
// e.g. .foo.bar > .zot becomes .foo[name].bar[name] > .zot[name] /** @internal */
|
2016-08-26 19:11:57 -04:00
|
|
|
private _applyStrictSelectorScope(selector: string, scopeSelector: string, hostSelector: string):
|
|
|
|
string {
|
2016-08-12 18:20:58 -04:00
|
|
|
const isRe = /\[is=([^\]]*)\]/g;
|
2016-08-26 19:11:57 -04:00
|
|
|
scopeSelector = scopeSelector.replace(isRe, (_: string, ...parts: string[]) => parts[0]);
|
|
|
|
|
2016-08-12 18:20:58 -04:00
|
|
|
const attrName = '[' + scopeSelector + ']';
|
2016-08-26 19:11:57 -04:00
|
|
|
|
|
|
|
const _scopeSelectorPart = (p: string) => {
|
2016-09-26 12:31:45 -04:00
|
|
|
let scopedP = p.trim();
|
2016-08-26 19:11:57 -04:00
|
|
|
|
2016-09-26 12:31:45 -04:00
|
|
|
if (!scopedP) {
|
2016-08-26 19:11:57 -04:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p.indexOf(_polyfillHostNoCombinator) > -1) {
|
|
|
|
scopedP = this._applySimpleSelectorScope(p, scopeSelector, hostSelector);
|
|
|
|
} else {
|
|
|
|
// remove :host since it should be unnecessary
|
|
|
|
var t = p.replace(_polyfillHostRe, '');
|
|
|
|
if (t.length > 0) {
|
|
|
|
const matches = t.match(/([^:]*)(:*)(.*)/);
|
|
|
|
if (matches !== null) {
|
|
|
|
scopedP = matches[1] + attrName + matches[2] + matches[3];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return scopedP;
|
|
|
|
};
|
|
|
|
|
2016-09-26 12:55:05 -04:00
|
|
|
const sep = /( |>|\+|~(?!=)|\[|\])\s*/g;
|
2016-08-26 19:11:57 -04:00
|
|
|
const scopeAfter = selector.indexOf(_polyfillHostNoCombinator);
|
|
|
|
|
|
|
|
let scoped = '';
|
|
|
|
let startIndex = 0;
|
|
|
|
let res: RegExpExecArray;
|
2016-09-26 12:55:05 -04:00
|
|
|
let inAttributeSelector: boolean = false;
|
2016-08-26 19:11:57 -04:00
|
|
|
|
|
|
|
while ((res = sep.exec(selector)) !== null) {
|
|
|
|
const separator = res[1];
|
2016-09-26 12:55:05 -04:00
|
|
|
if (separator === '[') {
|
|
|
|
inAttributeSelector = true;
|
|
|
|
scoped += selector.slice(startIndex, res.index).trim() + '[';
|
|
|
|
startIndex = sep.lastIndex;
|
|
|
|
}
|
|
|
|
if (!inAttributeSelector) {
|
|
|
|
const part = selector.slice(startIndex, res.index).trim();
|
|
|
|
// if a selector appears before :host-context it should not be shimmed as it
|
|
|
|
// matches on ancestor elements and not on elements in the host's shadow
|
|
|
|
const scopedPart = startIndex >= scopeAfter ? _scopeSelectorPart(part) : part;
|
|
|
|
scoped += `${scopedPart} ${separator} `;
|
|
|
|
startIndex = sep.lastIndex;
|
|
|
|
} else if (separator === ']') {
|
|
|
|
const part = selector.slice(startIndex, res.index).trim() + ']';
|
|
|
|
const scopedPart = startIndex >= scopeAfter ? _scopeSelectorPart(part) : part;
|
|
|
|
scoped += `${scopedPart} `;
|
|
|
|
startIndex = sep.lastIndex;
|
|
|
|
inAttributeSelector = false;
|
|
|
|
}
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
2016-08-26 19:11:57 -04:00
|
|
|
return scoped + _scopeSelectorPart(selector.substring(startIndex));
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
|
2015-10-30 18:09:04 -04:00
|
|
|
private _insertPolyfillHostInCssText(selector: string): string {
|
2016-08-26 19:11:57 -04:00
|
|
|
return selector.replace(_colonHostContextRe, _polyfillHostContext)
|
|
|
|
.replace(_colonHostRe, _polyfillHost);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|
|
|
|
}
|
2016-08-12 18:20:58 -04:00
|
|
|
const _cssContentNextSelectorRe =
|
2015-06-23 06:46:38 -04:00
|
|
|
/polyfill-next-selector[^}]*content:[\s]*?['"](.*?)['"][;\s]*}([^{]*?){/gim;
|
2016-08-12 18:20:58 -04:00
|
|
|
const _cssContentRuleRe = /(polyfill-rule)[^}]*(content:[\s]*['"](.*?)['"])[;\s]*[^}]*}/gim;
|
|
|
|
const _cssContentUnscopedRuleRe =
|
2015-06-23 06:46:38 -04:00
|
|
|
/(polyfill-unscoped-rule)[^}]*(content:[\s]*['"](.*?)['"])[;\s]*[^}]*}/gim;
|
2016-08-12 18:20:58 -04:00
|
|
|
const _polyfillHost = '-shadowcsshost';
|
2015-02-18 04:06:31 -05:00
|
|
|
// note: :host-context pre-processed to -shadowcsshostcontext.
|
2016-08-12 18:20:58 -04:00
|
|
|
const _polyfillHostContext = '-shadowcsscontext';
|
|
|
|
const _parenSuffix = ')(?:\\((' +
|
2016-06-08 19:38:52 -04:00
|
|
|
'(?:\\([^)(]*\\)|[^)(]*)+?' +
|
|
|
|
')\\))?([^,{]*)';
|
2016-08-12 18:20:58 -04:00
|
|
|
const _cssColonHostRe = new RegExp('(' + _polyfillHost + _parenSuffix, 'gim');
|
|
|
|
const _cssColonHostContextRe = new RegExp('(' + _polyfillHostContext + _parenSuffix, 'gim');
|
|
|
|
const _polyfillHostNoCombinator = _polyfillHost + '-no-combinator';
|
|
|
|
const _shadowDOMSelectorsRe = [
|
2016-08-26 19:11:57 -04:00
|
|
|
/::shadow/g,
|
|
|
|
/::content/g,
|
2015-03-20 03:52:12 -04:00
|
|
|
// Deprecated selectors
|
2016-08-26 19:11:57 -04:00
|
|
|
/\/shadow-deep\//g,
|
|
|
|
/\/shadow\//g,
|
2015-02-18 04:06:31 -05:00
|
|
|
];
|
2016-08-12 18:20:58 -04:00
|
|
|
const _shadowDeepSelectors = /(?:>>>)|(?:\/deep\/)/g;
|
|
|
|
const _selectorReSuffix = '([>\\s~+\[.,{:][\\s\\S]*)?$';
|
2016-08-26 19:11:57 -04:00
|
|
|
const _polyfillHostRe = /-shadowcsshost/gim;
|
2016-08-12 18:20:58 -04:00
|
|
|
const _colonHostRe = /:host/gim;
|
|
|
|
const _colonHostContextRe = /:host-context/gim;
|
2015-02-18 04:06:31 -05:00
|
|
|
|
2016-08-12 18:20:58 -04:00
|
|
|
const _commentRe = /\/\*\s*[\s\S]*?\*\//g;
|
2015-10-30 18:09:04 -04:00
|
|
|
|
2016-08-26 19:11:57 -04:00
|
|
|
function stripComments(input: string): string {
|
2016-09-26 12:31:45 -04:00
|
|
|
return input.replace(_commentRe, '');
|
2015-10-30 18:09:04 -04:00
|
|
|
}
|
2015-10-29 13:57:54 -04:00
|
|
|
|
2016-09-14 00:59:11 -04:00
|
|
|
// all comments except inline source mapping
|
2016-09-07 19:48:10 -04:00
|
|
|
const _sourceMappingUrlRe = /\/\*\s*#\s*sourceMappingURL=[\s\S]+?\*\//;
|
2016-08-12 04:39:43 -04:00
|
|
|
|
2016-08-26 19:11:57 -04:00
|
|
|
function extractSourceMappingUrl(input: string): string {
|
2016-08-12 04:39:43 -04:00
|
|
|
const matcher = input.match(_sourceMappingUrlRe);
|
2016-09-07 19:48:10 -04:00
|
|
|
return matcher ? matcher[0] : '';
|
2016-08-12 04:39:43 -04:00
|
|
|
}
|
|
|
|
|
2016-08-12 18:20:58 -04:00
|
|
|
const _ruleRe = /(\s*)([^;\{\}]+?)(\s*)((?:{%BLOCK%}?\s*;?)|(?:\s*;))/g;
|
|
|
|
const _curlyRe = /([{}])/g;
|
2015-10-30 18:09:04 -04:00
|
|
|
const OPEN_CURLY = '{';
|
|
|
|
const CLOSE_CURLY = '}';
|
|
|
|
const BLOCK_PLACEHOLDER = '%BLOCK%';
|
2015-10-29 13:57:54 -04:00
|
|
|
|
2015-10-30 18:09:04 -04:00
|
|
|
export class CssRule {
|
2016-08-26 19:11:57 -04:00
|
|
|
constructor(public selector: string, public content: string) {}
|
2015-10-30 18:09:04 -04:00
|
|
|
}
|
|
|
|
|
2016-08-26 19:11:57 -04:00
|
|
|
export function processRules(input: string, ruleCallback: Function): string {
|
2016-08-12 18:20:58 -04:00
|
|
|
const inputWithEscapedBlocks = escapeBlocks(input);
|
|
|
|
let nextBlockIndex = 0;
|
2016-09-26 12:31:45 -04:00
|
|
|
return inputWithEscapedBlocks.escapedString.replace(_ruleRe, function(...m: string[]) {
|
|
|
|
const selector = m[2];
|
|
|
|
let content = '';
|
|
|
|
let suffix = m[4];
|
|
|
|
let contentPrefix = '';
|
|
|
|
if (suffix && suffix.startsWith('{' + BLOCK_PLACEHOLDER)) {
|
|
|
|
content = inputWithEscapedBlocks.blocks[nextBlockIndex++];
|
|
|
|
suffix = suffix.substring(BLOCK_PLACEHOLDER.length + 1);
|
|
|
|
contentPrefix = '{';
|
|
|
|
}
|
|
|
|
const rule = ruleCallback(new CssRule(selector, content));
|
|
|
|
return `${m[1]}${rule.selector}${m[3]}${contentPrefix}${rule.content}${suffix}`;
|
|
|
|
});
|
2015-10-30 18:09:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
class StringWithEscapedBlocks {
|
2016-08-26 19:11:57 -04:00
|
|
|
constructor(public escapedString: string, public blocks: string[]) {}
|
2015-10-30 18:09:04 -04:00
|
|
|
}
|
|
|
|
|
2016-08-26 19:11:57 -04:00
|
|
|
function escapeBlocks(input: string): StringWithEscapedBlocks {
|
2016-09-26 12:31:45 -04:00
|
|
|
const inputParts = input.split(_curlyRe);
|
|
|
|
const resultParts: string[] = [];
|
|
|
|
const escapedBlocks: string[] = [];
|
2016-08-12 18:20:58 -04:00
|
|
|
let bracketCount = 0;
|
2016-09-26 12:31:45 -04:00
|
|
|
let currentBlockParts: string[] = [];
|
2016-08-26 19:11:57 -04:00
|
|
|
for (let partIndex = 0; partIndex < inputParts.length; partIndex++) {
|
2016-08-12 18:20:58 -04:00
|
|
|
const part = inputParts[partIndex];
|
2015-10-30 18:09:04 -04:00
|
|
|
if (part == CLOSE_CURLY) {
|
2015-10-29 13:57:54 -04:00
|
|
|
bracketCount--;
|
|
|
|
}
|
2015-10-30 18:09:04 -04:00
|
|
|
if (bracketCount > 0) {
|
|
|
|
currentBlockParts.push(part);
|
|
|
|
} else {
|
|
|
|
if (currentBlockParts.length > 0) {
|
|
|
|
escapedBlocks.push(currentBlockParts.join(''));
|
|
|
|
resultParts.push(BLOCK_PLACEHOLDER);
|
|
|
|
currentBlockParts = [];
|
|
|
|
}
|
|
|
|
resultParts.push(part);
|
|
|
|
}
|
|
|
|
if (part == OPEN_CURLY) {
|
|
|
|
bracketCount++;
|
2015-10-29 13:57:54 -04:00
|
|
|
}
|
|
|
|
}
|
2015-10-30 18:09:04 -04:00
|
|
|
if (currentBlockParts.length > 0) {
|
|
|
|
escapedBlocks.push(currentBlockParts.join(''));
|
|
|
|
resultParts.push(BLOCK_PLACEHOLDER);
|
2015-10-29 13:57:54 -04:00
|
|
|
}
|
2015-10-30 18:09:04 -04:00
|
|
|
return new StringWithEscapedBlocks(resultParts.join(''), escapedBlocks);
|
2015-02-18 04:06:31 -05:00
|
|
|
}
|