Compare commits

...

2 Commits

Author SHA1 Message Date
e0b6eab7cf chore: set to port 12001 2023-07-24 11:21:42 +09:00
d9ab67cd19 fix: encode url for percent encoding 2023-07-24 11:21:26 +09:00
3 changed files with 7 additions and 3 deletions

View File

@ -94,6 +94,7 @@ name: string}){
const parent = useRef<HTMLDivElement>(null); const parent = useRef<HTMLDivElement>(null);
useEffect(()=>{ useEffect(()=>{
(async ()=>{ (async ()=>{
console.log("animation mount on ",name);
const {default:autoAnimate} = await import("https://esm.sh/@formkit/auto-animate@0.7.0"); const {default:autoAnimate} = await import("https://esm.sh/@formkit/auto-animate@0.7.0");
parent.current && autoAnimate(parent.current) parent.current && autoAnimate(parent.current)
})(); })();
@ -170,7 +171,7 @@ function filterInfo(info: Coperation[], filterList: FilterInfoOption) {
export default function StockListUI(props: StockProps) { export default function StockListUI(props: StockProps) {
const sig = useAsync<[PageCorpsInfo, CorpSimple[], CorpSimple[]]>(async () => { const sig = useAsync<[PageCorpsInfo, CorpSimple[], CorpSimple[]]>(async () => {
const res = await Promise.all([ const res = await Promise.all([
fetch("/api/pages/" + props.pageName), fetch("/api/pages/" + encodeURIComponent(props.pageName)),
fetch("/api/kospi"), fetch("/api/kospi"),
fetch("/api/kosdaq"), fetch("/api/kosdaq"),
]); ]);

View File

@ -12,4 +12,7 @@ import manifest from "./fresh.gen.ts";
import twindPlugin from "$fresh/plugins/twind.ts"; import twindPlugin from "$fresh/plugins/twind.ts";
import twindConfig from "./twind.config.ts"; import twindConfig from "./twind.config.ts";
await start(manifest, { plugins: [twindPlugin(twindConfig)] }); await start(manifest, {
port: 12001,
plugins: [twindPlugin(twindConfig)]
});

View File

@ -33,7 +33,7 @@ export default function Home({data}: PageProps<PageDescription[]>) {
<ul> <ul>
{ {
data.map(x=><li class="my-2"> data.map(x=><li class="my-2">
<a class="p-2 block hover:bg-gray-300 bg-white rounded" href={`/pages/${x.name}`}> <a class="p-2 block hover:bg-gray-300 bg-white rounded" href={`/pages/${encodeURIComponent(x.name)}`}>
{x.name} {x.name}
</a> </a>
</li> </li>