feat(one_shot): some deno and lucid stuff
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
import { PageProps } from "$fresh/server.ts";
|
||||
|
||||
export default function Greet(props: PageProps) {
|
||||
return <div>Hello {props.params.name}</div>;
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
import { HandlerContext } from "$fresh/server.ts";
|
||||
|
||||
// Jokes courtesy of https://punsandoneliners.com/randomness/programmer-jokes/
|
||||
const JOKES = [
|
||||
"Why do Java developers often wear glasses? They can't C#.",
|
||||
"A SQL query walks into a bar, goes up to two tables and says “can I join you?”",
|
||||
"Wasn't hard to crack Forrest Gump's password. 1forrest1.",
|
||||
"I love pressing the F5 key. It's refreshing.",
|
||||
"Called IT support and a chap from Australia came to fix my network connection. I asked “Do you come from a LAN down under?”",
|
||||
"There are 10 types of people in the world. Those who understand binary and those who don't.",
|
||||
"Why are assembly programmers often wet? They work below C level.",
|
||||
"My favourite computer based band is the Black IPs.",
|
||||
"What programme do you use to predict the music tastes of former US presidential candidates? An Al Gore Rhythm.",
|
||||
"An SEO expert walked into a bar, pub, inn, tavern, hostelry, public house.",
|
||||
];
|
||||
|
||||
export const handler = (_req: Request, _ctx: HandlerContext): Response => {
|
||||
const randomIndex = Math.floor(Math.random() * JOKES.length);
|
||||
const body = JOKES[randomIndex];
|
||||
return new Response(body);
|
||||
};
|
||||
@@ -1,23 +1,49 @@
|
||||
import { Head } from "$fresh/runtime.ts";
|
||||
import Counter from "~/islands/Counter.tsx";
|
||||
import { Handlers, PageProps } from "$fresh/server.ts";
|
||||
|
||||
import App from "~/islands/App.tsx";
|
||||
|
||||
import { readValidators, Validators } from "~/utils.ts";
|
||||
|
||||
interface Data {
|
||||
validators: Validators;
|
||||
}
|
||||
|
||||
export const handler: Handlers<Data> = {
|
||||
async GET(_req, ctx) {
|
||||
const validators = await readValidators();
|
||||
|
||||
return ctx.render({ validators });
|
||||
},
|
||||
};
|
||||
|
||||
export default function Home({ data }: PageProps<Data>) {
|
||||
const { validators } = data;
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>One Shot</title>
|
||||
</Head>
|
||||
<div class="p-4 mx-auto max-w-screen-md">
|
||||
<img
|
||||
src="/logo.svg"
|
||||
class="w-32 h-32"
|
||||
alt="the fresh logo: a sliced lemon dripping with juice"
|
||||
/>
|
||||
<p class="my-6">
|
||||
Welcome to `fresh`. Try updating this message in the
|
||||
./routes/index.tsx file, and refresh.
|
||||
</p>
|
||||
<Counter start={3} />
|
||||
|
||||
<div class="max-w-2xl mx-auto mt-20 mb-10">
|
||||
<div class="mb-10">
|
||||
<h2 class="text-lg font-semibold text-gray-900">
|
||||
Make a one shot minting and lock contract
|
||||
</h2>
|
||||
|
||||
<h3 class="mt-4 mb-2">Lock</h3>
|
||||
<pre class="bg-gray-200 p-2 rounded overflow-x-scroll">
|
||||
{validators.lock.script}
|
||||
</pre>
|
||||
|
||||
<h3 class="mt-4 mb-2">Mint</h3>
|
||||
<pre class="bg-gray-200 p-2 rounded overflow-x-scroll">
|
||||
{validators.mint.script}
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<App validators={validators} />
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user