Skip to content

Commit

Permalink
sil
Browse files Browse the repository at this point in the history
  • Loading branch information
cornedriesprong committed May 16, 2023
1 parent 1059c45 commit 307f02b
Show file tree
Hide file tree
Showing 22 changed files with 16,912 additions and 0 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Expand Up @@ -12,3 +12,4 @@
!.eslintrc.js
!README.md
*.svg
*.ttf
Binary file added public/sil/AlternateGotNo1D.ttf
Binary file not shown.
Binary file added public/sil/AlternateGotNo2D.ttf
Binary file not shown.
Binary file added public/sil/AlternateGotNo3D.ttf
Binary file not shown.
Binary file added public/sil/RobotoMono-Regular.ttf
Binary file not shown.
Binary file added public/sil/berghain.jpeg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/sil/cover.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/sil/decks.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/sil/groupies.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
198 changes: 198 additions & 0 deletions public/sil/script.js
@@ -0,0 +1,198 @@
window.CloudflareApps = window.CloudflareApps || {};
CloudflareApps.siteId = "d7c0d2e924df1fa5ab215dab094214ad";
CloudflareApps.installs = CloudflareApps.installs || {};
(function () {
"use strict";
CloudflareApps.internal = CloudflareApps.internal || {};
var errors = [];
CloudflareApps.internal.placementErrors = errors;
var errorHashes = {};
function noteError(options) {
var hash =
options.selector + "::" + options.type + "::" + (options.installId || "");
if (errorHashes[hash]) {
return;
}
errorHashes[hash] = true;
errors.push(options);
}
var initializedSelectors = {};
var currentInit = false;
CloudflareApps.internal.markSelectors = function markSelectors() {
if (!currentInit) {
check();
currentInit = true;
setTimeout(function () {
currentInit = false;
});
}
};
function check() {
var installs = window.CloudflareApps.installs;
for (var installId in installs) {
if (!installs.hasOwnProperty(installId)) {
continue;
}
var selectors = installs[installId].selectors;
if (!selectors) {
continue;
}
for (var key in selectors) {
if (!selectors.hasOwnProperty(key)) {
continue;
}
var hash = installId + "::" + key;
if (initializedSelectors[hash]) {
continue;
}
var els = document.querySelectorAll(selectors[key]);
if (els && els.length > 1) {
noteError({
type: "init:too-many",
option: key,
selector: selectors[key],
installId: installId,
});
initializedSelectors[hash] = true;
continue;
} else if (!els || !els.length) {
continue;
}
initializedSelectors[hash] = true;
els[0].setAttribute("cfapps-selector", selectors[key]);
}
}
}
CloudflareApps.querySelector = function querySelector(selector) {
if (selector === "body" || selector === "head") {
return document[selector];
}
CloudflareApps.internal.markSelectors();
var els = document.querySelectorAll('[cfapps-selector="' + selector + '"]');
if (!els || !els.length) {
noteError({ type: "select:not-found:by-attribute", selector: selector });
els = document.querySelectorAll(selector);
if (!els || !els.length) {
noteError({ type: "select:not-found:by-query", selector: selector });
return null;
} else if (els.length > 1) {
noteError({ type: "select:too-many:by-query", selector: selector });
}
return els[0];
}
if (els.length > 1) {
noteError({ type: "select:too-many:by-attribute", selector: selector });
}
return els[0];
};
})();
(function () {
"use strict";
var prevEls = {};
CloudflareApps.createElement = function createElement(options, prevEl) {
options = options || {};
CloudflareApps.internal.markSelectors();
try {
if (prevEl && prevEl.parentNode) {
var replacedEl;
if (prevEl.cfAppsElementId) {
replacedEl = prevEls[prevEl.cfAppsElementId];
}
if (replacedEl) {
prevEl.parentNode.replaceChild(replacedEl, prevEl);
delete prevEls[prevEl.cfAppsElementId];
} else {
prevEl.parentNode.removeChild(prevEl);
}
}
var element = document.createElement("cloudflare-app");
var container;
if (
options.pages &&
options.pages.URLPatterns &&
!CloudflareApps.matchPage(options.pages.URLPatterns)
) {
return element;
}
try {
container = CloudflareApps.querySelector(options.selector);
} catch (e) {}
if (!container) {
return element;
}
if (
!container.parentNode &&
(options.method === "after" ||
options.method === "before" ||
options.method === "replace")
) {
return element;
}
if (container === document.body) {
if (options.method === "after") {
options.method = "append";
} else if (options.method === "before") {
options.method = "prepend";
}
}
switch (options.method) {
case "prepend":
if (container.firstChild) {
container.insertBefore(element, container.firstChild);
break;
}
case "append":
container.appendChild(element);
break;
case "after":
if (container.nextSibling) {
container.parentNode.insertBefore(element, container.nextSibling);
} else {
container.parentNode.appendChild(element);
}
break;
case "before":
container.parentNode.insertBefore(element, container);
break;
case "replace":
try {
var id = (element.cfAppsElementId = Math.random().toString(36));
prevEls[id] = container;
} catch (e) {}
container.parentNode.replaceChild(element, container);
}
return element;
} catch (e) {
if (
typeof console !== "undefined" &&
typeof console.error !== "undefined"
) {
console.error("Error creating Cloudflare Apps element", e);
}
}
};
})();
(function () {
"use strict";
CloudflareApps.matchPage = function matchPage(patterns) {
if (!patterns || !patterns.length) {
return true;
}
var loc = document.location.host + document.location.pathname;
if (
window.CloudflareApps &&
CloudflareApps.proxy &&
CloudflareApps.proxy.originalURL
) {
var url = CloudflareApps.proxy.originalURL.parsed;
loc = url.host + url.path;
}
for (var i = 0; i < patterns.length; i++) {
var re = new RegExp(patterns[i], "i");
if (re.test(loc)) {
return true;
}
}
return false;
};
})();

0 comments on commit 307f02b

Please sign in to comment.