summaryrefslogtreecommitdiff
path: root/src/services/palette.ts
blob: 7f6dc0c66f5f31fb31b239b03d5c6f5c3e25730d (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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
import { GLib, GObject, monitorFile, property, readFile, readFileAsync, register } from "astal";

export type Hex = `#${string}`;

export interface IPalette {
    rosewater: Hex;
    flamingo: Hex;
    pink: Hex;
    mauve: Hex;
    red: Hex;
    maroon: Hex;
    peach: Hex;
    yellow: Hex;
    green: Hex;
    teal: Hex;
    sky: Hex;
    sapphire: Hex;
    blue: Hex;
    lavender: Hex;
    text: Hex;
    subtext1: Hex;
    subtext0: Hex;
    overlay2: Hex;
    overlay1: Hex;
    overlay0: Hex;
    surface2: Hex;
    surface1: Hex;
    surface0: Hex;
    base: Hex;
    mantle: Hex;
    crust: Hex;
    accent: Hex;
}

@register({ GTypeName: "Palette" })
export default class Palette extends GObject.Object {
    static instance: Palette;
    static get_default() {
        if (!this.instance) this.instance = new Palette();

        return this.instance;
    }

    #isLight: boolean;
    #name: string;
    #colours!: IPalette;

    @property(Boolean)
    get isLight() {
        return this.#isLight;
    }

    @property(String)
    get name() {
        return this.#name;
    }

    @property(Object)
    get colours() {
        return this.#colours;
    }

    @property(String)
    get rosewater() {
        return this.#colours.rosewater;
    }

    @property(String)
    get flamingo() {
        return this.#colours.flamingo;
    }

    @property(String)
    get pink() {
        return this.#colours.pink;
    }

    @property(String)
    get mauve() {
        return this.#colours.mauve;
    }

    @property(String)
    get red() {
        return this.#colours.red;
    }

    @property(String)
    get maroon() {
        return this.#colours.maroon;
    }

    @property(String)
    get peach() {
        return this.#colours.peach;
    }

    @property(String)
    get yellow() {
        return this.#colours.yellow;
    }

    @property(String)
    get green() {
        return this.#colours.green;
    }

    @property(String)
    get teal() {
        return this.#colours.teal;
    }

    @property(String)
    get sky() {
        return this.#colours.sky;
    }

    @property(String)
    get sapphire() {
        return this.#colours.sapphire;
    }

    @property(String)
    get blue() {
        return this.#colours.blue;
    }

    @property(String)
    get lavender() {
        return this.#colours.lavender;
    }

    @property(String)
    get text() {
        return this.#colours.text;
    }

    @property(String)
    get subtext1() {
        return this.#colours.subtext1;
    }

    @property(String)
    get subtext0() {
        return this.#colours.subtext0;
    }

    @property(String)
    get overlay2() {
        return this.#colours.overlay2;
    }

    @property(String)
    get overlay1() {
        return this.#colours.overlay1;
    }

    @property(String)
    get overlay0() {
        return this.#colours.overlay0;
    }

    @property(String)
    get surface2() {
        return this.#colours.surface2;
    }

    @property(String)
    get surface1() {
        return this.#colours.surface1;
    }

    @property(String)
    get surface0() {
        return this.#colours.surface0;
    }

    @property(String)
    get base() {
        return this.#colours.base;
    }

    @property(String)
    get mantle() {
        return this.#colours.mantle;
    }

    @property(String)
    get crust() {
        return this.#colours.crust;
    }

    @property(String)
    get accent() {
        return this.#colours.accent;
    }

    #notify() {
        this.notify("colours");
        this.notify("rosewater");
        this.notify("flamingo");
        this.notify("pink");
        this.notify("mauve");
        this.notify("red");
        this.notify("maroon");
        this.notify("peach");
        this.notify("yellow");
        this.notify("green");
        this.notify("teal");
        this.notify("sky");
        this.notify("sapphire");
        this.notify("blue");
        this.notify("lavender");
        this.notify("text");
        this.notify("subtext1");
        this.notify("subtext0");
        this.notify("overlay2");
        this.notify("overlay1");
        this.notify("overlay0");
        this.notify("surface2");
        this.notify("surface1");
        this.notify("surface0");
        this.notify("base");
        this.notify("mantle");
        this.notify("crust");
        this.notify("accent");
    }

    update() {
        let schemeColours;
        if (GLib.file_test(`${STATE}/scheme/current.txt`, GLib.FileTest.EXISTS)) {
            const currentScheme = readFile(`${STATE}/scheme/current.txt`);
            schemeColours = currentScheme.split("\n").map(l => l.split(" "));
        } else
            schemeColours = readFile(`${SRC}/scss/scheme/_default.scss`)
                .split("\n")
                .map(l => {
                    const [name, hex] = l.split(":");
                    return [name.slice(1), hex.trim().slice(1, -1)];
                });

        this.#colours = schemeColours.reduce((acc, [name, hex]) => ({ ...acc, [name]: `#${hex}` }), {} as IPalette);
        this.#notify();
    }

    constructor() {
        super();

        this.#isLight = readFile(`${STATE}/scheme/current-mode.txt`) === "light";
        monitorFile(`${STATE}/scheme/current-mode.txt`, async file => {
            this.#isLight = (await readFileAsync(file)) === "light";
            this.notify("is-light");
        });

        this.#name = readFile(`${STATE}/scheme/current-name.txt`);
        monitorFile(`${STATE}/scheme/current-name.txt`, async file => {
            this.#name = await readFileAsync(file);
            this.notify("name");
        });

        this.update();
        monitorFile(`${STATE}/scheme/current.txt`, () => this.update());
    }
}