-
Notifications
You must be signed in to change notification settings - Fork 0
/
huginn.js
230 lines (195 loc) · 7.75 KB
/
huginn.js
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
let stanzas = [];
let currentLanguage = 'norse';
async function loadStanzas() {
try {
const response = await fetch('havamal_stanzas.json');
stanzas = await response.json();
displayDailyStanza();
} catch (error) {
console.error('Error loading stanzas:', error);
}
}
function seededRandom(seed) {
var x = Math.sin(seed) * 10000;
return x - Math.floor(x);
}
function getDailyStanza() {
if (stanzas.length === 0) {
console.error('Stanzas not loaded yet, function getDailyStanza');
return null;
}
const date = new Date();
const dayOfYear = Math.floor((date - new Date(date.getFullYear(), 0, 0)) / 1000 / 60 / 60 / 24);
const randomSeed = seededRandom(dayOfYear);
const stanzaIndex = Math.floor(randomSeed * stanzas.length);
return stanzas[stanzaIndex];
}
function displayDailyStanza() {
const stanzaElement = document.getElementById("stanza");
const tiktokElement = document.getElementById("tiktok-embed");
const dailyStanza = getDailyStanza();
if (dailyStanza) {
stanzaElement.textContent = dailyStanza.norse;
updateRunicTranslation();
} else {
console.error('No stanza available');
}
if (dailyStanza.tiktokId) {
setMessage();
setTimeout(() => {
tiktokElement.innerHTML = `
<blockquote class="tiktok-embed" cite="https://www.tiktok.com/@huginn001/video/${dailyStanza.tiktokId}" data-video-id="${dailyStanza.tiktokId}">
<section><p>Huginn001's Humorous Havamal</p></section>
</blockquote>
`;
const script = document.createElement('script');
script.src = "https://www.tiktok.com/embed.js";
script.async = true;
document.body.appendChild(script);
}, 1000);
} else {
tiktokElement.innerHTML = '<p>No additional context available for this stanza.</p>';
console.log("No TikTok ID available for this stanza");
}
}
function toggleTranslation() {
const stanzaElement = document.getElementById("stanza");
const dailyStanza = getDailyStanza();
if (currentLanguage === 'norse') {
stanzaElement.textContent = dailyStanza.english;
currentLanguage = 'english';
} else {
stanzaElement.textContent = dailyStanza.norse;
currentLanguage = 'norse';
}
updateRunicTranslation();
}
function updateRunicTranslation() {
const stanzaElement = document.getElementById("stanza");
const runicTranslationElement = document.getElementById("runic-translation");
const fullText = stanzaElement.textContent;
const runicText = convertToRunes(fullText);
runicTranslationElement.textContent = runicText;
}
function addRunicFunctionality() {
const stanzaElement = document.getElementById("stanza");
const text = stanzaElement.textContent;
const fullRunicText = convertToRunes(text);
const originalWords = text.split(/\s+/);
const runicWords = fullRunicText.split('·');
stanzaElement.innerHTML = '';
originalWords.forEach((word, index) => {
const wordSpan = document.createElement('span');
wordSpan.className = 'word';
const originalSpan = document.createElement('span');
originalSpan.className = 'original-text';
originalSpan.textContent = word;
const runicSpan = document.createElement('span');
runicSpan.className = 'runic-text';
runicSpan.textContent = runicWords[index] || '';
wordSpan.appendChild(originalSpan);
wordSpan.appendChild(runicSpan);
addTouchEventListeners(wordSpan);
stanzaElement.appendChild(wordSpan);
if (index < originalWords.length - 1) {
stanzaElement.appendChild(document.createTextNode(' '));
}
});
updateRunicTranslation();
}
function convertToRunes(text) {
const sentences = text.split(/[.!?]+/).filter(s => s.trim());
return sentences.map((sentence, index) => {
const words = sentence.trim().split(/\s+/);
const runicWords = words.map(word => {
let lastRune = '';
return word.split('')
.map(char => {
const currentRune = runeMap[char.toLowerCase()] || char;
if (currentRune === lastRune) {
return '';
} else {
lastRune = currentRune;
return currentRune;
}
})
.join('')
.replace(/[^ᚠᚢᚦᚨᚱᚲᚷᚹᚺᚾᛁᛃᛈᛇᛉᛊᛏᛒᛖᛗᛚᛜᛞᛟ]/g, '');
}).filter(word => word.length > 0);
const processedSentence = runicWords.join('·');
return (index === 0 ? ':' : '') + processedSentence + ':';
}).join('');
}
function setMessage() {
const messageElement = document.getElementById("message");
messageElement.innerHTML = `<p>Here's Huginn's Humorous Havamal video: (Main translation from Hollander, Stanza number may be slightly different)</p>`;
}
function adjustTikTokHeight() {
const iframe = document.querySelector('.tiktok-embed iframe');
if (iframe) {
iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
}
}
function cleanTikTokEmbed() {
const embed = document.querySelector('.tiktok-embed');
if (embed) {
Array.from(embed.children).forEach(child => {
if (child.tagName !== 'IFRAME') {
child.remove();
}
});
adjustTikTokHeight();
}
}
function toggleDarkMode() {
const body = document.body;
const darkModeToggle = document.getElementById('darkModeToggle');
if (darkModeToggle.checked) {
body.classList.add('dark-mode');
} else {
body.classList.remove('dark-mode');
}
}
const darkModeToggle = document.getElementById('darkModeToggle');
darkModeToggle.addEventListener('change', toggleDarkMode);
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
darkModeToggle.checked = true;
document.body.classList.add('dark-mode');
}
function addTouchEventListeners(element) {
element.addEventListener('touchstart', function(e) {
e.preventDefault();
this.classList.add('touch-active');
});
element.addEventListener('touchend', function(e) {
e.preventDefault();
this.classList.remove('touch-active');
});
}
document.addEventListener('DOMContentLoaded', () => {
loadStanzas();
const container = document.querySelector('.container');
container.addEventListener('touchstart', function(e) {
this.classList.add('touch-active');
});
container.addEventListener('touchend', function(e) {
this.classList.remove('touch-active');
});
document.addEventListener('click', function(e) {
const runicElements = document.querySelectorAll('.runic-text');
runicElements.forEach(el => el.classList.remove('touch-active'));
if (e.target.classList.contains('runic-text')) {
e.target.classList.add('touch-active');
}
});
});
const runeMap = {
'a': 'ᚨ', 'á': 'ᚨ', 'b': 'ᛒ', 'c': 'ᚲ', 'd': 'ᛞ', 'e': 'ᛖ', 'é': 'ᛖ', 'f': 'ᚠ',
'g': 'ᚷ', 'h': 'ᚺ', 'i': 'ᛁ', 'í': 'ᛁ', 'j': 'ᛃ', 'k': 'ᚲ', 'l': 'ᛚ',
'm': 'ᛗ', 'n': 'ᚾ', 'o': 'ᛟ', 'ó': 'ᛟ', 'p': 'ᛈ', 'q': 'ᚲ', 'r': 'ᚱ',
's': 'ᛊ', 't': 'ᛏ', 'u': 'ᚢ', 'ú': 'ᚢ', 'v': 'ᚹ', 'w': 'ᚹ', 'x': 'ᚲᛊ',
'y': 'ᛃ', 'ý': 'ᛃ', 'z': 'ᛉ', 'æ': 'ᚨᛖ', 'ð': 'ᚦ', 'þ': 'ᚦ',
'ø': 'ᛟ', 'å': 'ᛟ', 'ö': 'ᛟ'
};
const message = 'I fear for Huginn, that he come not back, yet more anxious am I for Muninn.';
console.log(message);