Add Preferences class to handle localStorage
This commit is contained in:
parent
bb34f11308
commit
02005a0ef8
|
@ -18,7 +18,7 @@ import * as _ from 'lodash/fp';
|
||||||
import * as browser from 'webextension-polyfill';
|
import * as browser from 'webextension-polyfill';
|
||||||
|
|
||||||
import { MessageKind } from './types';
|
import { MessageKind } from './types';
|
||||||
import { constants } from './constants';
|
import constants from './constants';
|
||||||
|
|
||||||
const buildSearchByNameURL = (instance: string, query: string): string => `https://${instance}/api/v1/search/videos?search=${encodeURIComponent(query)}`;
|
const buildSearchByNameURL = (instance: string, query: string): string => `https://${instance}/api/v1/search/videos?search=${encodeURIComponent(query)}`;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
export const constants = {
|
export default {
|
||||||
defaultInstance: 'peertube.social'
|
defaultInstance: 'peertube.social'
|
||||||
};
|
};
|
||||||
|
|
|
@ -16,8 +16,7 @@
|
||||||
|
|
||||||
import * as _ from 'lodash/fp';
|
import * as _ from 'lodash/fp';
|
||||||
import * as browser from 'webextension-polyfill';
|
import * as browser from 'webextension-polyfill';
|
||||||
|
import Preferences from './preferences'
|
||||||
import { constants } from './constants';
|
|
||||||
|
|
||||||
function id(id: string): Element { return document.getElementById(id); }
|
function id(id: string): Element { return document.getElementById(id); }
|
||||||
|
|
||||||
|
@ -25,24 +24,18 @@ const searchInstance = () => id('search-instance') as HTMLInputElement;
|
||||||
const openInOriginalInstance = () => id('open-in-original-instance') as HTMLInputElement;
|
const openInOriginalInstance = () => id('open-in-original-instance') as HTMLInputElement;
|
||||||
const showOnPeertube = () => id('show-on-peertube') as HTMLInputElement;
|
const showOnPeertube = () => id('show-on-peertube') as HTMLInputElement;
|
||||||
|
|
||||||
|
Preferences.getPreferences().then(preferences => {
|
||||||
|
searchInstance().value = preferences.searchInstance;
|
||||||
|
openInOriginalInstance().checked = preferences.openInOriginalInstance;
|
||||||
|
showOnPeertube().checked = preferences.showOnPeertube;
|
||||||
|
|
||||||
function saveOptions(e) {
|
function saveOptions(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
browser.storage.local.set({
|
preferences.searchInstance = searchInstance().value;
|
||||||
searchInstance: _.defaultTo(constants.defaultInstance, stripProtocol(searchInstance().value)),
|
preferences.openInOriginalInstance = openInOriginalInstance().checked;
|
||||||
openInOriginalInstance: _.defaultTo(true, openInOriginalInstance().checked),
|
preferences.showOnPeertube = showOnPeertube().checked;
|
||||||
showOnPeertube: _.defaultTo(false, showOnPeertube().checked),
|
preferences.save();
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const stripProtocol = _.replace(/^https?:\/\//, '');
|
|
||||||
|
|
||||||
function restoreOptions() {
|
|
||||||
browser.storage.local.get().then(result => {
|
|
||||||
searchInstance().value = _.defaultTo(constants.defaultInstance, result.searchInstance as string);
|
|
||||||
openInOriginalInstance().checked = _.defaultTo(true, result.openInOriginalInstance as boolean);
|
|
||||||
showOnPeertube().checked = _.defaultTo(false, result.showOnPeertube as boolean);
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', restoreOptions);
|
|
||||||
document.querySelector('form').addEventListener('submit', saveOptions);
|
document.querySelector('form').addEventListener('submit', saveOptions);
|
||||||
|
})
|
||||||
|
|
|
@ -19,7 +19,7 @@ import * as browser from 'webextension-polyfill';
|
||||||
|
|
||||||
import { htmlToElement } from './util';
|
import { htmlToElement } from './util';
|
||||||
import { MessageKind } from './types';
|
import { MessageKind } from './types';
|
||||||
import { constants } from './constants';
|
import Preferences from './preferences';
|
||||||
|
|
||||||
const watchURL = (host, uuid) => `https://${host}/videos/watch/${uuid}`;
|
const watchURL = (host, uuid) => `https://${host}/videos/watch/${uuid}`;
|
||||||
const thumbnailURL = (host, path) => `https://${host}${path}`;
|
const thumbnailURL = (host, path) => `https://${host}${path}`;
|
||||||
|
@ -27,11 +27,10 @@ const thumbnailURL = (host, path) => `https://${host}${path}`;
|
||||||
const LINK_ID = 'peertube-link';
|
const LINK_ID = 'peertube-link';
|
||||||
|
|
||||||
async function peertubeify() {
|
async function peertubeify() {
|
||||||
const options = await browser.storage.local.get();
|
const prefs = await Preferences.getPreferences()
|
||||||
const showOnPeertube = _.getOr(false, 'showOnPeertube', options);
|
|
||||||
const preferredInstance = _.getOr(constants.defaultInstance, 'searchInstance', options);
|
const isPreferredInstance = _.equals(prefs.searchInstance, location.hostname)
|
||||||
const isPreferredInstance = _.equals(preferredInstance, location.hostname)
|
if (prefs.showOnPeertube && !isPreferredInstance) {
|
||||||
if (showOnPeertube && !isPreferredInstance) {
|
|
||||||
const id = _.last(_.split('/', location.href));
|
const id = _.last(_.split('/', location.href));
|
||||||
|
|
||||||
browser.runtime.sendMessage({
|
browser.runtime.sendMessage({
|
||||||
|
|
|
@ -0,0 +1,55 @@
|
||||||
|
/* This file is part of PeerTubeify.
|
||||||
|
*
|
||||||
|
* PeerTubeify 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 3 of the License, or (at your option) any later
|
||||||
|
* version.
|
||||||
|
*
|
||||||
|
* PeerTubeify 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
|
||||||
|
* PeerTubeify. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import * as _ from 'lodash/fp';
|
||||||
|
import * as browser from 'webextension-polyfill';
|
||||||
|
import constants from './constants'
|
||||||
|
|
||||||
|
const stripProtocol = _.replace(/^https?:\/\//, '');
|
||||||
|
|
||||||
|
export default class Preferences {
|
||||||
|
private _searchInstance: string;
|
||||||
|
openInOriginalInstance: boolean;
|
||||||
|
showOnPeertube: boolean;
|
||||||
|
|
||||||
|
constructor(localStorage) {
|
||||||
|
this.searchInstance = _.defaultTo(constants.defaultInstance, localStorage.searchInstance as string);
|
||||||
|
this.openInOriginalInstance = _.defaultTo(true, localStorage.openInOriginalInstance as boolean);
|
||||||
|
this.showOnPeertube = _.defaultTo(false, localStorage.showOnPeertube as boolean);
|
||||||
|
}
|
||||||
|
|
||||||
|
static async getPreferences() {
|
||||||
|
const localStorage = await browser.storage.local.get();
|
||||||
|
return new Preferences(localStorage);
|
||||||
|
}
|
||||||
|
|
||||||
|
async save() {
|
||||||
|
await browser.storage.local.set({
|
||||||
|
searchInstance: this.searchInstance,
|
||||||
|
openInOriginalInstance: this.openInOriginalInstance,
|
||||||
|
showOnPeertube: this.showOnPeertube,
|
||||||
|
})
|
||||||
|
const prefs = await browser.storage.local.get()
|
||||||
|
}
|
||||||
|
|
||||||
|
get searchInstance() {
|
||||||
|
return this._searchInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
set searchInstance(instance) {
|
||||||
|
this._searchInstance = _.isEmpty(instance) ? constants.defaultInstance : stripProtocol(instance)
|
||||||
|
}
|
||||||
|
}
|
|
@ -19,7 +19,7 @@ import * as browser from 'webextension-polyfill';
|
||||||
|
|
||||||
import { htmlToElement } from './util';
|
import { htmlToElement } from './util';
|
||||||
import { MessageKind } from './types';
|
import { MessageKind } from './types';
|
||||||
import { constants } from './constants';
|
import Preferences from './preferences'
|
||||||
|
|
||||||
const watchURL = (host, uuid) => `https://${host}/videos/watch/${uuid}`;
|
const watchURL = (host, uuid) => `https://${host}/videos/watch/${uuid}`;
|
||||||
const thumbnailURL = (host, path) => `https://${host}${path}`;
|
const thumbnailURL = (host, path) => `https://${host}${path}`;
|
||||||
|
@ -31,11 +31,9 @@ function peertubeify(query: string) {
|
||||||
kind: MessageKind.SearchByName,
|
kind: MessageKind.SearchByName,
|
||||||
query,
|
query,
|
||||||
}).then(async video => {
|
}).then(async video => {
|
||||||
const options = await browser.storage.local.get();
|
const prefs = await Preferences.getPreferences();
|
||||||
const openInOriginalInstance = _.getOr(true, 'openInOriginalInstance', options);
|
|
||||||
const searchInstance = _.getOr(constants.defaultInstance, 'searchInstance', options);
|
|
||||||
|
|
||||||
const url = watchURL(openInOriginalInstance ? video.account.host : searchInstance, video.uuid);
|
const url = watchURL(prefs.openInOriginalInstance ? video.account.host : prefs.searchInstance, video.uuid);
|
||||||
const link = videoLink(url, video);
|
const link = videoLink(url, video);
|
||||||
|
|
||||||
removeVideoLink();
|
removeVideoLink();
|
||||||
|
|
Loading…
Reference in New Issue