forked from ampproject/amphtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.js
193 lines (169 loc) · 5.05 KB
/
style.js
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/**
* Copyright 2015 The AMP HTML Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/** @private @const {!Object<string>} */
const propertyNameCache_ = Object.create(null);
/** @private @const {!Array<string>} */
const vendorPrefixes_ = ['Webkit', 'webkit', 'Moz', 'moz', 'ms', 'O', 'o'];
/**
* @export
* @param {string} camelCase camel cased string
* @return {string} title cased string
*/
export function camelCaseToTitleCase(camelCase) {
return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);
}
/**
* Checks the object if a prefixed version of a property exists and returns
* it or returns an empty string.
* @private
* @param {!Object} object
* @param {string} titleCase the title case version of a css property name
* @return {string} the prefixed property name or null.
*/
function getVendorJsPropertyName_(object, titleCase) {
for (let i = 0; i < vendorPrefixes_.length; i++) {
let propertyName = vendorPrefixes_[i] + titleCase;
if (object[propertyName] !== undefined) {
return propertyName;
}
}
return '';
}
/**
* Returns the possibly prefixed JavaScript property name of a style property
* (ex. WebkitTransitionDuration) given a camelCase'd version of the property
* (ex. transitionDuration).
* @export
* @param {!Object} object
* @param {string} camelCase the camel cased version of a css property name
* @param {boolean=} opt_bypassCache bypass the memoized cache of property
* mapping
* @return {string}
*/
export function getVendorJsPropertyName(object, camelCase, opt_bypassCache) {
let propertyName = propertyNameCache_[camelCase];
if (!propertyName || opt_bypassCache) {
propertyName = camelCase;
if (object[camelCase] === undefined) {
let titleCase = camelCaseToTitleCase(camelCase);
let prefixedPropertyName = getVendorJsPropertyName_(object, titleCase);
if (object[prefixedPropertyName] !== undefined) {
propertyName = prefixedPropertyName;
}
}
if (!opt_bypassCache) {
propertyNameCache_[camelCase] = propertyName;
}
}
return propertyName;
}
/**
* Sets the CSS style of the specified element with optional units, e.g. "px".
* @param {!Element} element
* @param {string} property
* @param {*} value
* @param {string=} opt_units
* @param {boolean=} opt_bypassCache
*/
export function setStyle(element, property, value, opt_units, opt_bypassCache) {
let propertyName = getVendorJsPropertyName(element.style, property,
opt_bypassCache);
if (propertyName) {
element.style[propertyName] = opt_units ? value + opt_units : value;
}
}
/**
* Returns the value of the CSS style of the specified element.
* @param {!Element} element
* @param {string} property
* @param {boolean=} opt_bypassCache
* @return {*}
*/
export function getStyle(element, property, opt_bypassCache) {
let propertyName = getVendorJsPropertyName(element.style, property,
opt_bypassCache);
if (!propertyName) {
return undefined;
}
return element.style[propertyName];
}
/**
* Sets the CSS styles of the specified element. The styles
* a specified as a map from CSS property names to their values.
* @param {!Element} element
* @param {!Object<string, *>} styles
*/
export function setStyles(element, styles) {
for (let k in styles) {
setStyle(element, k, styles[k]);
}
}
/**
* Shows or hides the specified element.
* @param {!Element} element
* @param {boolean=} opt_display
*/
export function toggle(element, opt_display) {
if (opt_display === undefined) {
opt_display = !(element.style.display != 'none');
}
element.style.display = opt_display ? '' : 'none';
}
/**
* Returns a pixel value.
* @param {number} value
* @return {string}
*/
export function px(value) {
return value + 'px';
}
/**
* Returns a "translateX" for CSS "transform" property.
* @param {number|string} value
* @return {string}
*/
export function translateX(value) {
if (typeof value == 'string') {
return `translateX(${value})`;
}
return `translateX(${px(value)})`;
}
/**
* Returns a "translateX" for CSS "transform" property.
* @param {number|string} x
* @param {(number|string)=} opt_y
* @return {string}
*/
export function translate(x, opt_y) {
if (typeof x == 'number') {
x = px(x);
}
if (opt_y === undefined) {
return `translate(${x})`;
}
if (typeof opt_y == 'number') {
opt_y = px(opt_y);
}
return `translate(${x},${opt_y})`;
}
/**
* Returns a "scale" for CSS "transform" property.
* @param {number|string} value
* @return {string}
*/
export function scale(value) {
return `scale(${value})`;
}