77 lines
2.2 KiB
JavaScript
77 lines
2.2 KiB
JavaScript
/* 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
|
|
*/
|
|
|
|
/* exported init */
|
|
|
|
const GETTEXT_DOMAIN = 'nepalidate';
|
|
|
|
const { Clutter, GObject, St } = imports.gi;
|
|
|
|
const ExtensionUtils = imports.misc.extensionUtils;
|
|
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
|
const Calendar = Me.imports.calendar;
|
|
const Main = imports.ui.main;
|
|
const PanelMenu = imports.ui.panelMenu;
|
|
const PopupMenu = imports.ui.popupMenu;
|
|
|
|
const _ = ExtensionUtils.gettext;
|
|
|
|
const Indicator = GObject.registerClass(
|
|
class Indicator extends PanelMenu.Button {
|
|
_init() {
|
|
super._init(0.0, _('Nepali Date'));
|
|
|
|
var nepaliDate = Calendar.toNepali(new Date());
|
|
console.log(nepaliDate);
|
|
|
|
var label = new St.Label({
|
|
style_class: 'nepalidate-label',
|
|
y_align: Clutter.ActorAlign.CENTER
|
|
});
|
|
label.text = (
|
|
Calendar.convertMonths(nepaliDate.nm.toString()) + " " +
|
|
Calendar.convertNumbers(nepaliDate.nd.toString()) + ", " +
|
|
Calendar.convertNumbers(nepaliDate.ny.toString())
|
|
);
|
|
|
|
this.add_child(label);
|
|
}
|
|
});
|
|
|
|
class Extension {
|
|
constructor(uuid) {
|
|
this._uuid = uuid;
|
|
|
|
ExtensionUtils.initTranslations(GETTEXT_DOMAIN);
|
|
}
|
|
|
|
enable() {
|
|
this._indicator = new Indicator();
|
|
Main.panel.addToStatusArea(this._uuid, this._indicator, 5);
|
|
}
|
|
|
|
disable() {
|
|
this._indicator.destroy();
|
|
this._indicator = null;
|
|
}
|
|
}
|
|
|
|
function init(meta) {
|
|
return new Extension(meta.uuid);
|
|
}
|