2022-02-18 00:34:11 +00:00
|
|
|
import { sanitizeHtml } from './sanitizer'
|
|
|
|
import { ParsedRequest } from './types'
|
2022-01-07 20:07:38 +00:00
|
|
|
|
|
|
|
function getCss(theme: string, fontSize: string) {
|
2022-02-18 00:34:11 +00:00
|
|
|
let background = 'white'
|
|
|
|
let foreground = 'black'
|
|
|
|
let radial = 'lightgray'
|
|
|
|
|
|
|
|
if (theme === 'dark') {
|
|
|
|
background = 'black'
|
|
|
|
foreground = 'white'
|
|
|
|
radial = 'dimgray'
|
2022-01-07 20:07:38 +00:00
|
|
|
}
|
|
|
|
// To use Readex Pro: `font-family: 'Readex Pro', sans-serif;`
|
|
|
|
return `
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Readex+Pro:wght@400;700&display=swap');
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: ${background};
|
|
|
|
background-image: radial-gradient(circle at 25px 25px, ${radial} 2%, transparent 0%), radial-gradient(circle at 75px 75px, ${radial} 2%, transparent 0%);
|
|
|
|
background-size: 100px 100px;
|
|
|
|
height: 100vh;
|
2022-01-10 05:50:31 +00:00
|
|
|
font-family: "Readex Pro", sans-serif;
|
2022-01-07 20:07:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
color: #D400FF;
|
|
|
|
font-family: 'Vera';
|
|
|
|
white-space: pre-wrap;
|
|
|
|
letter-spacing: -5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
code:before, code:after {
|
|
|
|
content: '\`';
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-wrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
|
|
|
justify-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
margin: 0 75px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plus {
|
|
|
|
color: #BBB;
|
|
|
|
font-family: Times New Roman, Verdana;
|
|
|
|
font-size: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
margin: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji {
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
margin: 0 .05em 0 .1em;
|
|
|
|
vertical-align: -0.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading {
|
|
|
|
font-family: 'Major Mono Display', monospace;
|
|
|
|
font-size: ${sanitizeHtml(fontSize)};
|
|
|
|
font-style: normal;
|
|
|
|
color: ${foreground};
|
|
|
|
line-height: 1.8;
|
2022-01-10 05:50:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.font-major-mono {
|
|
|
|
font-family: "Major Mono Display", monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-primary {
|
|
|
|
color: #11b981;
|
|
|
|
}
|
2022-02-18 00:34:11 +00:00
|
|
|
`
|
2022-01-07 20:07:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getHtml(parsedReq: ParsedRequest) {
|
2022-01-10 05:50:31 +00:00
|
|
|
const {
|
|
|
|
theme,
|
|
|
|
fontSize,
|
|
|
|
question,
|
|
|
|
probability,
|
|
|
|
metadata,
|
|
|
|
creatorName,
|
|
|
|
creatorUsername,
|
|
|
|
creatorAvatarUrl,
|
2022-02-18 00:34:11 +00:00
|
|
|
} = parsedReq
|
2022-04-29 23:38:31 +00:00
|
|
|
const MAX_QUESTION_CHARS = 100
|
2022-05-03 20:38:40 +00:00
|
|
|
const truncatedQuestion =
|
|
|
|
question.length > MAX_QUESTION_CHARS
|
2022-04-29 23:38:31 +00:00
|
|
|
? question.slice(0, MAX_QUESTION_CHARS) + '...'
|
|
|
|
: question
|
2022-02-18 00:34:11 +00:00
|
|
|
const hideAvatar = creatorAvatarUrl ? '' : 'hidden'
|
2022-01-07 20:07:38 +00:00
|
|
|
return `<!DOCTYPE html>
|
|
|
|
<html>
|
2022-01-10 05:50:31 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Generated Image</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
</head>
|
2022-01-07 20:07:38 +00:00
|
|
|
<style>
|
|
|
|
${getCss(theme, fontSize)}
|
|
|
|
</style>
|
2022-01-10 05:50:31 +00:00
|
|
|
<body>
|
|
|
|
<div class="px-24">
|
|
|
|
<!-- Profile image -->
|
|
|
|
<div class="absolute left-24 top-8">
|
|
|
|
<div class="flex flex-row align-bottom gap-6">
|
|
|
|
<img
|
2022-01-10 07:05:24 +00:00
|
|
|
class="h-24 w-24 rounded-full bg-white flex items-center justify-center ${hideAvatar}"
|
2022-01-10 05:50:31 +00:00
|
|
|
src="${creatorAvatarUrl}"
|
|
|
|
alt=""
|
|
|
|
/>
|
2022-01-10 07:05:24 +00:00
|
|
|
<div class="flex flex-col gap-2">
|
2022-01-10 05:50:31 +00:00
|
|
|
<p class="text-gray-900 text-3xl">${creatorName}</p>
|
|
|
|
<p class="text-gray-500 text-3xl">@${creatorUsername}</p>
|
|
|
|
</div>
|
2022-01-07 20:07:38 +00:00
|
|
|
</div>
|
2022-01-10 05:50:31 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Mantic logo -->
|
|
|
|
<div class="absolute right-24 top-8">
|
|
|
|
<a class="flex flex-row gap-3" href="/"
|
|
|
|
><img
|
|
|
|
class="sm:h-12 sm:w-12"
|
|
|
|
src="https://manifold.markets/logo.png"
|
|
|
|
width="40"
|
|
|
|
height="40"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
class="hidden sm:flex font-major-mono lowercase mt-1 sm:text-3xl md:whitespace-nowrap"
|
|
|
|
>
|
|
|
|
Manifold Markets
|
|
|
|
</div></a
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-row justify-between gap-12 pt-36">
|
2022-01-10 07:05:24 +00:00
|
|
|
<div class="text-indigo-700 text-6xl leading-tight">
|
2022-04-29 23:38:31 +00:00
|
|
|
${truncatedQuestion}
|
2022-01-10 05:50:31 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col text-primary">
|
2022-01-10 07:05:24 +00:00
|
|
|
<div class="text-8xl">${probability}</div>
|
2022-02-18 00:34:11 +00:00
|
|
|
<div class="text-4xl">${probability !== '' ? 'chance' : ''}</div>
|
2022-01-10 05:50:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-07 20:07:38 +00:00
|
|
|
|
2022-01-10 05:50:31 +00:00
|
|
|
<!-- Metadata -->
|
|
|
|
<div class="absolute bottom-16">
|
|
|
|
<div class="text-gray-500 text-3xl">
|
|
|
|
${metadata}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
2022-02-18 00:34:11 +00:00
|
|
|
</html>`
|
2022-01-07 20:07:38 +00:00
|
|
|
}
|