Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/client/src/components/settings.vue

244 lines
5.5 KiB
Vue
Raw Normal View History

2020-01-23 06:16:40 +13:00
<template>
2020-01-24 04:23:26 +13:00
<div class="settings">
<ul>
<li>
2020-04-05 14:57:22 +12:00
<span>{{ $t('setting.scroll') }}</span>
2020-01-24 04:23:26 +13:00
<label class="slider">
<input type="range" min="5" max="100" v-model="scroll" />
</label>
</li>
<li>
2020-04-05 14:57:22 +12:00
<span>{{ $t('setting.scroll_invert') }}</span>
2020-01-24 04:23:26 +13:00
<label class="switch">
<input type="checkbox" v-model="scroll_invert" />
<span />
</label>
</li>
<li>
2020-04-05 14:57:22 +12:00
<span>{{ $t('setting.autoplay') }}</span>
2020-01-24 04:23:26 +13:00
<label class="switch">
<input type="checkbox" v-model="autoplay" />
<span />
</label>
</li>
<li>
2020-04-05 14:57:22 +12:00
<span>{{ $t('setting.ignore_emotes') }}</span>
2020-01-24 04:23:26 +13:00
<label class="switch">
<input type="checkbox" v-model="ignore_emotes" />
<span />
</label>
</li>
<li>
2020-04-05 14:57:22 +12:00
<span>{{ $t('setting.chat_sound') }}</span>
2020-01-24 04:23:26 +13:00
<label class="switch">
<input type="checkbox" v-model="chat_sound" />
<span />
</label>
</li>
2020-02-12 08:36:06 +13:00
<li v-if="connected">
2020-04-05 14:57:22 +12:00
<button @click.stop.prevent="logout">{{ $t('logout') }}</button>
2020-02-12 08:36:06 +13:00
</li>
2020-01-24 04:23:26 +13:00
</ul>
</div>
2020-01-23 06:16:40 +13:00
</template>
2020-01-24 04:23:26 +13:00
<style lang="scss" scoped>
.settings {
flex: 1;
display: flex;
ul {
flex: 1;
display: flex;
flex-direction: column;
padding: 5px 20px;
li {
display: flex;
flex-direction: row;
align-content: center;
justify-content: center;
border-bottom: 1px solid $background-secondary;
padding: 5px 0;
white-space: nowrap;
&:last-child {
border-bottom: none;
}
span {
margin-right: auto;
height: 24px;
line-height: 24px;
}
2020-02-12 08:36:06 +13:00
button {
cursor: pointer;
border-radius: 5px;
padding: 4px;
background: $style-primary;
color: $text-normal;
text-align: center;
text-transform: uppercase;
font-weight: bold;
line-height: 30px;
margin: 5px 0;
border: none;
display: block;
width: 100%;
}
2020-01-24 04:23:26 +13:00
.switch {
justify-self: flex-end;
position: relative;
width: 42px;
height: 24px;
input {
opacity: 0;
width: 0;
height: 0;
}
span {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: $background-tertiary;
2020-02-12 12:51:57 +13:00
transition: 0.2s;
2020-01-24 04:23:26 +13:00
border-radius: 34px;
&:before {
position: absolute;
content: '';
height: 18px;
width: 18px;
left: 3px;
bottom: 3px;
background-color: white;
transition: 0.3s;
border-radius: 50%;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
}
}
input[type='checkbox'] {
&:checked + span {
background-color: $style-primary;
}
&:checked + span:before {
transform: translateX(18px);
}
}
.slider {
white-space: nowrap;
max-width: 120px;
input[type='range'] {
display: inline-block;
background: transparent;
appearance: none;
height: 24px;
max-width: 120px;
&::-moz-range-thumb {
height: 12px;
width: 12px;
border-radius: 12px;
2020-01-26 04:14:46 +13:00
background: #fff;
2020-01-24 04:23:26 +13:00
cursor: pointer;
}
&::-moz-range-track {
width: 100%;
height: 4px;
cursor: pointer;
background: $style-primary;
border-radius: 2px;
}
&::-webkit-slider-thumb {
appearance: none;
height: 12px;
width: 12px;
border-radius: 12px;
2020-01-26 04:14:46 +13:00
background: #fff;
2020-01-24 04:23:26 +13:00
cursor: pointer;
margin-top: -4px;
}
&::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
cursor: pointer;
background: $style-primary;
border-radius: 2px;
}
}
}
}
}
}
</style>
2020-01-23 06:16:40 +13:00
<script lang="ts">
import { Component, Ref, Watch, Vue } from 'vue-property-decorator'
@Component({ name: 'neko-settings' })
2020-01-24 04:23:26 +13:00
export default class extends Vue {
2020-02-12 08:36:06 +13:00
get connected() {
return this.$accessor.connected
}
2020-01-24 04:23:26 +13:00
get scroll() {
return this.$accessor.settings.scroll.toString()
}
set scroll(value: string) {
this.$accessor.settings.setScroll(parseInt(value))
}
get scroll_invert() {
return this.$accessor.settings.scroll_invert
}
set scroll_invert(value: boolean) {
this.$accessor.settings.setInvert(value)
}
get autoplay() {
return this.$accessor.settings.autoplay
}
set autoplay(value: boolean) {
this.$accessor.settings.setAutoplay(value)
}
get ignore_emotes() {
return this.$accessor.settings.ignore_emotes
}
set ignore_emotes(value: boolean) {
this.$accessor.settings.setIgnore(value)
}
get chat_sound() {
return this.$accessor.settings.chat_sound
}
set chat_sound(value: boolean) {
this.$accessor.settings.setSound(value)
}
2020-02-12 08:36:06 +13:00
logout() {
this.$accessor.logout()
}
2020-01-24 04:23:26 +13:00
}
2020-01-23 06:16:40 +13:00
</script>