BetterDiscordApp-v2/client/src/ui/components/BdSettingsWrapper.vue

80 lines
3.0 KiB
Vue
Raw Normal View History

/**
* BetterDiscord Settings Wrapper Component
* Copyright (c) 2015-present Jiiks/JsSucks - https://github.com/Jiiks / https://github.com/JsSucks
* All rights reserved.
* https://betterdiscord.net
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
2018-01-29 18:56:48 +01:00
<template>
<div class="bd-settings-wrapper" :class="[{active: active}, 'platform-' + this.platform]">
<div class="bd-settings-button" :class="{'bd-active': active, 'bd-animating': animating}" @click="showSettings">
2018-02-14 21:02:12 +01:00
<div v-if="updating === 0" v-tooltip.right="'Checking for updates'" class="bd-settings-button-btn bd-loading"></div>
<div v-else-if="updating === 2" v-tooltip.right="'Updates available!'" class="bd-settings-button-btn bd-updates"></div>
<div v-else class="bd-settings-button-btn" :class="[{'bd-loading': !loaded}]"></div>
</div>
<BdSettings ref="settings" :active="active" :close="hideSettings" />
</div>
2018-01-29 18:56:48 +01:00
</template>
<script>
// Imports
2018-03-08 03:42:06 +01:00
import { Events, Settings } from 'modules';
import { Modals } from 'ui';
2018-01-30 10:28:28 +01:00
import BdSettings from './BdSettings.vue';
export default {
data() {
return {
loaded: false,
2018-02-14 21:02:12 +01:00
updating: false,
2018-01-30 10:28:28 +01:00
active: false,
animating: false,
timeout: null,
2018-01-30 10:28:28 +01:00
platform: global.process.platform
}
},
components: {
BdSettings
},
methods: {
showSettings() {
if (!this.loaded) return;
this.active = true;
},
hideSettings() { this.active = false },
toggleSettings() { this.active = !this.active },
keyupListener(e) {
2018-03-08 03:42:06 +01:00
if (Modals.stack.length || !this.active || e.which !== 27) return;
if (this.$refs.settings.activeIndex !== -1) this.$refs.settings.closeContent();
else this.hideSettings();
e.stopImmediatePropagation();
}
},
watch: {
active(active) {
this.animating = true;
if (this.timeout) clearTimeout(this.timeout);
this.timeout = setTimeout(() => {
this.animating = false;
this.timeout = null;
}, 400);
}
},
created() {
Events.on('ready', e => this.loaded = true);
2018-02-14 21:02:12 +01:00
Events.on('update-check-start', e => this.updating = 0);
Events.on('update-check-end', e => this.updating = 1);
Events.on('updates-available', e => this.updating = 2);
2018-01-30 10:28:28 +01:00
window.addEventListener('keyup', this.keyupListener);
2018-03-08 03:42:06 +01:00
const menuKeybind = Settings.getSetting('core', 'default', 'menu-keybind');
menuKeybind.on('keybind-activated', () => this.active = !this.active);
},
destroyed() {
window.removeEventListener('keyup', this.keyupListener);
}
}
</script>