-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathextension.js
132 lines (109 loc) · 3.59 KB
/
extension.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
/* extension.js
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
import GLib from "gi://GLib";
import GObject from "gi://GObject";
import * as Main from "resource:///org/gnome/shell/ui/main.js";
import { Extension } from "resource:///org/gnome/shell/extensions/extension.js";
import Indicator from "./src/indicator.js";
import * as DateHelperFunctions from "./src/date.js";
import Gio from "gi://Gio";
const IndicatorInstance = GObject.registerClass(Indicator);
export default class NextUpExtension extends Extension {
enable() {
this._indicator = new IndicatorInstance({
confettiGicon: Gio.icon_new_for_string(
this.path + "/assets/party-popper.png"
),
openPrefsCallback: this.openPreferences.bind(this),
});
this._settings = this.getSettings();
this._settingChangedSignal = this._settings.connect(
"changed::which-panel",
() => {
this.unloadIndicator();
this.loadIndicator();
}
);
// Wait 3 seconds before loading the indicator
// So that it isn't loaded too early and positioned after other elements in the panel
this.delaySourceId = GLib.timeout_add_seconds(
GLib.PRIORITY_DEFAULT,
3,
() => {
this.loadIndicator();
this._startLoop();
return false;
}
);
}
_startLoop() {
this.sourceId = GLib.timeout_add_seconds(
GLib.PRIORITY_DEFAULT,
5, // seconds to wait
() => {
this.refreshIndicator();
return GLib.SOURCE_CONTINUE;
}
);
}
loadIndicator() {
const boxes = [
Main.panel._leftBox,
Main.panel._centerBox,
Main.panel._rightBox,
];
const whichPanel = this._settings.get_int("which-panel");
// If aligned to left, place it after workspaces indicator
const index = whichPanel === 0 ? 1 : 0;
boxes[whichPanel].insert_child_at_index(this._indicator.container, index);
}
unloadIndicator() {
this._indicator.container
.get_parent()
.remove_child(this._indicator.container);
}
refreshIndicator() {
const todaysEvents = DateHelperFunctions.getTodaysEvents(
this._indicator._calendarSource
);
const eventStatus =
DateHelperFunctions.getNextEventsToDisplay(todaysEvents);
const text = DateHelperFunctions.eventStatusToIndicatorText(eventStatus);
if (eventStatus.currentEvent === null && eventStatus.nextEvent === null) {
this._indicator.showConfettiIcon();
} else {
this._indicator.showAlarmIcon();
}
this._indicator.setText(text);
}
disable() {
Main.panel._centerBox.remove_child(this._indicator.container);
this._settings.disconnect(this._settingChangedSignal);
this._settings = null;
this._indicator.destroy();
this._indicator = null;
if (this.sourceId) {
GLib.Source.remove(this.sourceId);
this.sourceId = null;
}
if (this.delaySourceId) {
GLib.Source.remove(this.delaySourceId);
this.delaySourceId = null;
}
}
}