ditch vanilla solid

This commit is contained in:
Adam 2023-06-15 21:28:32 -04:00
parent d74addafa3
commit 155a5ac08f
17 changed files with 0 additions and 4538 deletions

24
solid_door/.gitignore vendored
View file

@ -1,24 +0,0 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

View file

@ -1,16 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>A place for my stuff.</title>
<!--app-head-->
</head>
<body>
<div id="root"><!--app-html--></div>
<script type="module" src="/src/entry-client.tsx"></script>
</body>
</html>

File diff suppressed because it is too large Load diff

View file

@ -1,26 +0,0 @@
{
"name": "doordesk",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "node server",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.tsx --outDir dist/server",
"preview": "cross-env NODE_ENV=production node server"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.18.2",
"sirv": "^2.0.2",
"solid-js": "^1.6.4"
},
"devDependencies": {
"@types/express": "^4.17.16",
"@types/node": "^18.11.12",
"cross-env": "^7.0.3",
"vite": "^4.0.4",
"vite-plugin-solid": "^2.5.0"
}
}

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,74 +0,0 @@
import fs from 'node:fs/promises'
import express from 'express'
import { generateHydrationScript } from 'solid-js/web'
// Constants
const isProduction = process.env.NODE_ENV === 'production'
const port = process.env.PORT || 5173
const base = process.env.BASE || '/'
// Cached production assets
const templateHtml = isProduction
? await fs.readFile('./dist/client/index.html', 'utf-8')
: ''
const ssrManifest = isProduction
? await fs.readFile('./dist/client/ssr-manifest.json', 'utf-8')
: undefined
// Create http server
const app = express()
// Add Vite or respective production middlewares
let vite
if (!isProduction) {
const { createServer } = await import('vite')
vite = await createServer({
server: { middlewareMode: true },
appType: 'custom',
base
})
app.use(vite.middlewares)
} else {
const compression = (await import('compression')).default
const sirv = (await import('sirv')).default
app.use(compression())
app.use(base, sirv('./dist/client', { extensions: [] }))
}
// Serve HTML
app.use('*', async (req, res) => {
try {
const url = req.originalUrl.replace(base, '')
let template
let render
if (!isProduction) {
// Always read fresh template in development
template = await fs.readFile('./index.html', 'utf-8')
template = await vite.transformIndexHtml(url, template)
render = (await vite.ssrLoadModule('/src/entry-server.tsx')).render
} else {
template = templateHtml
render = (await import('./dist/server/entry-server.js')).render
}
const rendered = await render(url, ssrManifest)
const head = (rendered.head ?? '') + generateHydrationScript()
const html = template
.replace(`<!--app-head-->`, head)
.replace(`<!--app-html-->`, rendered.html ?? '')
res.status(200).set({ 'Content-Type': 'text/html' }).end(html)
} catch (e) {
vite?.ssrFixStacktrace(e)
console.log(e.stack)
res.status(500).end(e.stack)
}
})
// Start http server
app.listen(port, () => {
console.log(`Server started at http://localhost:${port}`)
})

View file

@ -1,47 +0,0 @@
#root {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
.tab {
padding: 25px;
font-family: sans-serif;
min-height: 400px;
}
.pending {
transition: color .3s;
transition-delay: .1s;
transition-timing-function: ease-in;
}
ul.inline {
list-style: none;
padding: 0;
margin-bottom: 0;
-webkit-margin-before: 0;
-webkit-margin-after: 0;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
-webkit-padding-start: 0px;
}
ui.inline li {
display: inline-block;
margin-left: 0;
padding: 10px;
border-bottom: 2px solid #eee;
transition: all .5s;
font-family: sans-serif;
font-weight: 300;
cursor: pointer;
color: #aaa;
}
ul.inline li.selected {
border-bottom: 2px solid #337ab7;
color: #444;
}
.loader {
color: #aaa;
font-size: 16px;
font-weight: 600;
width: 80px;
}

View file

