mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-17 00:26:21 +00:00
38 lines
1.8 KiB
Svelte
38 lines
1.8 KiB
Svelte
<script>
|
|
import { settings } from '@/modules/settings.js'
|
|
import { click } from '@/modules/click.js'
|
|
import IPC from '@/modules/ipc.js'
|
|
let block = false
|
|
|
|
async function testConnection () {
|
|
try {
|
|
for (let i = 0; i < 2; ++i) {
|
|
// fetch twice, sometimes it will go tru once if ISP is shitty
|
|
await fetch($settings.toshoURL + 'json?show=torrent&id=1')
|
|
}
|
|
block = false
|
|
} catch (e) {
|
|
console.error(e)
|
|
block = true
|
|
}
|
|
}
|
|
testConnection()
|
|
</script>
|
|
|
|
{#if block}
|
|
<div class='w-full h-full left-0 z-50 px-10 position-absolute content-wrapper bg-dark d-flex align-items-center justify-content-center flex-column'>
|
|
<div>
|
|
<h1 class='font-weight-bold'>Could not connect to Torrent API!</h1>
|
|
<div class='font-size-16'>This happens either because the API is down, or because your ISP blocks the API, the latter being more likely.</div>
|
|
<div class='font-size-16'>Most features of Miru will not function correctly without being able to connect to an API.</div>
|
|
<div class='font-size-16'>If you enable a VPN a restart might be required for it to take effect.</div>
|
|
<!-- eslint-disable-next-line svelte/valid-compile -->
|
|
<div class='font-size-16'>Visit <a class='text-primary pointer' use:click={() => { IPC.emit('open', 'https://thewiki.moe/tutorials/unblock/') }}>this guide</a> for a tutorial on how to bypass ISP blocks.</div>
|
|
<div class='d-flex w-full mt-20 pt-20'>
|
|
<button class='btn ml-auto mr-5' type='button' use:click={() => { block = false }}>I Understand</button>
|
|
<button class='btn btn-primary mr-5' type='button' use:click={() => { IPC.emit('open', 'https://thewiki.moe/tutorials/unblock/') }}>Open Guide</button>
|
|
<button class='btn btn-primary' type='button' use:click={testConnection}>Reconnect</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|