-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
app.vue
164 lines (143 loc) · 4.39 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
<script setup lang="ts">
import { provideUseId } from '@headlessui/vue'
provideUseId(() => useId())
const route = useRoute()
useAppSeo()
useSiteNotifications()
function useAppSeo() {
const isDark = useDark()
const favicon = computed(() => `/img/logo/glyph-${isDark.value ? 'white' : 'black'}-colored.svg`)
useServerHead({
bodyAttrs: {
class: 'bg-black antialiased min-h-screen text-white'
},
})
useHead({
titleTemplate: (c) => c ? `${c} - Alexander Lichter` : 'Alexander Lichter - Web Engineering Consultant',
link: [
{ rel: 'icon', href: favicon, type: "image/svg+xml" },
],
})
useSchemaOrg([
definePerson({
address: {
'@type': 'PostalAddress',
addressCountry: 'NL',
addressLocality: 'Amsterdam',
addressRegion: 'Noord Holland',
postalCode: '1087 JK',
streetAddress: 'IJburglaan 1024'
},
name: 'Alexander Lichter',
image: '/img/[email protected]',
email: 'mailto:[email protected]',
nationality: "German",
jobTitle: 'Web Engineering Consultant & Managing Director',
url: 'https://www.lichter.io/',
sameAs: [
...Object.values(SOCIALS),
'https://stackoverflow.com/users/3975480/mannil',
'https://www.developmint.de/',
]
}),
defineWebSite(),
defineWebPage()
])
useServerSeoMeta({
author: 'Alexander Lichter',
ogSiteName: 'www.lichter.io',
})
const styleConfig = {
hideEventTypeDetails: false,
layout: "month_view"
}
// Cal.com
// TODO: Defer loading later on but store clicks in the meantime
useHead({
script: [
{
key: 'cal',
innerHTML: `
(function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement("script")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; typeof namespace === "string" ? (cal.ns[namespace] = api) && p(api, ar) : p(cal, ar); return; } p(cal, ar); }; })(window, "https://app.cal.com/embed/embed.js", "init");
Cal("init", {origin:"https://cal.com"});
Cal("ui", ${JSON.stringify(styleConfig)});
`,
}
]
})
}
function useSiteNotifications() {
const { addNotification } = useNotifications()
onMounted(async () => {
const result = onDicsordRef()
if (result) {
await new Promise((resolve) => setTimeout(resolve, 1000))
}
onUserSpeaksGerman()
})
function onDicsordRef(): Boolean {
const isDicsordDomain = route.query?.ref === 'dicsord.com'
if (!isDicsordDomain) {
return false
}
addNotification({
heading: 'You should double check the URL 😛',
body: [
{ type: 'text', text: 'Did you want to go to ' },
{ type: 'link', href: 'https://discord.com/' },
{ type: 'text', text: ' instead?' },
]
})
return true
}
function onUserSpeaksGerman(): Boolean {
const doesSpeakGerman = navigator.languages.some(lang => lang.startsWith('de'))
if (!doesSpeakGerman) {
return false
}
const didUserSeeGermanNotificationAlready = localStorage.getItem(LOCALSTORAGE_KEYS.notificationGerman)
if (didUserSeeGermanNotificationAlready) {
return false
}
addNotification({
heading: 'Ich spreche auch Deutsch!',
body: 'Alle Workshops und Talks können auch auf Deutsch gehalten werden.',
onRemove() {
localStorage.setItem(LOCALSTORAGE_KEYS.notificationGerman, 'true')
}
})
return true
}
}
</script>
<template>
<div>
<AppNavbar />
<div class="mt-8">
<NuxtPage />
</div>
<!-- Gradient "hack" for icons -->
<svg style="width:0;height:0;position:absolute;" aria-hidden="true" focusable="false">
<linearGradient id="gradient-svg-icon" x2="1" y2="1">
<stop offset="0" style="stop-color:#F20500" />
<stop offset="2.272730e-04" style="stop-color:#F20500" />
<stop offset="1" style="stop-color:#D90575" />
</linearGradient>
</svg>
<LazyAppFooter />
<LazyAppNotificationArea />
</div>
</template>
<style lang="pcss">
::selection {
@apply bg-red-500/25;
}
/* TODO: Move to ProseCode component? */
.line {
display: inline-table;
@apply -mx-8 px-8;
}
.line.highlight {
@apply bg-white/5;
}
</style>