-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply_styles.ts
50 lines (40 loc) · 1.34 KB
/
apply_styles.ts
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
import { toCamelCase } from "./toCamelCase";
/**
* Applies CSS styles to the input HTML element.
*/
function applyStyles(element: HTMLElement, styles: string) {
styles
.trim()
.split(";")
.forEach((style) => {
const [prop, value] = style.trim().split(":");
if (!prop) return;
element.style[toCamelCase(prop)] = value;
});
}
// import assert from "assert";
// import { describe, mock, test } from "node:test";
// describe("tests the applyStyles function", () => {
// const elem = { style: {} };
// const toCamelCase = mock.fn();
// test("Correctly parses input into valid CSS", () => {
// applyStyles(elem, "font-size: 20px; background-color: red;");
// assert.strictEqual(toCamelCase.mock.calls.length, 2);
// assert.deepEqual(toCamelCase.mock.calls[0].arguments, ["font-size"]);
// assert.deepEqual(toCamelCase.mock.calls[1].arguments, ["background-color"]);
// });
// test("Correctly handles template strings", () => {
// const x = 27.34;
// const y = 55.02;
// applyStyles(
// elem,
// `
// top: ${y}px;
// left: ${x}px;
// `,
// );
// assert.strictEqual(toCamelCase.mock.calls.length, 2);
// assert.deepEqual(toCamelCase.mock.calls[0].arguments, ["top"]);
// assert.deepEqual(toCamelCase.mock.calls[1].arguments, ["left"]);
// });
// });