Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 1x 1x 1x 1x 1x | import * as React from "react"
import { ENV, GITHUB_USERNAME } from "../settings/serverSettings"
import { webpackUrl } from "../site/webpackUtils"
export const IndexPage = (props: {
username: string
isSuperuser: boolean
gitCmsBranchName: string
}) => {
const script = `
window.isEditor = true
window.admin = new Admin({ username: "${
props.username
}", isSuperuser: ${props.isSuperuser.toString()}, settings: ${JSON.stringify(
{ ENV, GITHUB_USERNAME }
)}})
admin.start(document.querySelector("#app"), '${props.gitCmsBranchName}')
`
return (
<html lang="en">
<head>
<title>owid-admin</title>
<meta name="description" content="" />
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,700i|Playfair+Display:400,700&display=swap"
rel="stylesheet"
/>
<link
href={webpackUrl("commons.css", "/admin")}
rel="stylesheet"
type="text/css"
/>
<link
href={webpackUrl("admin.css", "/admin")}
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<div id="app"></div>
<script src={webpackUrl("commons.js", "/admin")}></script>
<script src={webpackUrl("vendors.js", "/admin")}></script>
<script src={webpackUrl("admin.js", "/admin")}></script>
<script
type="text/javascript"
dangerouslySetInnerHTML={{ __html: script }}
/>
{/* This lets the public frontend know to show edit links and such */}
<iframe
src="https://ourworldindata.org/identifyadmin"
style={{ display: "none" }}
/>
</body>
</html>
)
}
|