Commit | Line | Data |
---|---|---|
625022fd | 1 | <template lang="pug"> |
98db2082 | 2 | #app |
98db2082 | 3 | Language |
c66a829b | 4 | Settings |
98db2082 | 5 | ContactForm |
c66a829b | 6 | UpsertUser |
98db2082 | 7 | .container |
98db2082 | 8 | .row |
85e5b5c1 BA |
9 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 |
10 | // Menu (top of page): | |
5157ce0b | 11 | // Left: hall, variants, mygames |
85e5b5c1 BA |
12 | // Right: usermenu, settings, flag |
13 | nav | |
14 | label.drawer-toggle(for="drawerControl") | |
15 | input#drawerControl.drawer(type="checkbox") | |
4f887105 | 16 | #menuBar(@click="hideDrawer") |
85e5b5c1 BA |
17 | label.drawer-close(for="drawerControl") |
18 | #leftMenu | |
19 | router-link(to="/") | |
cf2343ce | 20 | | {{ st.tr["Hall"] }} |
85e5b5c1 BA |
21 | router-link(to="/variants") |
22 | | {{ st.tr["Variants"] }} | |
23 | router-link(to="/mygames") | |
24 | | {{ st.tr["My games"] }} | |
85e5b5c1 BA |
25 | #rightMenu |
26 | .clickable(onClick="doClick('modalUser')") | |
3837d4f7 | 27 | | {{ st.user.id > 0 ? (st.user.name || "@nonymous") : "Login" }} |
85e5b5c1 BA |
28 | .clickable(onClick="doClick('modalSettings')") |
29 | | {{ st.tr["Settings"] }} | |
fb54f098 | 30 | .clickable#flagContainer(onClick="doClick('modalLang')") |
03608482 | 31 | img(v-if="!!st.lang" :src="flagImage") |
fb54f098 | 32 | router-view |
ccd4a2b7 | 33 | .row |
85e5b5c1 BA |
34 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 |
35 | footer | |
92a523d1 | 36 | router-link.menuitem(to="/about") {{ st.tr["About"] }} |
ccd4a2b7 | 37 | p.clickable(onClick="doClick('modalContact')") |
92a523d1 | 38 | | {{ st.tr["Contact"] }} |
5157ce0b BA |
39 | a.menuitem(href="https://forum.vchess.club") |
40 | | {{ st.tr["Forum"] }} | |
625022fd BA |
41 | </template> |
42 | ||
98db2082 | 43 | <script> |
98db2082 BA |
44 | import ContactForm from "@/components/ContactForm.vue"; |
45 | import Language from "@/components/Language.vue"; | |
46 | import Settings from "@/components/Settings.vue"; | |
c66a829b BA |
47 | import UpsertUser from "@/components/UpsertUser.vue"; |
48 | import { store } from "./store.js"; | |
dcd68c41 | 49 | import { processModalClick } from "./utils/modalClick.js"; |
98db2082 | 50 | export default { |
98db2082 BA |
51 | components: { |
52 | ContactForm, | |
53 | Language, | |
54 | Settings, | |
c66a829b BA |
55 | UpsertUser, |
56 | }, | |
57 | data: function() { | |
58 | return { | |
59 | st: store.state, | |
60 | }; | |
98db2082 | 61 | }, |
03608482 BA |
62 | computed: { |
63 | flagImage: function() { | |
64 | return `/images/flags/${this.st.lang}.svg`; | |
65 | }, | |
66 | }, | |
dcd68c41 BA |
67 | mounted: function() { |
68 | let dialogs = document.querySelectorAll("div[role='dialog']"); | |
69 | dialogs.forEach(d => { | |
70 | d.addEventListener("click", processModalClick); | |
71 | }); | |
72 | }, | |
4f887105 BA |
73 | methods: { |
74 | hideDrawer: function(e) { | |
75 | if (e.target.innerText == "Forum") | |
76 | return; //external link | |
77 | e.preventDefault(); //TODO: why is this needed? | |
78 | document.getElementsByClassName("drawer")[0].checked = false; | |
79 | }, | |
80 | }, | |
98db2082 BA |
81 | }; |
82 | </script> | |
83 | ||
625022fd | 84 | <style lang="sass"> |
bc093771 BA |
85 | html, * |
86 | font-family: "Open Sans", Arial, sans-serif | |
87 | --back-color: #f2f2f2 | |
88 | --a-link-color: black | |
89 | --a-visited-color: black | |
dcd68c41 BA |
90 | |
91 | body | |
92 | padding: 0 | |
93 | min-width: 320px | |
94 | ||
625022fd | 95 | #app |
625022fd BA |
96 | -webkit-font-smoothing: antialiased |
97 | -moz-osx-font-smoothing: grayscale | |
625022fd | 98 | |
85e5b5c1 | 99 | .container |
dcd68c41 | 100 | overflow: hidden |
85e5b5c1 BA |
101 | @media screen and (max-width: 767px) |
102 | padding: 0 | |
103 | ||
fb54f098 BA |
104 | .row > div |
105 | padding: 0 | |
106 | ||
107 | .nopadding | |
108 | padding: 0 | |
109 | ||
85e5b5c1 BA |
110 | header |
111 | width: 100% | |
112 | display: flex | |
113 | align-items: center | |
114 | justify-content: center | |
115 | margin: 0 auto | |
116 | & > img | |
117 | width: 30px | |
118 | height: 30px | |
119 | ||
120 | .clickable | |
121 | cursor: pointer | |
122 | ||
dcd68c41 BA |
123 | .text-center |
124 | text-align: center | |
125 | ||
126 | .smallpad | |
127 | padding: 5px | |
128 | ||
129 | .emphasis | |
130 | font-style: italic | |
131 | ||
132 | .clearer | |
133 | clear: both | |
134 | ||
135 | .smallfont | |
136 | font-size: 0.8em | |
137 | ||
138 | .bigfont | |
139 | font-size: 1.2em | |
140 | ||
141 | .bold | |
142 | font-weight: bold | |
143 | ||
85e5b5c1 BA |
144 | nav |
145 | width: 100% | |
fb54f098 | 146 | margin: 0 |
85e5b5c1 BA |
147 | padding: 0 |
148 | & > #menuBar | |
149 | width: 100% | |
150 | padding: 0 | |
8c5f5390 BA |
151 | @media screen and (min-width: 768px) |
152 | & > #leftMenu | |
153 | padding: 0 | |
154 | width: 50% | |
155 | display: inline-flex | |
156 | align-items: center | |
157 | justify-content: flex-start | |
158 | & > a | |
159 | display: inline-block | |
160 | color: #2c3e50 | |
161 | &.router-link-exact-active | |
162 | color: #42b983 | |
163 | & > #rightMenu | |
164 | padding: 0 | |
165 | width: 50% | |
166 | display: inline-flex | |
167 | align-items: center | |
168 | justify-content: flex-end | |
169 | & > div | |
170 | display: inline-block | |
171 | &#flagContainer | |
172 | display: inline-flex | |
173 | & > img | |
174 | padding: 0 | |
175 | width: 36px | |
176 | height: 27px | |
177 | @media screen and (max-width: 767px) | |
178 | & > #leftMenu | |
179 | padding-bottom: 5px | |
180 | & > a | |
181 | color: #2c3e50 | |
182 | &.router-link-exact-active | |
183 | color: #42b983 | |
184 | & > #rightMenu | |
185 | padding-top: 5px | |
186 | border-top: 1px solid darkgrey | |
187 | & > div | |
188 | &#flagContainer | |
189 | display: inline-flex | |
190 | & > img | |
191 | padding: 0 | |
192 | width: 36px | |
193 | height: 27px | |
85e5b5c1 | 194 | |
430a2038 BA |
195 | @media screen and (max-width: 767px) |
196 | nav | |
197 | border: none | |
198 | ||
85e5b5c1 BA |
199 | [type="checkbox"].drawer+* |
200 | right: -767px | |
201 | ||
dcd68c41 BA |
202 | @media screen and (max-width: 767px) |
203 | .button-group | |
204 | flex-direction: row | |
205 | button:not(:first-child) | |
206 | border-left: 1px solid var(--button-group-border-color) | |
207 | border-top: 0 | |
208 | ||
85e5b5c1 | 209 | footer |
5701c228 | 210 | border: 1px solid #ddd |
85e5b5c1 BA |
211 | //background-color: #000033 |
212 | font-size: 1rem | |
213 | width: 100% | |
a6b9b86c BA |
214 | padding-left: 0 |
215 | padding-right: 0 | |
85e5b5c1 BA |
216 | display: inline-flex |
217 | align-items: center | |
218 | justify-content: center | |
050ae3b5 BA |
219 | & > .router-link-exact-active |
220 | color: #42b983 !important | |
221 | text-decoration: none | |
92a523d1 | 222 | & > .menuitem |
85e5b5c1 | 223 | display: inline-block |
5157ce0b | 224 | margin: 0 10px |
85e5b5c1 BA |
225 | &:link |
226 | color: #2c3e50 | |
5701c228 BA |
227 | &:visited, &:hover |
228 | color: #2c3e50 | |
85e5b5c1 BA |
229 | text-decoration: none |
230 | & > p | |
231 | display: inline-block | |
5157ce0b | 232 | margin: 0 10px |
430a2038 BA |
233 | |
234 | @media screen and (max-width: 767px) | |
235 | footer | |
236 | border: none | |
dcd68c41 BA |
237 | |
238 | //#settings, #contactForm | |
239 | // max-width: 767px | |
240 | // @media screen and (max-width: 767px) | |
241 | // max-width: 100vw | |
242 | //[type="checkbox"].modal+div .card | |
243 | // max-width: 767px | |
244 | // max-height: 100vh | |
245 | //[type="checkbox"].modal+div .card.small-modal | |
246 | // max-width: 320px | |
247 | //[type="checkbox"].modal+div .card.big-modal | |
248 | // max-width: 90vw | |
625022fd | 249 | </style> |