prettier/website/pages/playground-redirect.html

37 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Redirecting…</title>
</head>
<body>
<h1>Redirecting…</h1>
<p>
Redirecting you to the appropriate playground. If the redirect doesnt
work, <a href="javascript:history.back()">go back to the PR</a> and click
the appropriate link:<br />
<img
src="https://cdn.netlify.com/f0b93f3003d5669924b6e73540bbfe07bc3d8d95/34c5d/img/blog/deploy-preview-workflow.gif"
alt="click on the link next to 'deploy/netlify'"
/>
</p>
<script>
const match = /^https:\/\/github\.com\/prettier\/prettier\/pull\/(\d+)/.exec(
document.referrer
);
if (match != null) {
const [, /* url */ pr] = match;
location.replace(
`https://deploy-preview-${pr}--prettier.netlify.com/playground`
);
} else {
const el = document.createElement("p");
el.textContent = `The referrer URL (${
document.referrer
}) was not recognized. Sorry :(`;
document.body.appendChild(el);
}
</script>
</body>
</html>