Improvements - untested
[vchess.git] / client / src / components / Settings.vue
CommitLineData
98db2082
BA
1<template lang="pug">
2div
3 input#modalSettings.modal(type="checkbox")
910d631b
BA
4 div(
5 role="dialog"
6 data-checkbox="modalSettings"
7 )
5b3dc10e 8 .card
98db2082 9 label.modal-close(for="modalSettings")
5b3dc10e
BA
10 -
11 var langName = {
12 "en": "English",
13 "es": "Español",
14 "fr": "Français",
15 };
16 fieldset(@change="setLanguage($event)")
17 label(for="langSelect")
18 | {{ st.tr["Language"] }}
19 select#langSelect
20 each language,langCode in langName
21 option(value=langCode)
22 =language
23 #flagContainer
24 img(
25 v-if="!!st.lang"
26 :src="flagImage"
27 )
28 div(@change="updateSettings($event)")
9a3049f3
BA
29 fieldset
30 label(for="setHints") {{ st.tr["Show possible moves?"] }}
910d631b
BA
31 input#setHints(
32 type="checkbox"
33 v-model="st.settings.hints"
34 )
9a3049f3
BA
35 fieldset
36 label(for="setHighlight")
37 | {{ st.tr["Highlight last move and checks?"] }}
910d631b
BA
38 input#setHighlight(
39 type="checkbox"
40 v-model="st.settings.highlight"
41 )
9a3049f3
BA
42 fieldset
43 label(for="setBcolor") {{ st.tr["Board colors"] }}
44 select#setBcolor(v-model="st.settings.bcolor")
45 option(value="lichess") {{ st.tr["brown"] }}
46 option(value="chesscom") {{ st.tr["green"] }}
47 option(value="chesstempo") {{ st.tr["blue"] }}
48 fieldset
db1f1f9a
BA
49 label(for="setSound")
50 | {{ st.tr["Sound on new game?"] }}
51 input#setSound(
52 type="checkbox"
53 v-model="st.settings.sound"
54 )
98db2082
BA
55</template>
56
57<script>
c66a829b 58import { store } from "@/store.js";
98db2082 59export default {
c66a829b
BA
60 name: "my-settings",
61 data: function() {
62 return {
6808d7a1 63 st: store.state
c66a829b 64 };
5701c228 65 },
5b3dc10e
BA
66 mounted: function() {
67 // NOTE: better style would be in pug directly, but how?
68 document.querySelectorAll("#langSelect > option").forEach(opt => {
69 if (opt.value == this.st.lang) opt.selected = true;
70 });
71 },
72 computed: {
73 flagImage: function() {
74 return `/images/flags/${this.st.lang}.svg`;
75 }
76 },
dac39588 77 methods: {
5b3dc10e
BA
78 setLanguage: function(e) {
79 localStorage["lang"] = e.target.value;
80 store.setLanguage(e.target.value);
81 },
98db2082 82 updateSettings: function(event) {
6808d7a1
BA
83 const propName = event.target.id
84 .substr(3)
85 .replace(/^\w/, c => c.toLowerCase());
db1f1f9a 86 const value = propName == "bcolor"
602d6bef 87 ? event.target.value
6808d7a1 88 : event.target.checked;
dfeb96ea 89 store.updateSetting(propName, value);
6808d7a1
BA
90 }
91 }
98db2082
BA
92};
93</script>
9a3049f3
BA
94
95<style lang="sass" scoped>
96[type="checkbox"].modal+div .card
97 max-width: 767px
98 max-height: 100%
5b3dc10e
BA
99#flagContainer
100 display: inline-block
101 height: 100%
102 & > img
103 vertical-align: middle
104 padding: 0 0 0 10px
105 width: 36px
106 height: 27px
9a3049f3 107</style>