505 lines
16 KiB
Vue
505 lines
16 KiB
Vue
<template>
|
|
<div class="page">
|
|
<pw-section class="green" :label="$t('account')" ref="account">
|
|
<ul>
|
|
<li>
|
|
<div v-if="fb.currentUser">
|
|
<button class="icon">
|
|
<img
|
|
v-if="fb.currentUser.photoURL"
|
|
:src="fb.currentUser.photoURL"
|
|
class="material-icons"
|
|
/>
|
|
<i v-else class="material-icons">account_circle</i>
|
|
<span>
|
|
{{ fb.currentUser.displayName || 'Name not found' }}
|
|
</span>
|
|
</button>
|
|
<br />
|
|
<button class="icon">
|
|
<i class="material-icons">email</i>
|
|
<span>
|
|
{{ fb.currentUser.email || 'Email not found' }}
|
|
</span>
|
|
</button>
|
|
<br />
|
|
<button class="icon" @click="logout">
|
|
<i class="material-icons">exit_to_app</i>
|
|
<span>{{ $t('logout') }}</span>
|
|
</button>
|
|
<br />
|
|
<p v-for="setting in fb.currentSettings" :key="setting.id">
|
|
<pw-toggle
|
|
:key="setting.name"
|
|
:on="setting.value"
|
|
@change="toggleSettings(setting.name, setting.value)"
|
|
>
|
|
{{ $t(setting.name) + ' ' + $t('sync') }}
|
|
{{ setting.value ? $t('enabled') : $t('disabled') }}
|
|
</pw-toggle>
|
|
</p>
|
|
<p v-if="fb.currentSettings.length !== 3">
|
|
<button class="" @click="initSettings">
|
|
<i class="material-icons">sync</i>
|
|
<span>{{ $t('turn_on') + ' ' + $t('sync') }}</span>
|
|
</button>
|
|
</p>
|
|
</div>
|
|
<div v-else>
|
|
<label>{{ $t('login_with') }}</label>
|
|
<p>
|
|
<button class="icon" @click="signInWithGoogle">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
class="material-icons"
|
|
>
|
|
<path
|
|
d="M12.24 10.285V14.4h6.806c-.275 1.765-2.056 5.174-6.806 5.174-4.095 0-7.439-3.389-7.439-7.574s3.345-7.574 7.439-7.574c2.33 0 3.891.989 4.785 1.849l3.254-3.138C18.189 1.186 15.479 0 12.24 0c-6.635 0-12 5.365-12 12s5.365 12 12 12c6.926 0 11.52-4.869 11.52-11.726 0-.788-.085-1.39-.189-1.989H12.24z"
|
|
/>
|
|
</svg>
|
|
<span>Google</span>
|
|
</button>
|
|
<br />
|
|
<button class="icon" @click="signInWithGithub">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
class="material-icons"
|
|
>
|
|
<path
|
|
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"
|
|
/>
|
|
</svg>
|
|
<span>GitHub</span>
|
|
</button>
|
|
</p>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</pw-section>
|
|
|
|
<pw-section class="cyan" :label="$t('theme')" ref="theme">
|
|
<ul>
|
|
<li>
|
|
<label>{{ $t('background') }}</label>
|
|
<div class="backgrounds">
|
|
<span :key="theme.class" @click="applyTheme(theme)" v-for="theme in themes">
|
|
<swatch
|
|
:active="settings.THEME_CLASS === theme.class"
|
|
:class="{ vibrant: theme.vibrant }"
|
|
:color="theme.color"
|
|
:name="theme.name"
|
|
class="bg"
|
|
></swatch>
|
|
</span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul>
|
|
<li>
|
|
<label>{{ $t('color') }}</label>
|
|
<div class="colors">
|
|
<span
|
|
:key="entry.color"
|
|
@click.prevent="setActiveColor(entry.color, entry.vibrant)"
|
|
v-for="entry in colors"
|
|
>
|
|
<swatch
|
|
:active="settings.THEME_COLOR === entry.color.toUpperCase()"
|
|
:class="{ vibrant: entry.vibrant }"
|
|
:color="entry.color"
|
|
:name="entry.name"
|
|
class="fg"
|
|
/>
|
|
</span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul>
|
|
<li>
|
|
<span>
|
|
<pw-toggle
|
|
:on="settings.FRAME_COLORS_ENABLED"
|
|
@change="toggleSetting('FRAME_COLORS_ENABLED')"
|
|
>
|
|
{{ $t('multi_color') }}
|
|
{{ settings.FRAME_COLORS_ENABLED ? $t('enabled') : $t('disabled') }}
|
|
</pw-toggle>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
<ul>
|
|
<li>
|
|
<span>
|
|
<pw-toggle
|
|
:on="settings.SCROLL_INTO_ENABLED"
|
|
@change="toggleSetting('SCROLL_INTO_ENABLED')"
|
|
>
|
|
{{ $t('scrollInto_use_toggle') }}
|
|
{{ settings.SCROLL_INTO_ENABLED ? $t('enabled') : $t('disabled') }}
|
|
</pw-toggle>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</pw-section>
|
|
|
|
<pw-section class="purple" :label="$t('extensions')" ref="extensions">
|
|
<ul>
|
|
<li>
|
|
<div class="flex-wrap">
|
|
<pw-toggle
|
|
:on="settings.EXTENSIONS_ENABLED"
|
|
@change="toggleSetting('EXTENSIONS_ENABLED')"
|
|
>
|
|
{{ $t('extensions_use_toggle') }}
|
|
</pw-toggle>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</pw-section>
|
|
|
|
<pw-section class="blue" :label="$t('proxy')" ref="proxy">
|
|
<ul>
|
|
<li>
|
|
<div class="flex-wrap">
|
|
<span>
|
|
<pw-toggle :on="settings.PROXY_ENABLED" @change="toggleSetting('PROXY_ENABLED')">
|
|
{{ $t('proxy') }}
|
|
{{ settings.PROXY_ENABLED ? $t('enabled') : $t('disabled') }}
|
|
</pw-toggle>
|
|
</span>
|
|
<a
|
|
href="https://github.com/liyasthomas/postwoman/wiki/Proxy"
|
|
target="_blank"
|
|
rel="noopener"
|
|
>
|
|
<button class="icon" v-tooltip="$t('wiki')">
|
|
<i class="material-icons">help</i>
|
|
</button>
|
|
</a>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul>
|
|
<li>
|
|
<div class="flex-wrap">
|
|
<label for="url">{{ $t('url') }}</label>
|
|
<button class="icon" @click="resetProxy" v-tooltip.bottom="$t('reset_default')">
|
|
<i class="material-icons">clear_all</i>
|
|
</button>
|
|
</div>
|
|
<input
|
|
id="url"
|
|
type="url"
|
|
v-model="settings.PROXY_URL"
|
|
:disabled="!settings.PROXY_ENABLED"
|
|
/>
|
|
</li>
|
|
</ul>
|
|
<ul class="info">
|
|
<li>
|
|
<p>
|
|
{{ $t('postwoman_official_proxy_hosting') }}
|
|
<br />
|
|
{{ $t('read_the') }}
|
|
<a class="link" href="https://apollotv.xyz/legal" target="_blank" rel="noopener">
|
|
{{ $t('apollotv_privacy_policy') }} </a
|
|
>.
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
<!--
|
|
PROXY SETTINGS URL AND KEY
|
|
--------------
|
|
This feature is currently not finished.
|
|
<ul>
|
|
<li>
|
|
<label for="url">URL</label>
|
|
<input id="url" type="url" v-model="settings.PROXY_URL" :disabled="!settings.PROXY_ENABLED">
|
|
</li>
|
|
<li>
|
|
<label for="key">Key</label>
|
|
<input id="key" type="password" v-model="settings.PROXY_KEY" :disabled="!settings.PROXY_ENABLED" @change="applySetting('PROXY_KEY', $event)">
|
|
</li>
|
|
</ul>
|
|
-->
|
|
</pw-section>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|
|
|
|
<script>
|
|
import firebase from 'firebase/app'
|
|
import { fb } from '../functions/fb'
|
|
|
|
export default {
|
|
components: {
|
|
'pw-section': () => import('../components/section'),
|
|
'pw-toggle': () => import('../components/toggle'),
|
|
swatch: () => import('../components/settings/swatch'),
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
// NOTE:: You need to first set the CSS for your theme in /assets/css/themes.scss
|
|
// You should copy the existing light theme as a template and then just
|
|
// set the relevant values.
|
|
themes: [
|
|
{
|
|
color: '#202124',
|
|
name: this.$t('kinda_dark'),
|
|
class: '',
|
|
aceEditor: 'twilight',
|
|
},
|
|
{
|
|
color: '#ffffff',
|
|
name: this.$t('clearly_white'),
|
|
vibrant: true,
|
|
class: 'light',
|
|
aceEditor: 'iplastic',
|
|
},
|
|
{
|
|
color: '#000000',
|
|
name: this.$t('just_black'),
|
|
class: 'black',
|
|
aceEditor: 'vibrant_ink',
|
|
},
|
|
{
|
|
color: 'var(--ac-color)',
|
|
name: this.$t('auto_system'),
|
|
vibrant: window.matchMedia('(prefers-color-scheme: light)').matches,
|
|
class: 'auto',
|
|
aceEditor: window.matchMedia('(prefers-color-scheme: light)').matches
|
|
? 'iplastic'
|
|
: 'twilight',
|
|
},
|
|
],
|
|
// You can define a new color here! It will simply store the color value.
|
|
colors: [
|
|
// If the color is vibrant, black is used as the active foreground color.
|
|
{
|
|
color: '#50fa7b',
|
|
name: this.$t('green'),
|
|
vibrant: true,
|
|
},
|
|
{
|
|
color: '#f1fa8c',
|
|
name: this.$t('yellow'),
|
|
vibrant: true,
|
|
},
|
|
{
|
|
color: '#ff79c6',
|
|
name: this.$t('pink'),
|
|
vibrant: true,
|
|
},
|
|
{
|
|
color: '#ff5555',
|
|
name: this.$t('red'),
|
|
vibrant: false,
|
|
},
|
|
{
|
|
color: '#bd93f9',
|
|
name: this.$t('purple'),
|
|
vibrant: true,
|
|
},
|
|
{
|
|
color: '#ffb86c',
|
|
name: this.$t('orange'),
|
|
vibrant: true,
|
|
},
|
|
{
|
|
color: '#8be9fd',
|
|
name: this.$t('cyan'),
|
|
vibrant: true,
|
|
},
|
|
{
|
|
color: '#57b5f9',
|
|
name: this.$t('blue'),
|
|
vibrant: false,
|
|
},
|
|
],
|
|
|
|
settings: {
|
|
SCROLL_INTO_ENABLED:
|
|
typeof this.$store.state.postwoman.settings.SCROLL_INTO_ENABLED !== 'undefined'
|
|
? this.$store.state.postwoman.settings.SCROLL_INTO_ENABLED
|
|
: true,
|
|
|
|
THEME_COLOR: '',
|
|
THEME_TAB_COLOR: '',
|
|
THEME_COLOR_VIBRANT: true,
|
|
|
|
FRAME_COLORS_ENABLED: this.$store.state.postwoman.settings.FRAME_COLORS_ENABLED || false,
|
|
PROXY_ENABLED: this.$store.state.postwoman.settings.PROXY_ENABLED || false,
|
|
PROXY_URL:
|
|
this.$store.state.postwoman.settings.PROXY_URL || 'https://postwoman.apollotv.xyz/',
|
|
PROXY_KEY: this.$store.state.postwoman.settings.PROXY_KEY || '',
|
|
|
|
EXTENSIONS_ENABLED:
|
|
typeof this.$store.state.postwoman.settings.EXTENSIONS_ENABLED !== 'undefined'
|
|
? this.$store.state.postwoman.settings.EXTENSIONS_ENABLED
|
|
: true,
|
|
},
|
|
|
|
doneButton: '<i class="material-icons">done</i>',
|
|
fb,
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
proxySettings: {
|
|
deep: true,
|
|
handler(value) {
|
|
this.applySetting('PROXY_URL', value.url)
|
|
this.applySetting('PROXY_KEY', value.key)
|
|
},
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
applyTheme({ class: name, color, aceEditor }) {
|
|
this.applySetting('THEME_CLASS', name)
|
|
this.applySetting('THEME_ACE_EDITOR', aceEditor)
|
|
document.querySelector('meta[name=theme-color]').setAttribute('content', color)
|
|
this.applySetting('THEME_TAB_COLOR', color)
|
|
document.documentElement.className = name
|
|
},
|
|
setActiveColor(color, vibrant) {
|
|
// By default, the color is vibrant.
|
|
if (vibrant === null) vibrant = true
|
|
document.documentElement.style.setProperty('--ac-color', color)
|
|
document.documentElement.style.setProperty(
|
|
'--act-color',
|
|
vibrant ? 'rgba(32, 33, 36, 1)' : 'rgba(255, 255, 255, 1)'
|
|
)
|
|
this.applySetting('THEME_COLOR', color.toUpperCase())
|
|
this.applySetting('THEME_COLOR_VIBRANT', vibrant)
|
|
},
|
|
getActiveColor() {
|
|
// This strips extra spaces and # signs from the strings.
|
|
const strip = str => str.replace(/#/g, '').replace(/ /g, '')
|
|
return `#${strip(
|
|
window.getComputedStyle(document.documentElement).getPropertyValue('--ac-color')
|
|
).toUpperCase()}`
|
|
},
|
|
applySetting(key, value) {
|
|
this.settings[key] = value
|
|
this.$store.commit('postwoman/applySetting', [key, value])
|
|
},
|
|
toggleSetting(key) {
|
|
this.settings[key] = !this.settings[key]
|
|
this.$store.commit('postwoman/applySetting', [key, this.settings[key]])
|
|
},
|
|
logout() {
|
|
fb.currentUser = null
|
|
firebase
|
|
.auth()
|
|
.signOut()
|
|
.catch(err => {
|
|
this.$toast.show(err.message || err, {
|
|
icon: 'error',
|
|
})
|
|
})
|
|
this.$toast.info(this.$t('logged_out'), {
|
|
icon: 'vpn_key',
|
|
})
|
|
},
|
|
signInWithGoogle() {
|
|
const provider = new firebase.auth.GoogleAuthProvider()
|
|
firebase
|
|
.auth()
|
|
.signInWithPopup(provider)
|
|
.then(({ additionalUserInfo }) => {
|
|
if (additionalUserInfo.isNewUser) {
|
|
this.$toast.info(`${this.$t('turn_on')} ${this.$t('sync')}`, {
|
|
icon: 'sync',
|
|
duration: null,
|
|
closeOnSwipe: false,
|
|
action: {
|
|
text: this.$t('yes'),
|
|
onClick: (e, toastObject) => {
|
|
fb.writeSettings('syncHistory', true)
|
|
fb.writeSettings('syncCollections', true)
|
|
fb.writeSettings('syncEnvironments', true)
|
|
this.$router.push({ path: '/settings' })
|
|
toastObject.remove()
|
|
},
|
|
},
|
|
})
|
|
}
|
|
})
|
|
.catch(err => {
|
|
this.$toast.show(err.message || err, {
|
|
icon: 'error',
|
|
})
|
|
})
|
|
},
|
|
signInWithGithub() {
|
|
const provider = new firebase.auth.GithubAuthProvider()
|
|
firebase
|
|
.auth()
|
|
.signInWithPopup(provider)
|
|
.then(({ additionalUserInfo }) => {
|
|
if (additionalUserInfo.isNewUser) {
|
|
this.$toast.info(`${this.$t('turn_on')} ${this.$t('sync')}`, {
|
|
icon: 'sync',
|
|
duration: null,
|
|
closeOnSwipe: false,
|
|
action: {
|
|
text: this.$t('yes'),
|
|
onClick: (e, toastObject) => {
|
|
fb.writeSettings('syncHistory', true)
|
|
fb.writeSettings('syncCollections', true)
|
|
fb.writeSettings('syncEnvironments', true)
|
|
this.$router.push({ path: '/settings' })
|
|
toastObject.remove()
|
|
},
|
|
},
|
|
})
|
|
}
|
|
})
|
|
.catch(err => {
|
|
this.$toast.show(err.message || err, {
|
|
icon: 'error',
|
|
})
|
|
})
|
|
},
|
|
toggleSettings(s, v) {
|
|
fb.writeSettings(s, !v)
|
|
},
|
|
initSettings() {
|
|
fb.writeSettings('syncHistory', true)
|
|
fb.writeSettings('syncCollections', true)
|
|
fb.writeSettings('syncEnvironments', true)
|
|
},
|
|
resetProxy({ target }) {
|
|
this.settings.PROXY_URL = `https://postwoman.apollotv.xyz/`
|
|
target.innerHTML = this.doneButton
|
|
this.$toast.info(this.$t('cleared'), {
|
|
icon: 'clear_all',
|
|
})
|
|
setTimeout(() => (target.innerHTML = '<i class="material-icons">clear_all</i>'), 1000)
|
|
},
|
|
},
|
|
|
|
beforeMount() {
|
|
this.settings.THEME_COLOR = this.getActiveColor()
|
|
},
|
|
|
|
computed: {
|
|
proxySettings() {
|
|
return {
|
|
url: this.settings.PROXY_URL,
|
|
key: this.settings.PROXY_KEY,
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|