add day 42
This commit is contained in:
1
day42/.env
Normal file
1
day42/.env
Normal file
@@ -0,0 +1 @@
|
||||
VITE_VERBOSE = true
|
||||
42
day42/.eslintrc.json
Normal file
42
day42/.eslintrc.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es2021": true,
|
||||
"node": true
|
||||
},
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:@typescript-eslint/recommended"
|
||||
],
|
||||
"overrides": [],
|
||||
"parser": "@typescript-eslint/parser",
|
||||
"parserOptions": {
|
||||
"ecmaVersion": "latest",
|
||||
"sourceType": "module"
|
||||
},
|
||||
"plugins": [
|
||||
"@typescript-eslint"
|
||||
],
|
||||
"rules": {
|
||||
"indent": [
|
||||
"error",
|
||||
"tab"
|
||||
],
|
||||
"linebreak-style": [
|
||||
"error",
|
||||
"unix"
|
||||
],
|
||||
"quotes": [
|
||||
"error",
|
||||
"single"
|
||||
],
|
||||
"semi": [
|
||||
"error",
|
||||
"always"
|
||||
],
|
||||
"nonblock-statement-body-position": [
|
||||
"error",
|
||||
"beside"
|
||||
]
|
||||
}
|
||||
}
|
||||
3
day42/.vscode/settings.json
vendored
Normal file
3
day42/.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"typescript.tsdk": "node_modules/typescript/lib"
|
||||
}
|
||||
26
day42/index.html
Normal file
26
day42/index.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible"
|
||||
content="IE=edge">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description"
|
||||
content="A devto app.">
|
||||
<title>Document</title>
|
||||
<script async src="/src/entry-client.ts" type="module"></script>
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app">
|
||||
<noscript>
|
||||
<div class="fixed bg-zinc-900 border-t border-neutral-700 shadow-md w-screen bottom-0 p-6 text-lg">Javascript is
|
||||
reccommended to run this app</div>
|
||||
</noscript>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
253
day42/index.ts
Normal file
253
day42/index.ts
Normal file
@@ -0,0 +1,253 @@
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import { fileURLToPath } from 'url';
|
||||
import express, { NextFunction, Request, Response } from 'express';
|
||||
import compression from 'compression';
|
||||
import { createServer as createViteServer } from 'vite';
|
||||
import * as Vite from 'vite';
|
||||
import cookies from 'cookie-parser';
|
||||
import Cleancss from 'clean-css';
|
||||
import * as terser from 'terser';
|
||||
import Ip from 'ip';
|
||||
|
||||
const tags = ['a', 'abbr', 'acronym', 'address', 'applet', 'area', 'article', 'aside', 'audio', 'b', 'base', 'basefont', 'bdi', 'bdo', 'bgsound', 'big', 'blink', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'center', 'cite', 'code', 'col', 'colgroup', 'content', 'data', 'datalist', 'dd', 'decorator', 'del', 'details', 'devto:head', 'dfn', 'dir', 'div', 'dl', 'dt', 'element', 'em', 'embed', 'fieldset', 'figcaption', 'figure', 'font', 'footer', 'form', 'frame', 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'iframe', 'img', 'input', 'ins', 'isindex', 'kbd', 'keygen', 'label', 'legend', 'li', 'link', 'listing', 'main', 'map', 'mark', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'nobr', 'noframes', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'plaintext', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'shadow', 'slot', 'small', 'source', 'spacer', 'span', 'strike', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'video', 'wbr', 'xmp'];
|
||||
function isHTML(tag: string) {
|
||||
return tags.indexOf(tag.trim()) > -1;
|
||||
}
|
||||
|
||||
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
||||
const cheerio = (await import('cheerio'));
|
||||
let time: number;
|
||||
|
||||
async function createServer() {
|
||||
const start = (new Date).getTime();
|
||||
const app = express();
|
||||
// const cache: Record<string, string> = {};
|
||||
const pages: Array<string> = [];
|
||||
|
||||
let basepath: string;
|
||||
(process.env.NODE_ENV == 'production') ? basepath = './' : basepath = './src/';
|
||||
|
||||
app.use(express.static(__dirname + '/public', {
|
||||
maxAge: 43200
|
||||
}));
|
||||
app.use((req: Request, res: Response, next: NextFunction) => {
|
||||
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type,Authorization,cache-control');
|
||||
res.setHeader('Cache-Control', 'max-age=43200, public');
|
||||
|
||||
next();
|
||||
});
|
||||
app.use(cookies());
|
||||
|
||||
app.use(compression({ filter: shouldCompress }));
|
||||
|
||||
function shouldCompress(req: Request, res: Response) {
|
||||
if (req.headers['x-no-compression']) {
|
||||
// don't compress responses with this request header
|
||||
return false;
|
||||
}
|
||||
|
||||
// fallback to standard filter function
|
||||
return compression.filter(req, res);
|
||||
}
|
||||
|
||||
fs.readdirSync(path.join(__dirname, basepath + 'pages/')).forEach((e: string) => {
|
||||
const pageName = e.split('.devto')[0];
|
||||
if (!pageName) return;
|
||||
pages.push(pageName);
|
||||
});
|
||||
|
||||
|
||||
// Create Vite server in middleware mode and configure the app type as
|
||||
// 'custom', disabling Vite's own HTML serving logic so parent server
|
||||
// can take control
|
||||
const vite = await createViteServer({
|
||||
server: { middlewareMode: true, port: 3000 },
|
||||
appType: 'custom'
|
||||
});
|
||||
|
||||
// use vite's connect instance as middleware
|
||||
// if you use your own express router (express.Router()), you should use router.use
|
||||
app.use(vite.middlewares);
|
||||
|
||||
async function renderPage(url: string) {
|
||||
// 1. Read index.html
|
||||
let template: string;
|
||||
let status = 200;
|
||||
template = fs.readFileSync(
|
||||
path.resolve(__dirname, 'index.html'),
|
||||
'utf-8'
|
||||
);
|
||||
|
||||
let layout;
|
||||
|
||||
try {
|
||||
layout = fs.readFileSync(
|
||||
path.resolve(__dirname, 'src/layouts/default.devto'),
|
||||
'utf-8'
|
||||
);
|
||||
} catch {
|
||||
layout = '<slot />';
|
||||
}
|
||||
|
||||
let fileName: Array<string> | string = url.split('/');
|
||||
if (fileName[1] === '') {
|
||||
fileName = '/index';
|
||||
} else {
|
||||
fileName = fileName.join('/').toLowerCase().trim();
|
||||
}
|
||||
|
||||
if (pages.indexOf(fileName.slice(1, fileName.length)) == -1) {
|
||||
status = 404;
|
||||
}
|
||||
|
||||
// 2. Apply Vite HTML transforms. This injects the Vite HMR client, and
|
||||
// also applies HTML transforms from Vite plugins, e.g. global preambles
|
||||
// from @vitejs/plugin-react
|
||||
template = await vite.transformIndexHtml(url, template);
|
||||
|
||||
// 3. Load the server entry. vite.ssrLoadModule automatically transforms
|
||||
// your ESM source code to be usable in Node.js! There is no bundling
|
||||
// required, and provides efficient invalidation similar to HMR.
|
||||
const { SSRPage } = await vite.ssrLoadModule('/src/entry-server.ts');
|
||||
|
||||
let pageData: string;
|
||||
|
||||
try {
|
||||
pageData = fs.readFileSync(
|
||||
path.resolve(__dirname, basepath + '/pages' + fileName + '.devto'),
|
||||
'utf8',
|
||||
);
|
||||
pageData = layout.replace('<slot />', pageData);
|
||||
} catch (e) {
|
||||
pageData = fs.readFileSync(
|
||||
path.resolve(__dirname, basepath + '/layouts/404.devto'),
|
||||
'utf8'
|
||||
);
|
||||
}
|
||||
|
||||
async function renderComponent(component: string) {
|
||||
const item = component.split(' ')[0];
|
||||
try {
|
||||
component = fs.readFileSync(
|
||||
path.resolve(basepath + '/components/' + item + '.devto'),
|
||||
'utf-8',
|
||||
);
|
||||
} catch (e) {
|
||||
component = '';
|
||||
}
|
||||
|
||||
const elements = component.split('<');
|
||||
await Promise.all(elements.map(async (componentInComponent: string | undefined) => {
|
||||
if (!componentInComponent) return;
|
||||
componentInComponent = componentInComponent.split(' ')[0];
|
||||
if (componentInComponent?.includes('/') || componentInComponent?.includes('{') || !componentInComponent) return;
|
||||
componentInComponent = componentInComponent.split('>')[0];
|
||||
if (!componentInComponent) return;
|
||||
if (isHTML(componentInComponent)) return;
|
||||
const componentReplacement = await renderComponent(componentInComponent);
|
||||
component = component.replace('<' + componentInComponent + ' />', componentReplacement);
|
||||
}));
|
||||
|
||||
return component;
|
||||
}
|
||||
|
||||
await Promise.all(pageData.split('<').map(async e => {
|
||||
let item = e.split(' ')[0];
|
||||
if (!item) return;
|
||||
if (item.includes('/') || item.includes('{') || item.includes('}') || !item) return;
|
||||
item = item.split('>')[0];
|
||||
if (!item) return;
|
||||
if (isHTML(item)) return;
|
||||
const component = await renderComponent(item);
|
||||
pageData = pageData.replace('<' + item + ' />', component);
|
||||
}));
|
||||
|
||||
// 4. render the app HTML. This assumes entry-server.js's exported `render`
|
||||
// function calls appropriate framework SSR APIs,
|
||||
// e.g. ReactDOMServer.renderToString()
|
||||
const appHtml = await SSRPage(pageData);
|
||||
|
||||
const styles = await vite.ssrLoadModule(basepath.slice(1) + 'style.css');
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
const main = await vite.ssrLoadModule(basepath.slice(1) + 'main.ts');
|
||||
await main.initAppState();
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
const appState = main.getAppState();
|
||||
|
||||
const $ = cheerio.load(template, null, true);
|
||||
$('html', null).children('head').children('script[src="/src/entry-client.ts"]').remove();
|
||||
$('html', null).children('body').children('div#app').prop('data-server-rendered', 'true');
|
||||
|
||||
const { renderSSRHydrationCode } = await vite.ssrLoadModule(basepath.slice(1) + 'lib/router/ssrHydrationGenerator');
|
||||
|
||||
const code = await renderSSRHydrationCode(eval(appHtml.fnStr));
|
||||
let serverSideScriptInjection = '';
|
||||
|
||||
if (appHtml.script || code) {
|
||||
if (appHtml.script || code) serverSideScriptInjection = 'document.dispatchEvent(new Event(\'router:client:load\'));';
|
||||
if ((code).includes('appState')) {
|
||||
appHtml.script = appHtml.script.replace('const { appState, initAppState } = await import("/src/main.ts");\nawait initAppState();', '');
|
||||
}
|
||||
let script: string | undefined = code + appHtml.script + serverSideScriptInjection;
|
||||
const options = {
|
||||
mangle: false,
|
||||
module: true
|
||||
};
|
||||
script = (await terser.minify(script, options)).code;
|
||||
if (!script) return;
|
||||
$('html', null).children('head').append('<script async type="module">' + (script) + '</script>\n');
|
||||
}
|
||||
|
||||
// 5. Inject the app-rendered HTML into the template.
|
||||
const style = new Cleancss().minify((styles.default + appHtml.styles));
|
||||
$('html', null).children('head').append('<style type="text/css">' + style.styles + '</style>');
|
||||
|
||||
$('html', null).children('head').prepend(appHtml.head);
|
||||
|
||||
$('html', null).children('body').children('div#app').append(eval(appHtml.fnStr));
|
||||
template = $.html();
|
||||
main.resetAppState();
|
||||
return {
|
||||
html: template, status
|
||||
};
|
||||
}
|
||||
|
||||
app.use('*', async (req: Request, res: Response, next: NextFunction) => {
|
||||
const url: string = req.originalUrl;
|
||||
const { setContext } = await vite.ssrLoadModule('/src/entry-server.ts');
|
||||
setContext({ cookies: req.cookies });
|
||||
|
||||
try {
|
||||
const page = await renderPage(url);
|
||||
let fileName: Array<string> | string = url.split('/');
|
||||
if (fileName[1] === '') {
|
||||
fileName = '/index';
|
||||
} else {
|
||||
fileName = fileName.join('/').toLowerCase().trim();
|
||||
}
|
||||
|
||||
if (!page) throw new Error;
|
||||
|
||||
// set the cache with key of fileName for example index to the pages content so it can be rendered at blazing speeds later
|
||||
|
||||
// 6. Send the rendered HTML back.
|
||||
res.status(page.status).set({ 'Content-Type': 'text/html' }).end(page.html);
|
||||
setContext({});
|
||||
} catch (err: unknown) {
|
||||
// If an error is caught, let Vite fix the stack trace so it maps back to
|
||||
// your actual source code.
|
||||
if (!(err instanceof Error)) return;
|
||||
vite.ssrFixStacktrace(err);
|
||||
res.status(500).end(err.stack);
|
||||
next(err);
|
||||
}
|
||||
});
|
||||
|
||||
time = ((new Date).getTime() - start);
|
||||
console.log('\n \x1b[32m\x1b[1m VITE SSR\x1b[0m\x1b[32m v' + Vite.version + ' \x1b[30mready in \x1b[1m\x1b[37m' + time + '\x1b[0m ms\n\n\x1b[32m ➜ \x1b[0m\x1b[37mLocal: \x1b[0m\x1b[36m http://localhost:\x1b[1m3000/\n\x1b[32m ➜ \x1b[0m\x1b[1mNetwork: \x1b[0m\x1b[36mhttp://' + Ip.address() + ':\x1b[1m3000/');
|
||||
app.listen(3000);
|
||||
}
|
||||
|
||||
createServer();
|
||||
1
day42/next-env.d.ts
vendored
Normal file
1
day42/next-env.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
declare module '*.css'
|
||||
9745
day42/package-lock.json
generated
Normal file
9745
day42/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
63
day42/package.json
Normal file
63
day42/package.json
Normal file
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"name": "devto",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev:client": "vite --config vite.config.ts dev",
|
||||
"dev:server": "ts-node-esm index.ts",
|
||||
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
|
||||
"build": "rimraf dist && tsc && npm run build:client && npm run build:server && npm run copy-files",
|
||||
"preview": "vite preview",
|
||||
"lint": "eslint .",
|
||||
"test": "vitest",
|
||||
"test:coverage": "vitest run --coverage",
|
||||
"build:client": "vite build --outDir dist/client --ssrManifest",
|
||||
"build:server": "vite build --ssr index.ts --outDir dist/server",
|
||||
"copy-files": "copyfiles public/* dist/assets && copyfiles index.html dist"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@types/compression": "^1.7.2",
|
||||
"@types/cookie-parser": "^1.4.3",
|
||||
"@types/express": "^4.17.14",
|
||||
"@types/ip": "^1.1.0",
|
||||
"@types/node": "^18.8.4",
|
||||
"@types/uglify-es": "^3.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.40.0",
|
||||
"@typescript-eslint/parser": "^5.40.0",
|
||||
"@vitest/coverage-c8": "^0.24.3",
|
||||
"autoprefixer": "^10.4.12",
|
||||
"eslint": "^8.25.0",
|
||||
"postcss": "^8.4.17",
|
||||
"tailwindcss": "^3.1.8",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^4.8.4",
|
||||
"vitest": "^0.24.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/clean-css": "^4.2.6",
|
||||
"@types/uglify-js": "^3.17.1",
|
||||
"autoprefixer": "10.4.7",
|
||||
"cheerio": "^1.0.0-rc.12",
|
||||
"clean-css": "^5.3.1",
|
||||
"compression": "^1.7.4",
|
||||
"concurrently": "7.3.0",
|
||||
"cookie-parser": "^1.4.6",
|
||||
"copyfiles": "^2.4.1",
|
||||
"cssnano": "5.1.12",
|
||||
"express": "^4.18.1",
|
||||
"ip": "^1.1.8",
|
||||
"nodemon": "^2.0.20",
|
||||
"postcss": "8.4.14",
|
||||
"postcss-import": "14.1.0",
|
||||
"postcss-nesting": "10.1.10",
|
||||
"rimraf": "^3.0.2",
|
||||
"tailwindcss": "3.1.6",
|
||||
"terser": "^5.15.1",
|
||||
"uglify-es": "^3.3.9",
|
||||
"vite": "^3.1.4"
|
||||
}
|
||||
}
|
||||
7
day42/postcss.config.js
Normal file
7
day42/postcss.config.js
Normal file
@@ -0,0 +1,7 @@
|
||||
import tailwind from 'tailwindcss';
|
||||
import tailwindConfig from './tailwind.config.js';
|
||||
import autoprefixer from 'autoprefixer';
|
||||
|
||||
export default {
|
||||
plugins:[tailwind(tailwindConfig),autoprefixer]
|
||||
};
|
||||
BIN
day42/public/favicon.png
Normal file
BIN
day42/public/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
1
day42/public/minus.svg
Normal file
1
day42/public/minus.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-5 -11 24 24" width="24" fill="white"><path d="M1 0h12a1 1 0 0 1 0 2H1a1 1 0 1 1 0-2z"></path></svg>
|
||||
|
After Width: | Height: | Size: 149 B |
1
day42/public/pause.svg
Normal file
1
day42/public/pause.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -3 24 24" width="24" fill="white"><path d="M2 0h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm0 2v14h2V2H2zm10-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm0 2v14h2V2h-2z"></path></svg>
|
||||
|
After Width: | Height: | Size: 281 B |
1
day42/public/play.svg
Normal file
1
day42/public/play.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -3 24 24" width="24" fill="white"><path d="M13.82 9.523a.976.976 0 0 0-.324-1.363L3.574 2.128a1.031 1.031 0 0 0-.535-.149c-.56 0-1.013.443-1.013.99V15.03c0 .185.053.366.153.523.296.464.92.606 1.395.317l9.922-6.031c.131-.08.243-.189.325-.317zm.746 1.997l-9.921 6.031c-1.425.867-3.3.44-4.186-.951A2.918 2.918 0 0 1 0 15.03V2.97C0 1.329 1.36 0 3.04 0c.567 0 1.123.155 1.605.448l9.921 6.032c1.425.866 1.862 2.696.975 4.088-.246.386-.58.712-.975.952z"></path></svg>
|
||||
|
After Width: | Height: | Size: 512 B |
1
day42/public/plus.svg
Normal file
1
day42/public/plus.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-4.5 -4.5 24 24" width="24" fill="white"><path d="M8.9 6.9v-5a1 1 0 1 0-2 0v5h-5a1 1 0 1 0 0 2h5v5a1 1 0 1 0 2 0v-5h5a1 1 0 1 0 0-2h-5z"></path></svg>
|
||||
|
After Width: | Height: | Size: 199 B |
1
day42/public/refresh.svg
Normal file
1
day42/public/refresh.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-1.5 -2.5 24 24" width="24" fill="white"><path d="M17.83 4.194l.42-1.377a1 1 0 1 1 1.913.585l-1.17 3.825a1 1 0 0 1-1.248.664l-3.825-1.17a1 1 0 1 1 .585-1.912l1.672.511A7.381 7.381 0 0 0 3.185 6.584l-.26.633a1 1 0 1 1-1.85-.758l.26-.633A9.381 9.381 0 0 1 17.83 4.194zM2.308 14.807l-.327 1.311a1 1 0 1 1-1.94-.484l.967-3.88a1 1 0 0 1 1.265-.716l3.828.954a1 1 0 0 1-.484 1.941l-1.786-.445a7.384 7.384 0 0 0 13.216-1.792 1 1 0 1 1 1.906.608 9.381 9.381 0 0 1-5.38 5.831 9.386 9.386 0 0 1-11.265-3.328z"></path></svg>
|
||||
|
After Width: | Height: | Size: 561 B |
0
day42/public/robots.txt
Normal file
0
day42/public/robots.txt
Normal file
23
day42/src/components/Counter.devto
Normal file
23
day42/src/components/Counter.devto
Normal file
@@ -0,0 +1,23 @@
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center">count is: { appState.contents.count }</h2>
|
||||
</div>
|
||||
<div class="flex justify-center mb-3">
|
||||
<button d-on:click="appState.contents.count--"
|
||||
class="transition-colors p-3 duration-300 active:bg-red-700 hover:bg-red-600 hover:text-zinc-100 mr-1">
|
||||
<img src='/minus.svg'
|
||||
width="24px"
|
||||
alt="minus" />
|
||||
</button>
|
||||
<button d-on:click="appState.contents.count = 0"
|
||||
class="transition-colors p-3 duration-300 active:bg-zinc-700 hover:bg-zinc-800 hover:text-red-100 mr-1">
|
||||
<img src='/refresh.svg'
|
||||
width="24px"
|
||||
alt="reset">
|
||||
</button>
|
||||
<button d-on:click="appState.contents.count++"
|
||||
class="transition-colors p-3 duration-300 active:bg-green-700 hover:bg-green-600 hover:text-green-100">
|
||||
<img src='/plus.svg'
|
||||
width="24px"
|
||||
alt="plus" />
|
||||
</button>
|
||||
</div>
|
||||
18
day42/src/components/Nav.devto
Normal file
18
day42/src/components/Nav.devto
Normal file
@@ -0,0 +1,18 @@
|
||||
<nav class="p-4 shadow-lg md:p-[1.375rem] dark:bg-zinc-900 border-b border-b-neutral-800 dark:text-white mb-2">
|
||||
<ul class="flex flex-row items-center max-h-7">
|
||||
<div class="flex items-baseline">
|
||||
<li class="mr-2 text-lg">
|
||||
<a href="/">Home</a>
|
||||
</li>
|
||||
<li class="mr-2">
|
||||
<a href="/page2">page 2</a>
|
||||
</li>
|
||||
<li class="mr-2">
|
||||
<a href="/page3">page 3</a>
|
||||
</li>
|
||||
<li class="mr-2">
|
||||
<a href="/nojavascript">No Javascript</a>
|
||||
</li>
|
||||
</div>
|
||||
</ul>
|
||||
</nav>
|
||||
20
day42/src/components/cookieInput.devto
Normal file
20
day42/src/components/cookieInput.devto
Normal file
@@ -0,0 +1,20 @@
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center">Username cookie is: {appState.contents.cookie}</h2>
|
||||
</div>
|
||||
<div class="flex justify-center flex-col mx-auto mb-2 w-fit">
|
||||
<input placeholder="username..."
|
||||
class="py-2 px-4 resize-none bg-zinc-800 rounded-md shadow-md my-2 border border-zinc-800 placeholder:italic placeholder:text-gray-300"
|
||||
d-model="cookiedata" />
|
||||
<button
|
||||
class="bg-blue-600 font-semibold rounded-md py-2.5 px-2 text-sm hover:bg-blue-700 active:bg-blue-800 transition-colors"
|
||||
d-on:click="appState.contents.cookie = appState.contents.cookiedata; setCookie('username', appState.contents.cookiedata, '365');">Submit
|
||||
Cookie</button>
|
||||
</div>
|
||||
|
||||
<script setup>
|
||||
console.log('page is first get')
|
||||
</script>
|
||||
|
||||
<script>
|
||||
console.log('page is fully loaded');
|
||||
</script>
|
||||
11
day42/src/components/htmlInput.devto
Normal file
11
day42/src/components/htmlInput.devto
Normal file
@@ -0,0 +1,11 @@
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center"
|
||||
d-html>html input is: {appState.contents.html}</h2>
|
||||
</div>
|
||||
<div class="flex justify-center">
|
||||
<div>
|
||||
<input placeholder="text..."
|
||||
class="py-2 px-4 resize-none bg-zinc-800 rounded-md shadow-md my-2 border border-zinc-800 placeholder:italic placeholder:text-gray-300"
|
||||
d-model="html" />
|
||||
</div>
|
||||
</div>
|
||||
2
day42/src/components/indexComponent.devto
Normal file
2
day42/src/components/indexComponent.devto
Normal file
@@ -0,0 +1,2 @@
|
||||
<Counter />
|
||||
<textInput />
|
||||
25
day42/src/components/myDad.devto
Normal file
25
day42/src/components/myDad.devto
Normal file
@@ -0,0 +1,25 @@
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center">My dad {appState.contents.year}</h2>
|
||||
</div>
|
||||
<div class="flex justify-center">
|
||||
<input placeholder="ex: 1985"
|
||||
class="no-arrows py-2 px-4 resize-none bg-zinc-800 rounded-md shadow-md my-2 border border-zinc-800 placeholder:italic placeholder:text-gray-300"
|
||||
type="number"
|
||||
d-model="year">
|
||||
</div>
|
||||
<style>
|
||||
/* Chrome, Safari, Edge, Opera */
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Firefox */
|
||||
input[type=number] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
console.log('loaded myDad')
|
||||
</script>
|
||||
10
day42/src/components/textInput.devto
Normal file
10
day42/src/components/textInput.devto
Normal file
@@ -0,0 +1,10 @@
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center">Input is: {appState.contents.text}</h2>
|
||||
</div>
|
||||
<div class="flex justify-center">
|
||||
<div>
|
||||
<input d-on:keydown.space="console.log('aaa')" placeholder="text..."
|
||||
class="py-2 px-4 resize-none bg-zinc-800 rounded-md shadow-md my-2 border border-zinc-800 placeholder:italic placeholder:text-gray-300"
|
||||
d-model="text" />
|
||||
</div>
|
||||
</div>
|
||||
20
day42/src/entry-client.ts
Normal file
20
day42/src/entry-client.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
import { appState, initAppState } from './main';
|
||||
|
||||
|
||||
async function initClient() {
|
||||
if (import.meta.env.SSR) return;
|
||||
await initAppState();
|
||||
await import('./style.css');
|
||||
const { renderPage } = await import('./lib/router/pageRenderer');
|
||||
await renderPage();
|
||||
|
||||
window.onpopstate = async (e: PopStateEvent) => {
|
||||
if (e.state === null) {
|
||||
return;
|
||||
}
|
||||
await renderPage();
|
||||
};
|
||||
}
|
||||
|
||||
await initClient();
|
||||
17
day42/src/entry-server.ts
Normal file
17
day42/src/entry-server.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { compileToString } from './lib/templateRenderer';
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
import { appState, initAppState } from './main';
|
||||
export let ctx = {};
|
||||
|
||||
export async function SSRPage(template: string) {
|
||||
await initAppState();
|
||||
return compileToString(template);
|
||||
}
|
||||
|
||||
export function setContext(context: Record<string, unknown>) {
|
||||
ctx = context;
|
||||
}
|
||||
|
||||
export function getContext() {
|
||||
return ctx;
|
||||
}
|
||||
5
day42/src/layouts/404.devto
Normal file
5
day42/src/layouts/404.devto
Normal file
@@ -0,0 +1,5 @@
|
||||
<div class="grid place-items-center p-3 content-center min-h-screen">
|
||||
<h1 class="text-4xl font-bold">404</h1>
|
||||
<h2 class="text-2xl font-semibold">Looks like you're lost</h3>
|
||||
<h3 class="text-xl font-semibold">Go <a href="/" d-on:click="event.preventDefault(); renderPage('/')">home</a></h3>
|
||||
</div>
|
||||
16
day42/src/layouts/default.devto
Normal file
16
day42/src/layouts/default.devto
Normal file
@@ -0,0 +1,16 @@
|
||||
<Nav />
|
||||
<div class="container__body">
|
||||
<slot />
|
||||
</div>
|
||||
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.container__body {
|
||||
height: calc(100vh - 73px - 0.75rem);
|
||||
width: 100vw;
|
||||
}
|
||||
</style>
|
||||
42
day42/src/lib/ReactiveObject.ts
Normal file
42
day42/src/lib/ReactiveObject.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
export class Reactive {
|
||||
listeners: Record<string, Array<CallableFunction>>;
|
||||
contents: Record<string, unknown>;
|
||||
constructor(obj: Record<string, unknown>) {
|
||||
this.contents = obj;
|
||||
this.listeners = {};
|
||||
this.makeReactive(obj);
|
||||
}
|
||||
|
||||
makeReactive(obj: Record<string, unknown>) {
|
||||
Object.keys(obj).forEach(prop => this.makePropReactive(obj, prop));
|
||||
}
|
||||
|
||||
makePropReactive(obj: Record<string, unknown>, key: string) {
|
||||
let value = obj[key];
|
||||
|
||||
// Gotta be careful with this here
|
||||
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
||||
const that = this;
|
||||
|
||||
Object.defineProperty(obj, key, {
|
||||
get() {
|
||||
return value;
|
||||
},
|
||||
set(newValue) {
|
||||
value = newValue;
|
||||
that.notify(key);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
listen(prop: string, handler: CallableFunction) {
|
||||
if (!this.listeners[prop]) this.listeners[prop] = [];
|
||||
|
||||
this.listeners[prop]?.push(handler);
|
||||
}
|
||||
|
||||
notify(prop: string) {
|
||||
if (!this.listeners[prop]) return;
|
||||
this.listeners[prop]?.forEach((listener: CallableFunction) => listener(this.contents[prop]));
|
||||
}
|
||||
}
|
||||
50
day42/src/lib/cookieManager.ts
Normal file
50
day42/src/lib/cookieManager.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
export function setCookie(name: string, value: string, expires: string | Date, path?: string, domain?: string) {
|
||||
if (import.meta.env.SSR) return;
|
||||
let cookie = name.trimEnd() + '=' + escape(value) + ';';
|
||||
|
||||
if (expires) {
|
||||
// If it's a date
|
||||
if (expires instanceof Date) {
|
||||
// If it isn't a valid date
|
||||
if (isNaN(expires.getTime())) expires = new Date();
|
||||
}
|
||||
else expires = new Date(new Date().getTime() + parseInt(expires) * 1000 * 60 * 60 * 24);
|
||||
|
||||
cookie += 'expires=' + expires.toUTCString() + ';';
|
||||
}
|
||||
|
||||
if (path) cookie += 'path=' + path + ';';
|
||||
if (domain) cookie += 'domain=' + domain + ';';
|
||||
|
||||
document.cookie = cookie;
|
||||
}
|
||||
|
||||
let getContext: () => Record<string, string>;
|
||||
if (import.meta.env.SSR) {
|
||||
getContext = (await import('../entry-server')).getContext;
|
||||
}
|
||||
|
||||
export function getCookie(name: string) {
|
||||
let decodedCookie: string | Record<string, Record<string, string>>;
|
||||
if (import.meta.env.SSR) {
|
||||
const ctx = getContext();
|
||||
if (!ctx.cookies || !ctx.cookies[name]) return '';
|
||||
if (ctx.cookies[name] === undefined) return '';
|
||||
return ctx.cookies[name];
|
||||
} else {
|
||||
decodedCookie = decodeURIComponent(document.cookie);
|
||||
}
|
||||
const cname = name + '=';
|
||||
const ca = decodedCookie.split(';');
|
||||
for (let i = 0; i < ca.length; i++) {
|
||||
let c = ca[i];
|
||||
if (!c) return;
|
||||
while (c.charAt(0) == ' ') {
|
||||
c = c.substring(1);
|
||||
}
|
||||
if (c.indexOf(cname) == 0) {
|
||||
return c.substring(cname.length, c.length);
|
||||
}
|
||||
}
|
||||
return '';
|
||||
}
|
||||
270
day42/src/lib/router/hydrationManager.ts
Normal file
270
day42/src/lib/router/hydrationManager.ts
Normal file
@@ -0,0 +1,270 @@
|
||||
import { getAppState, initAppState } from '../../main';
|
||||
import { renderPage } from './pageRenderer';
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
import { getCookie, setCookie } from '../cookieManager';
|
||||
import { Reactive } from '../ReactiveObject';
|
||||
|
||||
export let ctrlPressed = false;
|
||||
|
||||
export function setCtrl(ctrl: boolean) {
|
||||
ctrlPressed = ctrl;
|
||||
}
|
||||
|
||||
// function to turn the template into reactive content "hydating" a page
|
||||
export async function hydratePage() {
|
||||
if (import.meta.env.SSR) return;
|
||||
await initAppState();
|
||||
const appState = getAppState();
|
||||
const documentBody = document.getElementById('app');
|
||||
if (!documentBody) {
|
||||
throw new Error('Fatal Error: element with id app not found');
|
||||
}
|
||||
|
||||
ReactifyTemplate(appState);
|
||||
|
||||
// here we look for elements with the d-on:click attribute and on click run the function in the attribute
|
||||
hydrateElement('*[d-on:click]', appState, 'click');
|
||||
|
||||
// here we determine if an element should be deleted form the DOM via the d-if directive
|
||||
hydrateIfAttributes(appState);
|
||||
|
||||
hydrateElement('*[d-on:pointerEnter]', appState, 'pointerenter');
|
||||
|
||||
hydrateElement('*[d-on:pointerExit]', appState, 'pointerleave');
|
||||
|
||||
hydrateElement('*[d-on:mouseDown]', appState, 'mousedown');
|
||||
|
||||
hydrateElement('*[d-on:mouseUp]', appState, 'mouseup');
|
||||
|
||||
// here we look for elements with the d-model attribute and if there is any input in the element then we update the appState item with the name
|
||||
// of the attribute value
|
||||
// example: if the user types "hello" into a text field with the d-model attribute of "text" then we update the appState item with the name "text"
|
||||
// to "hello"
|
||||
// similar to vue.js v-model attribute
|
||||
hydrateModelAttributes(appState);
|
||||
|
||||
hydrateHeadElements(appState);
|
||||
|
||||
hydrateAnchorElements();
|
||||
|
||||
hydrateKeyDown(appState);
|
||||
}
|
||||
|
||||
export function ReactifyTemplate(appState: Reactive) {
|
||||
// for every item in the appState lets check for any element with the "checksum", a hex code equivalent of the item name
|
||||
Object.keys(appState.contents).forEach((e: string) => {
|
||||
if (e === undefined) return;
|
||||
// here we check for elements with the name of "data-token-<hex code of the item name>"
|
||||
const uuid = e.split('').map((c: string) => c.charCodeAt(0).toString(16).padStart(2, '0')).join('');
|
||||
const listeningElements = document.querySelectorAll(`[${'data-token-' + uuid}]`);
|
||||
listeningElements.forEach((elm) => {
|
||||
if (elm.parentElement?.getAttribute('d-once') !== null) {
|
||||
elm.parentElement?.removeAttribute('d-once');
|
||||
return;
|
||||
}
|
||||
|
||||
if (elm.parentElement?.getAttribute('d-html') !== null) {
|
||||
appState.listen(e, (change: string) => elm.innerHTML = change);
|
||||
elm.parentElement?.removeAttribute('d-html');
|
||||
} else {
|
||||
appState.listen(e, (change: string) => elm.textContent = change);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export function hydrateIfAttributes(appState: Reactive) {
|
||||
const conditionalElms = document.querySelectorAll('*[d-if]');
|
||||
conditionalElms.forEach(async (e: Element) => {
|
||||
const condition = e.getAttribute('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 resetHTML() {
|
||||
e.innerHTML = '<!-- d-if -->';
|
||||
for (let i = 0; i < siblingConditionalElms.length; i++) {
|
||||
const element = siblingConditionalElms[i];
|
||||
if (!element) return;
|
||||
element.innerHTML = '<!-- d-if -->';
|
||||
}
|
||||
}
|
||||
|
||||
let ifStatement = `if (!!eval(condition)) {
|
||||
e.innerHTML = originalHTML
|
||||
} `;
|
||||
|
||||
for (let i = 0; i < siblingConditionalElms.length; i++) {
|
||||
const element = siblingConditionalElms[i];
|
||||
if (!element) return;
|
||||
const originHTML = element.innerHTML;
|
||||
element.innerHTML = '<!-- d-if -->';
|
||||
let statementDirective = 'else';
|
||||
if (element.getAttribute('d-else-if') !== null) {
|
||||
statementDirective = 'else if';
|
||||
}
|
||||
const condition = eval('element.getAttribute(\'d-\' + statementDirective.split(\' \').join(\'-\'))');
|
||||
|
||||
if (statementDirective == 'else if') {
|
||||
statementDirective = 'else if (' + condition + ')';
|
||||
}
|
||||
|
||||
ifStatement = ifStatement + statementDirective + `{
|
||||
siblingConditionalElms[${i}].innerHTML = "${originHTML}"
|
||||
}`;
|
||||
}
|
||||
|
||||
e.removeAttribute('d-if');
|
||||
const originalHTML = e.innerHTML;
|
||||
if (!condition || originalHTML == undefined) return;
|
||||
if (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;
|
||||
appState.listen(reactiveProp, () => {
|
||||
resetHTML();
|
||||
eval(ifStatement);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
eval(ifStatement);
|
||||
});
|
||||
}
|
||||
|
||||
export function hydrateElement(querySelector: string, appState: Reactive, eventListenerName: string, removeAttribute?: boolean) {
|
||||
const queryName: Array<string> | null = /(?<=\[).+?(?=\])/.exec(querySelector);
|
||||
if (!queryName || !queryName[0]) return;
|
||||
const querySelectorAll = (querySelector.replace(':', '\\\\3A '));
|
||||
querySelector = queryName[0];
|
||||
const elms = eval(`document.querySelectorAll('${querySelectorAll.toString()}');`);
|
||||
if (Array.from(elms).length === 0) return;
|
||||
elms.forEach((e: Element) => {
|
||||
const hydrationFunction = e.getAttribute(`${querySelector}`);
|
||||
if (removeAttribute === undefined || removeAttribute === true) {
|
||||
e.removeAttribute(`${querySelector}`);
|
||||
}
|
||||
if (!hydrationFunction) return;
|
||||
e.addEventListener(eventListenerName, () => {
|
||||
eval(hydrationFunction);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
export function hydrateModelAttributes(appState: Reactive) {
|
||||
const modelElms = document.querySelectorAll('input[d-model], textarea[d-model]');
|
||||
modelElms.forEach((e: Element) => {
|
||||
const modelName = e.getAttribute('d-model');
|
||||
if (!modelName) return;
|
||||
e.addEventListener('input', (input: Event) => {
|
||||
const target = input.target as HTMLInputElement;
|
||||
appState.contents[modelName] = target.value;
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export function hydrateHeadElements(appState: Reactive) {
|
||||
const headContent = document.head.innerHTML;
|
||||
const headElements = document.querySelectorAll('devto\\3A head');
|
||||
headElements.forEach((e: Element) => {
|
||||
if (e.childNodes.length == 0) return;
|
||||
e.childNodes.forEach((elm) => {
|
||||
const child = elm as Element;
|
||||
if (child.nodeType !== 1) return;
|
||||
if (!document.head.querySelectorAll(child.tagName)) return;
|
||||
const uniqueAttributes = ['content', 'href'];
|
||||
document.head.querySelectorAll(child.tagName).forEach((headEl: Element) => {
|
||||
if (headEl.attributes.length == 0) {
|
||||
headEl.remove();
|
||||
}
|
||||
for (let i = 0; i < headEl.attributes.length; i++) {
|
||||
if (!headEl.attributes.item(i)) return;
|
||||
const itemName = headEl.attributes.item(i)?.name;
|
||||
if (!itemName) return;
|
||||
if (uniqueAttributes.indexOf(itemName) == -1) {
|
||||
if (child.attributes.getNamedItem(itemName)?.nodeValue == headEl.attributes.item(i)?.nodeValue) {
|
||||
headEl.remove();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
document.head.appendChild(child);
|
||||
});
|
||||
e.remove();
|
||||
});
|
||||
|
||||
document.addEventListener('router:naviagte', () => {
|
||||
document.head.innerHTML = headContent;
|
||||
}, { once: true });
|
||||
}
|
||||
|
||||
export function hydrateAnchorElements() {
|
||||
const anchorElms = document.querySelectorAll('a');
|
||||
anchorElms.forEach((e: HTMLAnchorElement) => {
|
||||
e.addEventListener('click', async (click: MouseEvent) => {
|
||||
if (!event || click.ctrlKey) return;
|
||||
const target = click.target as HTMLElement;
|
||||
event.preventDefault();
|
||||
|
||||
if (!target) return;
|
||||
const url: string | null = target.getAttribute('href');
|
||||
|
||||
if (!url) return;
|
||||
await renderPage(url);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export function hydrateKeyDown(appState: Reactive) {
|
||||
document.body.querySelectorAll('*').forEach((e) => {
|
||||
for (let i = 0; i < e.attributes.length; i++) {
|
||||
const item = e.attributes.item(i)?.name;
|
||||
if (!item) return;
|
||||
if (item.startsWith('d-on:keydown')) {
|
||||
const key = item.split('.')[1]?.toLowerCase();
|
||||
let correctedKey = '';
|
||||
if (key && key?.length > 0) {
|
||||
key.split('').forEach((e, i, arr) => {
|
||||
if (i === 0) {
|
||||
arr[i] = e.toUpperCase();
|
||||
}
|
||||
correctedKey += arr[i];
|
||||
});
|
||||
}
|
||||
e.addEventListener('keydown', (keydown) => {
|
||||
const keyboardEvent = <KeyboardEvent>keydown;
|
||||
let keyName = keyboardEvent.key;
|
||||
if (keyName === ' ') {
|
||||
keyName = 'Space';
|
||||
}
|
||||
const firstLetter = keyName.split('')[0];
|
||||
keyName = firstLetter?.toUpperCase() + keyName.slice(1);
|
||||
if (keyName == correctedKey) {
|
||||
const itemCode = e.getAttribute(item);
|
||||
if (!itemCode) return;
|
||||
eval(itemCode);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
49
day42/src/lib/router/linkPrefetcher.ts
Normal file
49
day42/src/lib/router/linkPrefetcher.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
export default (anchorElms: NodeListOf<HTMLAnchorElement>) => {
|
||||
const prefetchedPages: Array<string> = [];
|
||||
|
||||
function prefetchLink(url: string) {
|
||||
const prefetchElm = document.createElement('link');
|
||||
prefetchElm.rel = 'prefetch';
|
||||
prefetchElm.href = url;
|
||||
prefetchElm.as = 'document';
|
||||
|
||||
prefetchElm.onerror = (err) => { console.error('cant prefetch url: ' + url, err); };
|
||||
|
||||
document.head.appendChild(prefetchElm);
|
||||
prefetchedPages.push(url);
|
||||
}
|
||||
|
||||
if (!('IntersectionObserver' in window)) return;
|
||||
const visibleObserver = new IntersectionObserver((entries, observer) => {
|
||||
entries.forEach((entry) => {
|
||||
const url = entry.target.getAttribute('href');
|
||||
if (!url) return;
|
||||
if (prefetchedPages.includes(url)) {
|
||||
observer.unobserve(entry.target);
|
||||
return;
|
||||
}
|
||||
if (entry.isIntersecting) {
|
||||
prefetchLink(url);
|
||||
observer.unobserve(entry.target);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
anchorElms.forEach((e: HTMLAnchorElement) => {
|
||||
const prefetch = e.getAttribute('client:prefetch');
|
||||
let method;
|
||||
if (prefetch == null) return;
|
||||
if (prefetch) method = prefetch;
|
||||
if (e.href.includes(document.location.origin) && !e.href.includes('#') && e.href !== (document.location.href || document.location.href + '/')) {
|
||||
// page would be a valid prefetch
|
||||
if (method == 'hover') {
|
||||
const url = e.getAttribute('href');
|
||||
if (!url) return;
|
||||
e.addEventListener('pointerenter', () => prefetchLink(url), { once: true });
|
||||
} else {
|
||||
// method is empty, visible, or invalid, either way we so the default of visible
|
||||
visibleObserver.observe(e);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
184
day42/src/lib/router/pageRenderer.ts
Normal file
184
day42/src/lib/router/pageRenderer.ts
Normal file
@@ -0,0 +1,184 @@
|
||||
import { compileToString } from '../templateRenderer';
|
||||
import { appState, isSSR, isHTML } from '../../main';
|
||||
|
||||
if (!appState) console.error('no reactive data found');
|
||||
|
||||
let documentBody: string | HTMLElement | null;
|
||||
|
||||
if (import.meta.env.SSR) {
|
||||
const fs = await import('fs');
|
||||
const path = await import('path');
|
||||
documentBody = fs.readFileSync(
|
||||
path.resolve('index.html'),
|
||||
'utf-8'
|
||||
);
|
||||
} else {
|
||||
documentBody = document.getElementById('app');
|
||||
}
|
||||
|
||||
|
||||
// Global function to handle rendering a page and navigation
|
||||
export async function renderPage(route?: string) {
|
||||
if (isSSR() || typeof documentBody == 'string') return;
|
||||
|
||||
if (!window.history) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!documentBody) {
|
||||
throw new Error('Fatal Error: element with id app not found');
|
||||
}
|
||||
|
||||
if (route) {
|
||||
history.pushState('', '', route);
|
||||
document.dispatchEvent(new Event('router:naviagte'));
|
||||
}
|
||||
|
||||
let fileName: string | Array<string> = window.location.pathname.split('/');
|
||||
if (fileName[1] === '') {
|
||||
fileName = '/index';
|
||||
} else {
|
||||
fileName = fileName.join('/').toLowerCase().trim();
|
||||
}
|
||||
|
||||
let layout;
|
||||
try {
|
||||
layout = await loadPage('/default', 'layouts');
|
||||
} catch {
|
||||
layout = '<slot />';
|
||||
}
|
||||
|
||||
let page: string | undefined = await loadPage(fileName, 'pages');
|
||||
|
||||
if (!page || !layout) return;
|
||||
|
||||
page = layout.replace('<slot />', page);
|
||||
|
||||
const stringifiedTemplate = await compileToString(page);
|
||||
|
||||
if (!stringifiedTemplate) return;
|
||||
|
||||
if (import.meta.env.VITE_VERBOSE && !import.meta.env.PROD && !import.meta.env.SSR) {
|
||||
console.groupCollapsed('Loaded page ' + fileName);
|
||||
console.info('Template: ' + page);
|
||||
console.info('stringified template: ' + stringifiedTemplate.fnStr);
|
||||
console.groupEnd();
|
||||
}
|
||||
|
||||
// since we have all the html content ready to place in the app, we first need to remove all the old injected content
|
||||
if (route) {
|
||||
const childrenToRemove = document.head.querySelectorAll('*[local]');
|
||||
childrenToRemove.forEach(child => document.head.removeChild(child));
|
||||
}
|
||||
|
||||
documentBody.innerHTML = await eval(stringifiedTemplate.fnStr);
|
||||
if (stringifiedTemplate.styles) {
|
||||
const cssElement = document.createElement('style');
|
||||
cssElement.type = 'text/css';
|
||||
cssElement.setAttribute('local', 'true');
|
||||
cssElement.innerHTML = stringifiedTemplate.styles;
|
||||
document.head.appendChild(cssElement);
|
||||
}
|
||||
|
||||
if (stringifiedTemplate.script) {
|
||||
const scriptElement = document.createElement('script');
|
||||
scriptElement.async = true;
|
||||
scriptElement.type = 'module';
|
||||
scriptElement.setAttribute('local', 'true');
|
||||
scriptElement.innerHTML = stringifiedTemplate.script;
|
||||
document.head.appendChild(scriptElement);
|
||||
}
|
||||
|
||||
// here we hydrate/re-hydrate the page content
|
||||
const { hydratePage } = await import('./hydrationManager');
|
||||
await hydratePage();
|
||||
|
||||
// this is super bad but it works s good, fix later
|
||||
setTimeout(() => {
|
||||
// tell the document that the client has fully rendered and hydrated the page
|
||||
document.dispatchEvent(new Event('router:client:load'));
|
||||
}, 15);
|
||||
}
|
||||
|
||||
async function loadPage(page: string, dir: string) {
|
||||
if (import.meta.env.SSR) return;
|
||||
if (isSSR()) return;
|
||||
const file = await fetchPage(page, dir);
|
||||
|
||||
return file;
|
||||
}
|
||||
|
||||
async function fetchPage(url: string, dir: string) {
|
||||
let path: string;
|
||||
(import.meta.env.PROD) ? path = '/' : path = '/src/';
|
||||
|
||||
let file: string | void | undefined = await fetch(path + `${dir}${url}.devto`).then((response) => {
|
||||
if (response.ok) {
|
||||
return response.text();
|
||||
}
|
||||
throw new Error('File not found');
|
||||
})
|
||||
.then((data) => {
|
||||
if (!data) return undefined;
|
||||
return data;
|
||||
})
|
||||
.catch(async () => {
|
||||
return (await fetch(path + 'layouts/404.devto').then((response) => {
|
||||
if (response.ok) {
|
||||
return response.text();
|
||||
}
|
||||
throw new Error('Error fetching 404 page');
|
||||
})
|
||||
.then((data) => {
|
||||
if (!data) return undefined;
|
||||
return data;
|
||||
}));
|
||||
});
|
||||
|
||||
|
||||
if (!file) return;
|
||||
|
||||
let template = file;
|
||||
const elements: Array<string> = file.split('<');
|
||||
|
||||
await Promise.all(elements.map(async (component: string | undefined) => {
|
||||
if (!component || !file) return;
|
||||
component = component.split(' ')[0];
|
||||
if (component?.includes('/') || component?.includes('{') || !component) return;
|
||||
component = component.split('>')[0];
|
||||
if (!component) return;
|
||||
if (isHTML(component)) return;
|
||||
file = await renderComponent(component, path);
|
||||
|
||||
template = template.replace('<' + component + ' />', file);
|
||||
})
|
||||
);
|
||||
|
||||
return template;
|
||||
}
|
||||
|
||||
async function renderComponent(component: string, path: string) {
|
||||
await fetch(path + `components/${component}.devto`).then((response) => {
|
||||
if (response.ok) {
|
||||
return response.text();
|
||||
}
|
||||
return '';
|
||||
})
|
||||
.then((data) => {
|
||||
component = data;
|
||||
});
|
||||
|
||||
const elements = component.split('<');
|
||||
await Promise.all(elements.map(async (componentInComponent: string | undefined) => {
|
||||
if (!componentInComponent) return;
|
||||
componentInComponent = componentInComponent.split(' ')[0];
|
||||
if (componentInComponent?.includes('/') || componentInComponent?.includes('{') || !componentInComponent) return;
|
||||
componentInComponent = componentInComponent.split('>')[0];
|
||||
if (!componentInComponent) return;
|
||||
if (isHTML(componentInComponent)) return;
|
||||
const componentReplacement = await renderComponent(componentInComponent, path);
|
||||
component = component.replace('<' + componentInComponent + ' />', componentReplacement);
|
||||
}));
|
||||
|
||||
return component;
|
||||
}
|
||||
79
day42/src/lib/router/ssrHydrationGenerator.ts
Normal file
79
day42/src/lib/router/ssrHydrationGenerator.ts
Normal file
@@ -0,0 +1,79 @@
|
||||
import { ReactifyTemplate, hydrateIfAttributes, hydrateModelAttributes, hydrateKeyDown } from './hydrationManager';
|
||||
|
||||
function SSRHydrateElement(querySelector: string, eventListenerName: string, removeAttribute?: boolean) {
|
||||
let script = '';
|
||||
const queryName: Array<string> | null = /(?<=\[).+?(?=\])/.exec(querySelector);
|
||||
if (!queryName || !queryName[0]) return;
|
||||
const querySelectorAll = (querySelector.replace(':', '\\\\\\\\3A '));
|
||||
querySelector = queryName[0];
|
||||
let removeAttributeString = '';
|
||||
if (removeAttribute === undefined || removeAttribute === true) {
|
||||
removeAttributeString = `e.removeAttribute('${querySelector}');`;
|
||||
}
|
||||
script += `const ${querySelector.split(':')[1]}Elms = eval("document.querySelectorAll('${querySelectorAll}')");
|
||||
${querySelector.split(':')[1]}Elms.forEach((e) => {
|
||||
const ${querySelector.split(':')[1]}HydartionFunction = e.getAttribute('${querySelector}');
|
||||
${removeAttributeString}
|
||||
if (!${querySelector.split(':')[1]}HydartionFunction) return;
|
||||
e.addEventListener('${eventListenerName}', () => {
|
||||
eval(${querySelector.split(':')[1]}HydartionFunction);
|
||||
});
|
||||
});`;
|
||||
return script;
|
||||
}
|
||||
|
||||
export async function renderSSRHydrationCode(template: string) {
|
||||
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-on:click')) {
|
||||
script += SSRHydrateElement('*[d-on:click]', 'click');
|
||||
}
|
||||
|
||||
if (template.includes('d-if')) {
|
||||
script += hydrateIfAttributes.toString() + 'hydrateIfAttributes();';
|
||||
}
|
||||
|
||||
if (template.includes('d-on:mouseDown')) {
|
||||
script += SSRHydrateElement('*[d-on:mouseDown]', 'mousedown');
|
||||
}
|
||||
|
||||
if (template.includes('d-on:mouseUp')) {
|
||||
script += SSRHydrateElement('*[d-on:mouseUp]', 'mouseup');
|
||||
}
|
||||
|
||||
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();\nconst appState = getAppState();';
|
||||
script += hydrateModelAttributes.toString() + 'hydrateModelAttributes(appState);';
|
||||
}
|
||||
|
||||
// check if there are links to prefetch
|
||||
if (template.includes('<a ') && template.includes('client:prefetch')) {
|
||||
script += `
|
||||
const anchorElms = document.querySelectorAll('a');
|
||||
const linkPrefetcher = await import('/src/lib/router/linkPrefetcher.ts');
|
||||
linkPrefetcher.default(anchorElms);`;
|
||||
}
|
||||
|
||||
if (template.includes('d-on:keydown.')) {
|
||||
script += hydrateKeyDown.toString() + 'hydrateKeyDown();';
|
||||
}
|
||||
|
||||
if (template.includes('d-on:pointerEnter')) {
|
||||
script += SSRHydrateElement('*[d-on:pointerEnter]', 'pointerenter');
|
||||
}
|
||||
|
||||
if (template.includes('d-on:pointerExit')) {
|
||||
script += SSRHydrateElement('*[d-on:pointerExit]', 'pointerleave');
|
||||
}
|
||||
|
||||
return script;
|
||||
}
|
||||
192
day42/src/lib/templateRenderer.ts
Normal file
192
day42/src/lib/templateRenderer.ts
Normal file
@@ -0,0 +1,192 @@
|
||||
export const compileToString = async (template: string) => {
|
||||
let styles = '';
|
||||
|
||||
const style = parseFromRegex(template, /<style[\s\S]*?>[\s\S]*?<\/style>/gi);
|
||||
|
||||
if (style) {
|
||||
style.map(async (styleData) => {
|
||||
if (!styleData) return;
|
||||
if (styleData.startsWith('<style') && styleData.endsWith('</style>')) {
|
||||
styles += styleData.split('<style')[1]?.split('>')[1]?.split('</style')[0];
|
||||
}
|
||||
|
||||
// remove the style from the body
|
||||
template = template.split('<style>' + styles + '</style>').join('');
|
||||
});
|
||||
}
|
||||
|
||||
let scriptInjection = '';
|
||||
let script = '';
|
||||
|
||||
const scriptContent = parseFromRegex(template, /<script>[\s\S]*?<\/script>/gi);
|
||||
|
||||
if (scriptContent) {
|
||||
scriptContent.map(async (scriptData) => {
|
||||
if (!scriptData) return;
|
||||
if (scriptData.startsWith('<script>') && scriptData.endsWith('</script>')) {
|
||||
// if (scriptData.includes('appState.contents.')) {
|
||||
// scriptInjection += 'const { getAppState, initAppState } = await import("/src/main.ts");\nasync initAppState();\nconst appState = getAppState();';
|
||||
// }
|
||||
|
||||
if (scriptData.includes('getCookie')) {
|
||||
scriptInjection += 'const { getCookie } = await import("/src/lib/cookieManager.ts");';
|
||||
}
|
||||
|
||||
if (scriptData.includes('setCookie')) {
|
||||
scriptInjection += 'const { setCookie } = await import("/src/lib/cookieManager.ts");';
|
||||
}
|
||||
|
||||
if (scriptData.includes('isSSR()')) {
|
||||
scriptInjection += 'const { isSSR } = await import("/src/main.ts");';
|
||||
}
|
||||
|
||||
script += scriptData.split('<script>')[1]?.split('</script>')[0];
|
||||
scriptInjection += 'document.addEventListener(\'router:client:load\', () => {\n' + script + '\n}, { once: true });';
|
||||
}
|
||||
|
||||
// remove the script from the body
|
||||
template = template.split('<script>' + script + '</script>').join('');
|
||||
script = '';
|
||||
});
|
||||
}
|
||||
|
||||
const scriptContentSetup = parseFromRegex(template, /<script setup[\s\S]*?>[\s\S]*?<\/script>/gi);
|
||||
let setupScript = '';
|
||||
if (scriptContentSetup) {
|
||||
scriptContentSetup.map(async (scriptData) => {
|
||||
if (!scriptData) return;
|
||||
if (scriptData.startsWith('<script setup') && scriptData.endsWith('</script>')) {
|
||||
// if (scriptData.includes('appState.contents.') && !scriptInjection.includes('initAppState')) {
|
||||
// scriptInjection = 'const { getAppState, initAppState } = await import("/src/main.ts"); //aaahahahahahahah' + scriptInjection;
|
||||
// }
|
||||
|
||||
if (scriptData.includes('getCookie')) {
|
||||
scriptInjection += 'const { getCookie } = await import("/src/lib/cookieManager.ts");';
|
||||
}
|
||||
|
||||
if (scriptData.includes('setCookie')) {
|
||||
scriptInjection += 'const { setCookie } = await import("/src/lib/cookieManager.ts");';
|
||||
}
|
||||
|
||||
if (scriptData.includes('isSSR()')) {
|
||||
scriptInjection += 'const { isSSR } = await import("/src/main.ts");';
|
||||
}
|
||||
|
||||
setupScript += scriptData.split('<script setup>')[1]?.split('</script>')[0];
|
||||
scriptInjection = scriptData.split('<script setup>')[1]?.split('</script>')[0] + scriptInjection;
|
||||
}
|
||||
|
||||
// remove the script from the body
|
||||
template = template.split('<script setup>' + setupScript + '</script>').join('');
|
||||
});
|
||||
}
|
||||
|
||||
let headInjection = '';
|
||||
let head = '';
|
||||
if (import.meta.env.SSR) {
|
||||
const headInjectionContent = parseFromRegex(template, /<devto:head[\s\S]*?>[\s\S]*?<\/devto:head>/gi);
|
||||
if (headInjectionContent) {
|
||||
headInjectionContent.map(async (headData) => {
|
||||
if (!headData) return;
|
||||
if (headData.startsWith('<devto:head>') && headData.endsWith('</devto:head>')) {
|
||||
const newHeadContent = headData.split('<devto:head>')[1]?.split('</devto:head>')[0];
|
||||
if (!newHeadContent) return;
|
||||
head = newHeadContent;
|
||||
const elements = newHeadContent.split('\n');
|
||||
elements.forEach((e, i, arr) => {
|
||||
if (!e.trim()) return;
|
||||
function isCompleteElement() {
|
||||
if (!e.endsWith('>')) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if (!isCompleteElement()) {
|
||||
arr[i] = '';
|
||||
arr[i + 1] = e + arr[i + 1];
|
||||
}
|
||||
if (!isCompleteElement()) return;
|
||||
headInjection += e;
|
||||
});
|
||||
}
|
||||
});
|
||||
template = template.split('<devto:head>' + head + '</devto:head>').join('');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (template.includes('getCookie') && !script.includes('getCookie')) {
|
||||
scriptInjection += 'const getCookie = await import("/src/lib/cookieManager.ts");';
|
||||
}
|
||||
|
||||
if (template.includes('setCookie') && !script.includes('setCookie')) {
|
||||
scriptInjection += 'const { setCookie } = await import("/src/lib/cookieManager.ts");';
|
||||
}
|
||||
|
||||
const ast: (string | undefined)[] = parseFromRegex(template, /{(.*?)}/g);
|
||||
let fnStr = '``';
|
||||
|
||||
if (!ast) return;
|
||||
|
||||
ast.map(async (t: string | undefined) => {
|
||||
if (!t) return;
|
||||
// checking to see if it is an interpolation
|
||||
if (t.startsWith('{') && t.endsWith('}')) {
|
||||
// TODO: rewrite comment
|
||||
const bracketVariable = t.split(/{|}/).filter(Boolean)[0]?.trim();
|
||||
if (!bracketVariable) return;
|
||||
const parentElement = fnStr.split(t)[0]?.split('>');
|
||||
if (!parentElement || !parentElement[parentElement.length - 2] || typeof parentElement[parentElement.length - 2] == 'undefined') return;
|
||||
const isRawHTML = parentElement[parentElement.length - 2]?.includes('d-html');
|
||||
if (bracketVariable.startsWith('appState.contents.')) {
|
||||
const uuid = bracketVariable.substring(bracketVariable.length, 18).split('').map((c: string) => c.charCodeAt(0).toString(16).padStart(2, '0')).join('');
|
||||
fnStr = fnStr.substring(0, fnStr.length - 1) + `<span data-token-${uuid}>\``;
|
||||
} else {
|
||||
fnStr = fnStr.substring(0, fnStr.length - 1) + '<span>`';
|
||||
}
|
||||
let runVar = `((${bracketVariable}).toString().replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>'))`;
|
||||
|
||||
if (isRawHTML) {
|
||||
runVar = `(${bracketVariable})`;
|
||||
}
|
||||
|
||||
fnStr += `+ (${runVar})` + '+`</span>`';
|
||||
} else {
|
||||
// append the string to the fnStr
|
||||
fnStr += `+\`${t}\``;
|
||||
}
|
||||
});
|
||||
|
||||
if (import.meta.env.VITE_VERBOSE && !import.meta.env.PROD && !import.meta.env.SSR) {
|
||||
console.groupCollapsed('Compiled tempalte to String');
|
||||
console.info('Template String: ' + fnStr);
|
||||
console.groupEnd();
|
||||
}
|
||||
|
||||
|
||||
return { fnStr, styles, script: scriptInjection, head: headInjection };
|
||||
};
|
||||
|
||||
const parseFromRegex = (template: string, regex: RegExp) => {
|
||||
let result = regex.exec(template);
|
||||
regex.lastIndex = 0;
|
||||
const arr = [];
|
||||
let firstPos;
|
||||
|
||||
while (result) {
|
||||
firstPos = result.index;
|
||||
if (firstPos !== 0) {
|
||||
arr.push(template.substring(0, firstPos));
|
||||
template = template.slice(firstPos);
|
||||
}
|
||||
|
||||
arr.push(result[0]);
|
||||
template = template.slice(result[0]?.length);
|
||||
result = regex.exec(template);
|
||||
regex.lastIndex = 0;
|
||||
}
|
||||
|
||||
if (template) arr.push(template);
|
||||
return arr;
|
||||
};
|
||||
38
day42/src/main.ts
Normal file
38
day42/src/main.ts
Normal file
@@ -0,0 +1,38 @@
|
||||
import { Reactive } from './lib/ReactiveObject';
|
||||
|
||||
export let appState: Reactive;
|
||||
|
||||
export async function initAppState() {
|
||||
const { getCookie } = await import('./lib/cookieManager');
|
||||
appState = new Reactive({
|
||||
count: 0,
|
||||
text: '',
|
||||
cookie: getCookie('username'),
|
||||
html: '',
|
||||
year: '',
|
||||
cookiedata: '',
|
||||
audioObj: {data: '', playing: false, time: 0},
|
||||
});
|
||||
}
|
||||
|
||||
export function resetAppState() {
|
||||
appState = new Reactive({});
|
||||
}
|
||||
|
||||
export function getAppState() {
|
||||
return appState;
|
||||
}
|
||||
|
||||
let SSR: boolean;
|
||||
|
||||
export function isSSR() {
|
||||
if (import.meta.env.SSR) return true;
|
||||
if (SSR !== undefined) return SSR;
|
||||
SSR = !!document.getElementById('app')?.getAttribute('data-server-rendered');
|
||||
return SSR;
|
||||
}
|
||||
|
||||
export function isHTML(tag: string) {
|
||||
const tags = ['a', 'abbr', 'acronym', 'address', 'applet', 'area', 'article', 'aside', 'audio', 'b', 'base', 'basefont', 'bdi', 'bdo', 'bgsound', 'big', 'blink', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'center', 'cite', 'code', 'col', 'colgroup', 'content', 'data', 'datalist', 'dd', 'decorator', 'del', 'details', 'devto:head', 'dfn', 'dir', 'div', 'dl', 'dt', 'element', 'em', 'embed', 'fieldset', 'figcaption', 'figure', 'font', 'footer', 'form', 'frame', 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'iframe', 'img', 'input', 'ins', 'isindex', 'kbd', 'keygen', 'label', 'legend', 'li', 'link', 'listing', 'main', 'map', 'mark', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'nobr', 'noframes', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'plaintext', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'shadow', 'slot', 'small', 'source', 'spacer', 'span', 'strike', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'video', 'wbr', 'xmp'];
|
||||
return tags.indexOf(tag.trim()) > -1;
|
||||
}
|
||||
17
day42/src/pages/index.devto
Normal file
17
day42/src/pages/index.devto
Normal file
@@ -0,0 +1,17 @@
|
||||
<devto:head>
|
||||
<title>special head</title>
|
||||
<meta name="description"
|
||||
content="realistic app description">
|
||||
</devto:head>
|
||||
|
||||
<div class="grid place-items-center p-3 content-center h-full">
|
||||
<div class="p-6 border-neutral-800 rounded-lg container__content border">
|
||||
<indexComponent />
|
||||
<div>
|
||||
<a href="/page2"
|
||||
client:prefetch>Navigate</a>
|
||||
<a href="/page3"
|
||||
client:prefetch>Navigate</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
6
day42/src/pages/music.devto
Normal file
6
day42/src/pages/music.devto
Normal file
@@ -0,0 +1,6 @@
|
||||
<div class="grid place-items-center p-3 content-center min-h-screen">
|
||||
<div class="p-6 border-neutral-800 rounded-lg container__content border">
|
||||
<MusicPlayer />
|
||||
<a client:prefetch>Home</a>
|
||||
</div>
|
||||
</div>
|
||||
7
day42/src/pages/nojavascript.devto
Normal file
7
day42/src/pages/nojavascript.devto
Normal file
@@ -0,0 +1,7 @@
|
||||
<div class="grid place-items-center p-3 content-center min-h-screen">
|
||||
<div class="p-6 border-neutral-800 rounded-lg container__content border">
|
||||
<h1 class="text-xl font-semibold">This page has no javascript!!</h1>
|
||||
<a href="/">Home</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
21
day42/src/pages/page2.devto
Normal file
21
day42/src/pages/page2.devto
Normal file
@@ -0,0 +1,21 @@
|
||||
<div class="grid place-items-center p-3 content-center min-h-screen">
|
||||
<div class="p-6 border-neutral-800 rounded-lg container__content border">
|
||||
<htmlInput />
|
||||
<myDad />
|
||||
<div>
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
{Math.floor(Math.random() * 50)}
|
||||
</div>
|
||||
<a href="/"
|
||||
client:prefetch>Home</a>
|
||||
</div>
|
||||
</div>
|
||||
12
day42/src/pages/page3.devto
Normal file
12
day42/src/pages/page3.devto
Normal file
@@ -0,0 +1,12 @@
|
||||
<div class="grid place-items-center p-3 content-center min-h-screen">
|
||||
<div class="p-6 border-neutral-800 rounded-lg container__content border">
|
||||
<cookieInput />
|
||||
<a href="/"
|
||||
client:prefetch>Home</a>
|
||||
<br/>
|
||||
<a href="/nojavascript"
|
||||
client:prefetch>No javascript</a>
|
||||
<br/>
|
||||
<a href="/music" client:prefetch>Music</a>
|
||||
</div>
|
||||
</div>
|
||||
21
day42/src/style.css
Normal file
21
day42/src/style.css
Normal file
@@ -0,0 +1,21 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
html,
|
||||
body {
|
||||
background-color: #101010;
|
||||
color: #FEFEFE;
|
||||
font-family: Helvetica, Arial, Sans-Serif;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.container__content {
|
||||
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
||||
}
|
||||
29
day42/tailwind.config.js
Normal file
29
day42/tailwind.config.js
Normal file
@@ -0,0 +1,29 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
|
||||
export default {
|
||||
content: [
|
||||
'./index.html',
|
||||
'./src/components/*.{devto,js,ts,jsx,tsx}',
|
||||
'./src/pages/*.{devto,js,ts,jsx,tsx}',
|
||||
'./src/layouts/*.{devto,js,ts,jsx,tsx}'
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
gray: {
|
||||
'50': '#fafafa',
|
||||
'100': '#f4f4f5',
|
||||
'200': '#e4e4e7',
|
||||
'300': '#d4d4d8',
|
||||
'400': '#a1a1aa',
|
||||
'500': '#71717a',
|
||||
'600': '#52525b',
|
||||
'700': '#3f3f46',
|
||||
'800': '#27272a',
|
||||
'900': '#18181b'
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
28
day42/tsconfig.json
Normal file
28
day42/tsconfig.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"alwaysStrict": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"checkJs": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"target": "ES2022",
|
||||
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
||||
"allowJs": true,
|
||||
"sourceMap": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"incremental": true,
|
||||
"jsx": "preserve",
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"baseUrl": ".",
|
||||
},
|
||||
"include": ["src/**/*", "types/*", "server.ts", "node_modules/vite/types/*", "next-env.d.ts"],
|
||||
}
|
||||
1
day42/tsconfig.tsbuildinfo
Normal file
1
day42/tsconfig.tsbuildinfo
Normal file
File diff suppressed because one or more lines are too long
11
day42/vite.config.ts
Normal file
11
day42/vite.config.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
/** @type {import('vite').UserConfig} */
|
||||
export default {
|
||||
build: {
|
||||
target: 'es2022',
|
||||
},
|
||||
|
||||
server: {
|
||||
port: 8080,
|
||||
host: '0.0.0.0'
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user