#3 issue/ssr-simple #5
@ -3,14 +3,15 @@
|
||||
"deno.window", "DOM"
|
||||
]},
|
||||
"imports": {
|
||||
"react-original": "https://esm.sh/react@18.2.0",
|
||||
"react": "https://esm.sh/react@18.2.0",
|
||||
"react-original": "https://esm.sh/preact@10.13.2/compat",
|
||||
"react": "https://esm.sh/preact@10.13.2/compat",
|
||||
"@eno/app": "./dummy-app.tsx"
|
||||
},
|
||||
"tasks":
|
||||
{
|
||||
"install": "deno install -f -A --unstable --no-lock -n eno server.tsx",
|
||||
"run": "deno run -A --unstable --no-lock server.tsx",
|
||||
"complete": "deno run -A --unstable https://deno.land/std@0.181.0/http/file_server.ts & cd example && pwd && deno task dev",
|
||||
"host": "deno run -A --unstable https://deno.land/std@0.181.0/http/file_server.ts"
|
||||
}
|
||||
}
|
11
example/app.tsx
Normal file
11
example/app.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import React from "react";
|
||||
import Component from "./deep/component.tsx";
|
||||
|
||||
export default ()=>{
|
||||
const [countGet, countSet] = React.useState(1);
|
||||
return <div class="p-4 font-sans">
|
||||
<h1 class="my-2 font(bold serif) text(2xl)">Title!!</h1>
|
||||
<h2>subtitle</h2>
|
||||
<Component/>
|
||||
</div>;
|
||||
};
|
9
example/deep/component.tsx
Normal file
9
example/deep/component.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import React from "react";
|
||||
|
||||
export default ()=>
|
||||
{
|
||||
const [countGet, countSet] = React.useState(1);
|
||||
return <div class="p-4 text-red-500">
|
||||
Component!!!
|
||||
</div>;
|
||||
};
|
11
example/deno.json
Normal file
11
example/deno.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"imports":
|
||||
{
|
||||
"react": "https://esm.sh/preact@10.13.2/compat",
|
||||
"@deep/": "./deep/",
|
||||
"@eno/app": "./app.tsx"
|
||||
},
|
||||
"tasks": {
|
||||
"dev": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock --config=deno.json http://localhost:4507/server.tsx"
|
||||
}
|
||||
}
|
@ -73,4 +73,5 @@ const ProxyState =(arg)=>
|
||||
|
||||
export * from "react-original";
|
||||
export { ProxyCreate as createElement, ProxyState as useState };
|
||||
export default {...ReactParts.default, createElement:ProxyCreate, useState:ProxyState};
|
||||
export const isProxy = true;
|
||||
export default {...ReactParts.default, createElement:ProxyCreate, useState:ProxyState, isProxy:true};
|
70
server.tsx
70
server.tsx
@ -1,6 +1,8 @@
|
||||
import * as ESBuild from 'https://deno.land/x/esbuild@v0.14.45/mod.js';
|
||||
import * as MIME from "https://deno.land/std@0.180.0/media_types/mod.ts";
|
||||
import { debounce } from "https://deno.land/std@0.151.0/async/debounce.ts";
|
||||
import SSR from "https://esm.sh/v113/preact-render-to-string@6.0.2/deno/preact-render-to-string.mjs";
|
||||
import React, {createElement as h} from "react";
|
||||
|
||||
const Transpiled = new Map();
|
||||
const Transpileable =(inFilePath:string):boolean=>
|
||||
@ -124,38 +126,8 @@ catch(e)
|
||||
{
|
||||
console.log(`deno.json not found`);
|
||||
}
|
||||
const Index = `
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script type="importmap">${JSON.stringify(ImportObject)}</script>
|
||||
<script async src="https://ga.jspm.io/npm:es-module-shims@1.5.1/dist/es-module-shims.js" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">Loading</div>
|
||||
<script type="module">
|
||||
import * as TW from "https://esm.sh/@twind/core@1.0.1";
|
||||
import TWPreTail from "https://esm.sh/@twind/preset-tailwind@1.0.1";
|
||||
import TWPreAuto from "https://esm.sh/@twind/preset-autoprefix@1.0.1";
|
||||
|
||||
const Configure = {presets: [TWPreTail(), TWPreAuto()]};
|
||||
const ShadowDOM = document.querySelector("#app").attachShadow({mode: "open"});
|
||||
const ShadowDiv = document.createElement("div");
|
||||
const ShadowCSS = document.createElement("style");
|
||||
ShadowDOM.append(ShadowCSS);
|
||||
ShadowDOM.append(ShadowDiv);
|
||||
|
||||
TW.observe(TW.twind(Configure, TW.cssom(ShadowCSS)), ShadowDiv);
|
||||
|
||||
import App from "@eno/app";
|
||||
import {render, createElement as H} from "react";
|
||||
render(H(()=>H(App)), ShadowDiv);
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
`;
|
||||
const App = await import("@eno/app");
|
||||
|
||||
Deno.serve({ port: 3000 }, async(_req:Request) =>
|
||||
{
|
||||
@ -193,7 +165,7 @@ Deno.serve({ port: 3000 }, async(_req:Request) =>
|
||||
{
|
||||
// serve index by default
|
||||
let type = `text/html`;
|
||||
let body:BodyInit = Index;
|
||||
let body:BodyInit = ``;
|
||||
|
||||
const isLib = url.pathname.startsWith(`/${LibPath}/`)
|
||||
|
||||
@ -246,6 +218,40 @@ FileListen("${url.pathname}", reloadHandler);`;
|
||||
body = await Deno.readFile(fsPath);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
type = `text/html`;
|
||||
body = `<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script type="importmap">${JSON.stringify(ImportObject)}</script>
|
||||
<script async src="https://ga.jspm.io/npm:es-module-shims@1.5.1/dist/es-module-shims.js" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">${SSR(<App.default/>)}</div>
|
||||
<script type="module">
|
||||
import * as TW from "https://esm.sh/@twind/core@1.0.1";
|
||||
import TWPreTail from "https://esm.sh/@twind/preset-tailwind@1.0.1";
|
||||
import TWPreAuto from "https://esm.sh/@twind/preset-autoprefix@1.0.1";
|
||||
|
||||
const Configure = {presets: [TWPreTail(), TWPreAuto()]};
|
||||
const ShadowDOM = document.querySelector("#app").attachShadow({mode: "open"});
|
||||
const ShadowDiv = document.createElement("div");
|
||||
const ShadowCSS = document.createElement("style");
|
||||
ShadowDOM.append(ShadowCSS);
|
||||
ShadowDOM.append(ShadowDiv);
|
||||
|
||||
TW.observe(TW.twind(Configure, TW.cssom(ShadowCSS)), ShadowDiv);
|
||||
|
||||
import App from "@eno/app";
|
||||
import {render, createElement as H} from "react";
|
||||
render(H(()=>H(App)), ShadowDiv);
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>`;
|
||||
}
|
||||
|
||||
return new Response(body, {headers:{"content-type":type as string}});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user