@ -1,63 +0,0 @@
import { createSignal, Index, Suspense, Switch, Match, useTransition } from 'solid-js';
import Child from "./Child";
import './App.css'
function App() {
const [posts, setPosts] = createSignal([
{ title: 'post1', date: 'date1', body: 'body1' },
{ title: 'post2', date: 'date2', body: 'body2' },
{ title: 'post3', date: 'date3', body: 'body3' },
]);
const [tab, setTab] = createSignal(0);
const [pending, start] = useTransition();
const updateTab = (index) => () => start(() => setTab(index));
return (
<>
DD - doordesk
<ul class="inline">
<li classList={{ selected: tab() === 0 }} onClick={updateTab(0)}>
Home
</li>
<li classList={{ selected: tab() === 1 }} onClick={updateTab(1)}>
Blog
</li>
<li classList={{ selected: tab() === 2 }} onClick={updateTab(2)}>
Projects
</li>
<li classList={{ selected: tab() === 3 }} onClick={updateTab(3)}>
Games
</li>
<li classList={{ selected: tab() === 4 }} onClick={updateTab(4)}>
Cartman
</li>
</ul>
<div class="tab" classList={{ pending: pending() }}>
<Suspense fallback={<div class="loader">Loading...</div>}>
<Switch>
<Match when={tab() === 0}>
<Child page="Home" />
</Match>
<Match when={tab() === 1}>
<Child page="Blog" />
</Match>
<Match when={tab() === 2}>
<Child page="Projects" />
</Match>
<Match when={tab() === 3}>
<Child page="Games" />
</Match>
<Match when={tab() === 4}>
<Child page="Cartman" />
</Match>
</Switch>
</Suspense>
</div >
do routing
</>
);
};
export default App

View file

@ -1,29 +0,0 @@
import { createResource } from "solid-js";
const CONTENT = {
Home: `Mix of other content sorted by date descending`,
Blog: `Blog posts sorted by date descending`,
Projects: `Project write-ups sorted by date descending`,
Games: `Games page`,
Cartman: `Cartman`,
};
function createDelay() {
return new Promise((resolve) => {
const delay = Math.random() * 420 + 69;
setTimeout(() => resolve(delay), delay);
});
};
const Child = (props) => {
const [time] = createResource(createDelay);
return (
<div class="tab-content">
Content for page "{props.page}" after {time()?.toFixed()}ms.
<p>{CONTENT[props.page]}</p>
</div>
);
};
export default Child;

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 166 155.3"><path d="M163 35S110-4 69 5l-3 1c-6 2-11 5-14 9l-2 3-15 26 26 5c11 7 25 10 38 7l46 9 18-30z" fill="#76b3e1"/><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="27.5" y1="3" x2="152" y2="63.5"><stop offset=".1" stop-color="#76b3e1"/><stop offset=".3" stop-color="#dcf2fd"/><stop offset="1" stop-color="#76b3e1"/></linearGradient><path d="M163 35S110-4 69 5l-3 1c-6 2-11 5-14 9l-2 3-15 26 26 5c11 7 25 10 38 7l46 9 18-30z" opacity=".3" fill="url(#a)"/><path d="M52 35l-4 1c-17 5-22 21-13 35 10 13 31 20 48 15l62-21S92 26 52 35z" fill="#518ac8"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="95.8" y1="32.6" x2="74" y2="105.2"><stop offset="0" stop-color="#76b3e1"/><stop offset=".5" stop-color="#4377bb"/><stop offset="1" stop-color="#1f3b77"/></linearGradient><path d="M52 35l-4 1c-17 5-22 21-13 35 10 13 31 20 48 15l62-21S92 26 52 35z" opacity=".3" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="18.4" y1="64.2" x2="144.3" y2="149.8"><stop offset="0" stop-color="#315aa9"/><stop offset=".5" stop-color="#518ac8"/><stop offset="1" stop-color="#315aa9"/></linearGradient><path d="M134 80a45 45 0 00-48-15L24 85 4 120l112 19 20-36c4-7 3-15-2-23z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="75.2" y1="74.5" x2="24.4" y2="260.8"><stop offset="0" stop-color="#4377bb"/><stop offset=".5" stop-color="#1a336b"/><stop offset="1" stop-color="#1a336b"/></linearGradient><path d="M114 115a45 45 0 00-48-15L4 120s53 40 94 30l3-1c17-5 23-21 13-34z" fill="url(#d)"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,6 +0,0 @@
/* @refresh reload */
import './index.css'
import { hydrate } from 'solid-js/web'
import App from './App'
hydrate(() => <App />, document.getElementById('root') as HTMLElement)

View file

@ -1,7 +0,0 @@
import { renderToString } from 'solid-js/web'
import App from './App'
export function render() {
const html = renderToString(() => <App />)
return { html }
}

View file

@ -1,69 +0,0 @@
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}
body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-height: 100vh;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
}
button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
background-color: #1a1a1a;
cursor: pointer;
transition: border-color 0.25s;
}
button:hover {
border-color: #646cff;
}
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #747bff;
}
button {
background-color: #f9f9f9;
}
}

View file

@ -1 +0,0 @@
/// <reference types="vite/client" />

View file

@ -1,22 +0,0 @@
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"jsxImportSource": "solid-js"
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}

View file

@ -1,14 +0,0 @@
{
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"jsx": "preserve"
},
"include": [
"vite.config.ts",
"src/entry-server.tsx",
"src/vite-env.d.ts"
]
}

View file

@ -1,7 +0,0 @@
import { defineConfig } from 'vite'
import solid from 'vite-plugin-solid'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [solid({ ssr: true })]
})