2024-08-06 19:35:52 +00:00
|
|
|
{{define "view"}}
|
|
|
|
<main class="flex flex-col items-center justify-center p-8">
|
2024-08-07 21:24:38 +00:00
|
|
|
<div class="mb-4">{{.Title}}</div>
|
2024-08-06 19:35:52 +00:00
|
|
|
<div
|
|
|
|
class="container flex justify-center p-4 border-2 border-gray-600 border-solid rounded-md w-fit"
|
|
|
|
>
|
|
|
|
<form
|
|
|
|
id="import-form"
|
|
|
|
hx-post="/import-results"
|
|
|
|
hx-target="#result"
|
|
|
|
hx-indicator="#spinner"
|
|
|
|
>
|
2024-08-07 21:24:38 +00:00
|
|
|
<div class="content-right">
|
|
|
|
<div>
|
|
|
|
<label for="pubkey">Pubkey:</label>
|
|
|
|
<input
|
|
|
|
class="p-2 m-2 text-black rounded-md"
|
|
|
|
type="text"
|
|
|
|
id="pubkey"
|
|
|
|
name="pubkey"
|
|
|
|
required
|
|
|
|
maxlength="64"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="relayUrls">Relay URLs (comma separated):</label>
|
|
|
|
<input
|
|
|
|
class="p-2 m-2 text-black rounded-md"
|
|
|
|
type="text"
|
|
|
|
id="relayUrls"
|
|
|
|
name="relayUrls"
|
|
|
|
required
|
|
|
|
/>
|
|
|
|
</div>
|
2024-08-06 19:35:52 +00:00
|
|
|
</div>
|
|
|
|
<button
|
|
|
|
class="p-2 m-2 font-bold bg-green-500 rounded-md font-xl"
|
|
|
|
type="submit"
|
|
|
|
>
|
|
|
|
Import Events
|
|
|
|
</button>
|
2024-08-07 21:24:38 +00:00
|
|
|
<div class="font-bold text-md">
|
|
|
|
⚠️ This Feature is Experimental<br />
|
|
|
|
If you are whitelisted, this SHOULD capture all of your events<br />
|
|
|
|
Please Be Patient. Imports can take quite some time due to Rate Limits
|
|
|
|
</div>
|
2024-08-06 19:35:52 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2024-08-07 21:24:38 +00:00
|
|
|
<div
|
|
|
|
id="spinner"
|
|
|
|
class="m-4 text-lg font-bold text-center spinner"
|
|
|
|
style="display: none"
|
|
|
|
></div>
|
2024-08-06 19:35:52 +00:00
|
|
|
<div id="result" class="p-2 m-2 text-xl font-bold"></div>
|
|
|
|
<button
|
|
|
|
hx-get="/"
|
|
|
|
hx-swap="outerHTML"
|
|
|
|
hx-target="body"
|
|
|
|
class="p-2 m-2 text-white bg-blue-400 rounded-md"
|
|
|
|
>
|
|
|
|
Return to Dashboard
|
|
|
|
</button>
|
2024-08-07 15:36:24 +00:00
|
|
|
<script>
|
|
|
|
document
|
|
|
|
.getElementById("import-form")
|
|
|
|
.addEventListener("submit", function () {
|
|
|
|
document.getElementById("spinner").style.display = "block";
|
|
|
|
});
|
|
|
|
|
2024-08-07 15:54:26 +00:00
|
|
|
document.addEventListener("htmx:afterRequest", function () {
|
|
|
|
document.getElementById("spinner").style.display = "none";
|
|
|
|
});
|
|
|
|
|
|
|
|
document.addEventListener("htmx:requestError", function () {
|
|
|
|
document.getElementById("spinner").style.display = "none";
|
|
|
|
});
|
2024-08-07 15:36:24 +00:00
|
|
|
</script>
|
2024-08-06 19:35:52 +00:00
|
|
|
</main>
|
|
|
|
{{end}}
|