-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathdecoration-style.ts
More file actions
65 lines (56 loc) · 2.77 KB
/
decoration-style.ts
File metadata and controls
65 lines (56 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// *****************************************************************************
// Copyright (C) 2021 Ericsson and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
export namespace DecorationStyle {
export function createStyleElement(styleId: string, container: HTMLElement = document.head): HTMLStyleElement {
const style = document.createElement('style');
style.id = styleId;
style.type = 'text/css';
style.media = 'screen';
style.appendChild(document.createTextNode('')); // trick for webkit
container.appendChild(style);
return style;
}
export function createStyleSheet(styleId: string, container?: HTMLElement): CSSStyleSheet {
return <CSSStyleSheet>createStyleElement(styleId, container).sheet;
}
function getRuleIndex(selector: string, styleSheet: CSSStyleSheet): number {
return Array.from(styleSheet.cssRules || styleSheet.rules).findIndex(rule => rule.type === CSSRule.STYLE_RULE && (<CSSStyleRule>rule).selectorText === selector);
}
export function getOrCreateStyleRule(selector: string, styleSheet: CSSStyleSheet): CSSStyleRule {
let index = getRuleIndex(selector, styleSheet);
if (index === -1) {
// The given selector does not exist in the provided independent style sheet, rule index = 0
index = styleSheet.insertRule(selector + '{}', 0);
}
const rules = styleSheet.cssRules || styleSheet.rules;
const rule = rules[index];
if (rule && rule.type === CSSRule.STYLE_RULE) {
return rule as CSSStyleRule;
}
styleSheet.deleteRule(index);
throw new Error('This function is only for CSS style rules. Other types of CSS rules are not allowed.');
}
export function deleteStyleRule(selector: string, styleSheet: CSSStyleSheet): void {
if (!styleSheet) {
return;
}
// In general, only one rule exists for a given selector in the provided independent style sheet
const index = getRuleIndex(selector, styleSheet);
if (index !== -1) {
styleSheet.deleteRule(index);
}
}
}