JustPerfection review: refactored Lang uses

This commit is contained in:
Marcin Jakubowski
2021-12-07 10:04:11 +01:00
parent 8273f4228f
commit 599db19e44
2 changed files with 13 additions and 16 deletions
+5 -3
View File
@@ -23,7 +23,6 @@ const Me = ExtensionUtils.getCurrentExtension();
const Prefs = Me.imports.prefs;
const Main = imports.ui.main;
const MessageTray = imports.ui.messageTray.MessageTray;
const Lang = imports.lang;
const BannerBin = Main.messageTray._bannerBin;
@@ -150,8 +149,7 @@ class Extension {
_loadSettings() {
this._settings = Prefs.SettingsSchema;
this._settingsChangedId = this._settings.connect('changed',
Lang.bind(this, this._onSettingsChange));
this._settingsChangedId = this._settings.connect('changed', this._onSettingsChange.bind(this));
this._fetchSettings();
}
@@ -191,6 +189,10 @@ class Extension {
BannerBin.x = 0
BannerBin.y = 0
this.restore()
if (this._settingsChangedId) {
this._settings.disconnect(this._settingsChangedId);
this._settingsChangedId = null;
}
this._settings = null;
}
+8 -13
View File
@@ -21,13 +21,9 @@
https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator
https://extensions.gnome.org/extension/779/clipboard-indicator/
*/
const GObject = imports.gi.GObject;
const Gtk = imports.gi.Gtk;
const Gio = imports.gi.Gio;
const Lang = imports.lang;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
@@ -51,9 +47,8 @@ function init() {
Gettext.bindtextdomain('notification-banner-reloaded', localeDir.get_path());
}
const App = new Lang.Class({
Name: 'NotificationBannerReloaded.App',
_init: function() {
class Preferences {
constructor() {
this.main = new Gtk.Grid({
margin_top: 10,
margin_bottom: 10,
@@ -83,7 +78,7 @@ const App = new Lang.Class({
});
let rendererText = new Gtk.CellRendererText();
for (widget of [this.anchorHorizontal, this.anchorVertical, this.animationDirection]) {
for (const widget of [this.anchorHorizontal, this.anchorVertical, this.animationDirection]) {
widget.pack_start(rendererText, false);
widget.add_attribute(rendererText, "text", 0);
}
@@ -140,9 +135,9 @@ const App = new Lang.Class({
SettingsSchema.bind(Fields.ANCHOR_VERTICAL, this.anchorVertical, 'active', Gio.SettingsBindFlags.DEFAULT);
SettingsSchema.bind(Fields.ANIMATION_DIRECTION, this.animationDirection, 'active', Gio.SettingsBindFlags.DEFAULT);
SettingsSchema.bind(Fields.ANIMATION_TIME, this.animationTime, 'value', Gio.SettingsBindFlags.DEFAULT);
},
}
_create_options : function(opts){
_create_options(opts) {
let options = opts.map(function (v) { return { name: v }});
let liststore = new Gtk.ListStore();
liststore.set_column_types([GObject.TYPE_STRING])
@@ -153,10 +148,10 @@ const App = new Lang.Class({
}
return liststore;
}
});
};
function buildPrefsWidget(){
let widget = new App();
function buildPrefsWidget() {
let widget = new Preferences();
return widget.main;
}