-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.vue
253 lines (221 loc) · 5.88 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<template>
<Html :lang="currentLanguage">
<Head>
<Meta name="twitter:card" content="summary_large_image" />
<Meta :content="currentLanguage" name="locale" />
<Meta :content="currentLanguage" name="og:locale" property="og:locale" />
<Meta
v-for="language in otherLanguages"
:key="language"
:content="language"
name="locale:alternative"
/>
<Meta
v-for="language in otherLanguages"
:key="language"
:content="language"
name="og:locale:alternative"
property="og:locale:alternative"
/>
</Head>
<NuxtLoadingIndicator
:height="8"
color="#ecb000"
/>
<NuxtLayout>
<nuxt-page />
</NuxtLayout>
<LazyClientOnly>
<p-toast />
</LazyClientOnly>
<LazyClientOnly>
<cookie-consent />
</LazyClientOnly>
<LazyClientOnly>
<p-dialog
:class="$style.translationsLoading"
:visible="isTranslationsLoading"
modal
>
<icon-globe
:class="$style.translationsLoadingSpinner"
class="pi pi-spin"
/>
</p-dialog>
</LazyClientOnly>
</Html>
</template>
<script lang="ts">
import {
computed,
defineComponent,
onMounted,
unref,
watch,
} from "vue";
import Toast from "primevue/toast";
import Dialog from "primevue/dialog";
import {
useThrottle,
} from "@vueuse/core";
import {
useNuxtApp,
} from "#app";
import {
useRuntimeConfig,
useHead,
} from "#imports";
import {
useCookieConsentStore,
} from "~/store/cookieConsent";
import CookieConsent from "~/components/nav/CookieConsent.vue";
import {
generateMetadata,
} from "~/helpers/head";
import FacebookShareImage from "~/assets/images/share/facebook.png";
import {
useUserStore,
} from "~/store/user";
import {
useTranslationsStore,
} from "~/store/translations";
import {
useQuery,
} from "~/composables/useQuery";
import {
type IInitialDataQuery,
type IInitialDataQueryVariables,
InitialData,
} from "~/graphql/schema";
// import IconSpinner from "~icons/fluent/spinner-ios-20-filled";
// noinspection TypeScriptCheckImport
import IconGlobe from "~icons/bi/globe";
import {
useNewsStore,
} from "~/store/news";
import {
useSeasonsStore,
} from "~/store/seasons";
import {
urlJoin,
} from "~/helpers/url";
export default defineComponent({
components: {
CookieConsent,
PToast: Toast,
PDialog: Dialog,
IconGlobe,
},
async setup() {
const userStore = useUserStore();
const translationsStore = useTranslationsStore();
const newsStore = useNewsStore();
const seasonsStore = useSeasonsStore();
const nuxt = useNuxtApp();
const config = useRuntimeConfig();
translationsStore.setLanguageFromCookie();
const currentLanguage = computed(() => translationsStore.currentLanguage.replace(/_/gi, "-"));
const otherLanguages = computed(() => translationsStore.otherLanguages.map((x) => x.replace(/_/gi, "-")));
const isTranslationsLoading = useThrottle(computed(() => translationsStore.isLoading) as never, 500) as unknown as Ref<boolean>;
onMounted(() => {
useCookieConsentStore().fetchConsent();
});
watch(currentLanguage, async () => {
await newsStore.fetchNews();
});
nuxt.hook("page:finish", () => {
window.scrollTo(0, 0);
});
useHead({
title: "Job Fair",
meta: [
{ charset: "utf-8" },
...generateMetadata({
title: "Job Fair",
type: "website",
image: urlJoin(config.public.BASE_URL, FacebookShareImage),
viewport: "width=device-width, initial-scale=1, maximum-scale=5.0, minimum-scale=1, minimal-ui",
"theme-color": "#00003f",
"background-color": "#00003f",
siteName: "Job Fair",
}),
],
});
const user = computed(() => userStore.user);
watch(user, () => {
translationsStore.isEditable = false;
});
watch(
user,
() => {
const u = unref(user);
if (!u) {
return;
}
nuxt.$sentrySetUser({
id: u.uid,
email: u.email,
});
},
{
immediate: true,
},
);
if (nuxt.ssrContext) {
const initialData = await useQuery<IInitialDataQuery, IInitialDataQueryVariables>({
query: InitialData,
variables: {
language: translationsStore.currentLanguage,
},
})();
if (initialData) {
userStore.user = initialData.data?.profile ?? null;
translationsStore.setTranslations(initialData.data?.allTranslationsFor ?? []);
seasonsStore.setCurrentSeason(initialData.data?.currentSeason);
}
}
return {
isLoggedIn: computed(() => userStore.isLoggedIn),
currentLanguage,
otherLanguages,
isTranslationsLoading,
};
},
});
</script>
<style lang="scss" module>
@import "assets/styles/include";
:global {
* {
transition-timing-function: $transition-timing-function;
transition-duration: .25s;
transition-property: none;
}
::selection {
background: $fer-dark-blue;
color: $fer-yellow;
}
}
.translationsLoading {
box-shadow: none;
:global(.p-dialog-header),
:global(.p-dialog-footer) {
display: none;
}
:global(.p-dialog-content) {
$size: max(20vmin, 4rem);
overflow: hidden;
width: $size;
height: $size;
padding: 0;
background: none;
}
.translationsLoadingSpinner {
$shadow: 2px;
width: 100%;
height: 100%;
padding: calc(2 * #{$shadow});
filter: invert(1) drop-shadow(0 0 #{$shadow} black);
}
}
</style>