blob: 939d11a0e0d7ae5017f51e6ade69cdca6bd25ec1 (
plain)
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
|
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = toCSSLineSpacing;
// Line spacing names and their values.
var LINE_SPACING_100 = exports.LINE_SPACING_100 = '125%';
var LINE_SPACING_115 = exports.LINE_SPACING_115 = '138%';
var LINE_SPACING_150 = exports.LINE_SPACING_150 = '165%';
var LINE_SPACING_200 = exports.LINE_SPACING_200 = '232%';
var SINGLE_LINE_SPACING = exports.SINGLE_LINE_SPACING = LINE_SPACING_100;
var DOUBLE_LINE_SPACING = exports.DOUBLE_LINE_SPACING = LINE_SPACING_200;
var NUMBER_VALUE_PATTERN = /^\d+(.\d+)?$/;
// Normalize the css line-height vlaue to percentage-based value if applicable.
// Also, it calibrates the incorrect line spacing value exported from Google
// Doc.
function toCSSLineSpacing(source) {
if (!source) {
return '';
}
var strValue = String(source);
// e.g. line-height: 1.5;
if (NUMBER_VALUE_PATTERN.test(strValue)) {
var numValue = parseFloat(strValue);
strValue = String(Math.round(numValue * 100)) + '%';
}
// Google Doc exports line spacing with wrong values. For instance:
// - Single => 100%
// - 1.15 => 115%
// - Double => 200%
// But the actual CSS value measured in Google Doc is like this:
// - Single => 125%
// - 1.15 => 138%
// - Double => 232%
// The following `if` block will calibrate the value if applicable.
if (strValue === '100%') {
return LINE_SPACING_100;
}
if (strValue === '115%') {
return LINE_SPACING_115;
}
if (strValue === '150%') {
return LINE_SPACING_150;
}
if (strValue === '200%') {
return LINE_SPACING_200;
}
// e.g. line-height: 15px;
return strValue;
}
|