add day 88

This commit is contained in:
Zoe
2022-12-19 21:33:41 -06:00
parent d51c6bd291
commit eb3a3c5aa9
50 changed files with 12343 additions and 0 deletions

View File

@@ -0,0 +1,291 @@
import { ReactifyTemplate, hydrateModelAttributes, hydrateKeyDown, hydrateSubmit } from '../hydrationManager';
import { JSDOM } from 'jsdom';
import * as terser from 'terser';
import { Reactive } from '../../ReactiveObject';
import { getAppState, initAppState } from '../../../main';
const appState = await getAppState();
async function minify(code: string) {
try {
code = (await terser.minify(code)).code;
} catch (err) {
const { message, line, col, pos } = err;
console.log({ message, line, col, pos, code });
}
return code;
}
export async function renderSSRHydrationCode(template: string, reduceJavascript = false, serverSideSPALikeRouting = true) {
const dom: JSDOM = new JSDOM(template);
let script = '';
if (template.includes('appState.contents.') || template.includes('data-token')) {
script += `
const { getAppState, initAppState } = await import('/src/main.ts');await initAppState();const appState = getAppState();
` + ReactifyTemplate.toString() + 'ReactifyTemplate(appState);';
}
if (template.includes('d-if')) {
const conditionalElms = Array.from(dom.window.document.querySelectorAll('*[d-if]'));
if (conditionalElms.length === 0) return;
await Promise.all(conditionalElms.map(async (e: Element, i) => {
const { document } = dom.window;
const condition = e.getAttribute('d-if');
e.removeAttribute('d-if');
const siblingConditionalElms: Array<Element> = [];
// recursively check for subsequent elements with the d-else of d-else-if attribute
function checkForConditionSibling(elm: Element) {
if (!elm.nextElementSibling || typeof elm.nextElementSibling == 'undefined') return;
if (elm.nextElementSibling?.getAttribute('d-else-if') !== null) {
siblingConditionalElms.push(elm.nextElementSibling);
if (!elm.nextElementSibling) return;
checkForConditionSibling(elm.nextElementSibling);
}
if (elm.nextElementSibling?.getAttribute('d-else') !== null) {
siblingConditionalElms.push(elm.nextElementSibling);
}
}
checkForConditionSibling(e);
if (siblingConditionalElms == undefined) return;
function generateLabel(textContent: string, count?: number) {
if (count === undefined) count = 1;
let label = '';
if (script.includes(textContent + '-' + count) || template.includes(textContent + '-' + count)) {
label = generateLabel(textContent, count + 1);
} else {
label = textContent + '-' + count.toString();
}
return label;
}
if (!e.textContent) return;
const uniqueSelector = generateLabel(e.textContent);
e.setAttribute('uuid', uniqueSelector);
script += `function resetHTML_${i}() {`;
script += `document.querySelector('*[uuid="${uniqueSelector}"]').innerHTML = '<!-- d-if -->';`;
const siblingUUIDMap = new Map();
siblingConditionalElms.forEach((elm, i) => {
if (!elm || !elm.textContent) return;
const siblingUniqueSelector = generateLabel(elm.textContent);
elm.setAttribute('uuid', siblingUniqueSelector);
script += `document.querySelector('*[uuid="${siblingUniqueSelector}"').innerHTML = '<!-- d-if -->';`;
siblingUUIDMap[i.toString()] = siblingUniqueSelector;
});
script += '}';
let ifStatement = `if (${condition}) {
document.querySelector('*[uuid="${uniqueSelector}"').innerHTML = "${e.innerHTML}"
} `;
siblingConditionalElms.forEach((element, i) => {
if (!element) return;
const siblingHTML = element.innerHTML;
let statementDirective = 'else';
element.removeAttribute('d-else');
if (element.getAttribute('d-else-if') !== null) {
statementDirective = 'else if';
}
if (statementDirective == 'else if') {
statementDirective = `else if (${element.getAttribute('d-else-if')})`;
element.removeAttribute('d-else-if');
}
const siblingUuid = siblingUUIDMap[i.toString()];
ifStatement = ifStatement + statementDirective + `{
document.querySelector('*[uuid="${siblingUuid}"').innerHTML = ("${siblingHTML.toString()}")
}`;
});
ifStatement = await minify(ifStatement, condition);
script += `const ifStatement_${i} = \`${ifStatement}\`;
resetHTML_${i}();
eval(ifStatement_${i});`;
if (condition && condition.includes('appState.contents.')) {
let reactiveProp: Array<string> | string | null | undefined = /appState\.contents\.[a-zA-Z]+/.exec(condition);
if (!reactiveProp || !reactiveProp[0]) return;
reactiveProp = reactiveProp[0].split('.')[2];
if (!reactiveProp) return;
script += `appState.listen("${reactiveProp}", () => {
resetHTML_${i}();
eval(ifStatement_${i});
});`;
}
/* reset HTML */
document.querySelector('*[uuid="' + uniqueSelector + '"]').innerHTML = '<!-- d-if -->';
siblingConditionalElms.forEach((elm, i) => {
if (!elm || !elm.textContent) return;
const siblingUniqueSelector = siblingUUIDMap[i.toString()];
document.querySelector(`*[uuid="${siblingUniqueSelector}"`).innerHTML = '<!-- d-if -->';
});
eval(ifStatement);
}));
}
if (template.includes('d-on:')) {
const elements = Array.from(dom.window.document.body.querySelectorAll('*'));
const eventElements = elements.filter((e) => {
return Array.from(e.attributes).some(attr => attr.name.startsWith('d-on:') && !attr.name.includes('.'));
});
eventElements.forEach((e) => {
function generateLabel(textContent: string, count?: number) {
if (count === undefined) count = 1;
let label = '';
if (script.includes(textContent + '-' + count) || template.includes(textContent + '-' + count)) {
label = generateLabel(textContent, count + 1);
} else {
label = textContent + '-' + count.toString();
}
return label;
}
const label = generateLabel('d-id');
e.setAttribute('data-dOnId', label);
const dOnAttrs = Array.from(e.attributes).filter(attr => attr.name.startsWith('d-on:'));
dOnAttrs.forEach((attr) => {
const [, eventType] = attr.name.split(':');
const inlineCode = escape(attr.value);
script += `document.querySelector('*[data-dOnId="${label}"]').addEventListener("${eventType}", () => {
eval(unescape(\`${inlineCode}\`));
});`;
});
});
}
if (template.includes('d-model')) {
if (!script.includes('const { getAppState, initAppState } = ')) script += 'const { getAppState, initAppState } = await import(\'/src/main.ts\');';
if (!script.includes('const appState =')) script += 'await initAppState();const appState = getAppState();';
script += hydrateModelAttributes.toString() + 'hydrateModelAttributes(appState);';
}
// check if there are links to hydrate
if (template.includes('<a') && (!reduceJavascript || serverSideSPALikeRouting)) {
script += `const anchorElms = document.querySelectorAll('a');
anchorElms.forEach((e) => {`;
if (template.includes('client:prefetch') && serverSideSPALikeRouting) script += `e.addEventListener('click', async (event) => {
const route = event.target.href;
if (route === window.location.pathname) return;
if (event.ctrlKey) return;
event.preventDefault();
if (!('history' in window)) return;
history.pushState('', '', route);
await fetch(route)
.then((response) => response.text())
.then((data) => {
document.write(data);
document.close();
});
return false;
}); e.removeAttribute('client:prefetch');`;
if (!reduceJavascript) script += `if (e.href === window.location.href) {
e.setAttribute('link:active', '');
e.setAttribute('tabindex', '-1');
}`;
script += '}); ';
}
if (template.includes('d-bind:') || template.includes(' :')) {
if (!script.includes('const { getAppState, initAppState } = ')) script += 'const { getAppState, initAppState } = await import(\'/src/main.ts\');';
if (!script.includes('const appState =')) script += 'await initAppState();const appState = getAppState();';
Array.from(dom.window.document.querySelectorAll('*')).forEach((e: Element, i) => {
const bindElms = Array.from(e.attributes).filter((arrElm: Attr) => {
return arrElm.name.startsWith('d-bind:') || arrElm.name.startsWith(':');
});
if (bindElms.length === 0) return;
bindElms.forEach(async (attr: Attr, attri) => {
const item = attr.name;
const key = item.split(':')[1]?.toLowerCase();
const originalValue = '(' + attr.value + ')';
let currentBinding = '';
e.removeAttribute(item);
async function setAttribute() {
if (!key) return;
let value = 'return "' + originalValue + '"';
const attribute = e.getAttribute(key) || '';
if (value.includes('(') || value.includes(')') || value.includes('?') || value.includes(':')) {
value = eval(originalValue);
}
if (value == undefined || attribute == undefined) return;
if (attribute) {
const originalAttributeValue = (attribute.toString()).split(`${currentBinding}`).join('');
currentBinding = value;
value = originalAttributeValue + ' ' + value;
}
e.setAttribute(key, value);
}
if (attri === 0) {
e.setAttribute('d-bind-index', i);
script += `const originalValue_${i} = "${originalValue}";
let currentBinding_${i} = "${currentBinding}";`;
}
script += `function setAttribute_${attri}() {
let value = \`return '${originalValue}'\`;
const attribute = \`${e.getAttribute(key)}\`;
if (value.includes('(') || value.includes(')') || value.includes('?') || value.includes(':')) {
value = eval(originalValue_${i});
}
if (attribute) {
const originalAttributeValue = (attribute.toString()).split(\`${currentBinding}\`).join('');
currentBinding_${i} = value;
value = originalAttributeValue + ' ' + value;
}
document.querySelector('*[d-bind-index="${i}"]').setAttribute("${key}", value);
}`;
if (originalValue.includes('appState')) {
originalValue.split(' ').forEach((value) => {
const propName = value.split('appState.contents.')[1];
if (!propName || !value.includes('appState')) return;
script += `appState.listen("${propName.replace(')', '')}", () => setAttribute_${attri}());`;
});
}
setAttribute();
});
});
}
if (template.includes('d-on:keydown.')) {
script += hydrateKeyDown.toString() + 'hydrateKeyDown(appState, document.getElementById("app"));';
}
if (template.includes('d-on:submit')) {
script += hydrateSubmit.toString() + 'hydrateSubmit(appState, document.getElementById("app"));';
}
if (script.includes('const { getAppState, initAppState } = await import(\'/src/main.ts\');await initAppState();const appState = getAppState();')) {
script = script.replace('const { getAppState, initAppState } = await import(\'/src/main.ts\');await initAppState();const appState = getAppState();', Reactive.toString() + 'let appState;' + initAppState.toString() + ' await initAppState();').replace('__vite_ssr_import_0__.', '').replace('__vite_ssr_dynamic_import__', 'import');
}
template = dom.window.document.body.innerHTML;
return { script, template };
}