mirror of
https://github.com/MercuryWorkshop/adrift.git
synced 2025-05-13 14:20:01 -04:00
161 lines
4 KiB
Svelte
161 lines
4 KiB
Svelte
<script lang="ts">
|
|
import { BareClient } from "bare-client-custom";
|
|
import { Win, openWindow } from "../../corium";
|
|
import Icon from "@iconify/svelte";
|
|
|
|
let selectedProxy = "ultraviolet";
|
|
|
|
let url: string = "http://google.com";
|
|
import { onMount } from "svelte";
|
|
import {
|
|
Dialog,
|
|
SegmentedButtonContainer,
|
|
SegmentedButtonItem,
|
|
TextField,
|
|
} from "m3-svelte";
|
|
|
|
let proxyIframe: HTMLIFrameElement;
|
|
|
|
let settingsenabled: boolean = false;
|
|
|
|
let searchengine = "https://google.com/search?q=";
|
|
|
|
function frameLoad() {
|
|
if (!import.meta.env.VITE_ADRIFT_SINGLEFILE) {
|
|
const location = proxyIframe.contentDocument?.location.href;
|
|
if (location && location != "about:blank") {
|
|
url = __uv$config.decodeUrl(
|
|
proxyIframe.contentDocument?.location.href.replace(/.*\//g, "")
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
function visitURL(url: string) {
|
|
if (!url.includes("://")) {
|
|
url = searchengine + url;
|
|
}
|
|
|
|
if (!import.meta.env.VITE_ADRIFT_SINGLEFILE) {
|
|
let path =
|
|
selectedProxy == "dynamic"
|
|
? `/service/route?url=${url}`
|
|
: `${__uv$config.prefix}${__uv$config.encodeUrl(url)}`;
|
|
|
|
proxyIframe.src = path;
|
|
} else {
|
|
let bare = new BareClient();
|
|
openWindow(
|
|
new Request(url),
|
|
"_self",
|
|
proxyIframe.contentWindow! as unknown as Win,
|
|
bare as any,
|
|
"replace"
|
|
);
|
|
}
|
|
}
|
|
onMount(() => {
|
|
visitURL(url);
|
|
});
|
|
</script>
|
|
|
|
<div class="h-full w-full flex flex-col">
|
|
<div class="flex p-2">
|
|
<div class="flex text-xl items-center w-full">
|
|
<button
|
|
on:click={() => {
|
|
proxyIframe.contentWindow?.history.back();
|
|
}}
|
|
>
|
|
<Icon icon="fluent-mdl2:back" />
|
|
</button>
|
|
<div class="p-2" />
|
|
<button
|
|
on:click={() => {
|
|
proxyIframe.contentWindow?.history.forward();
|
|
}}
|
|
>
|
|
<Icon icon="fluent-mdl2:forward" />
|
|
</button>
|
|
<button
|
|
class="text-2xl px-4"
|
|
on:click={() => {
|
|
visitURL(url);
|
|
}}
|
|
>
|
|
<Icon icon="tabler:reload" />
|
|
</button>
|
|
<div class="urlbar flex items-center flex-1">
|
|
<button
|
|
class="text-2xl px-2"
|
|
on:click={() => {
|
|
visitURL(url);
|
|
}}
|
|
>
|
|
<Icon icon="ic:round-search" />
|
|
</button>
|
|
<input
|
|
bind:value={url}
|
|
type="text"
|
|
class="flex-1"
|
|
on:keydown={(e) => {
|
|
if (e.key === "Enter") {
|
|
visitURL(url);
|
|
}
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<button class="text-2xl pl-3" on:click={() => (settingsenabled = true)}>
|
|
<Icon icon="ic:round-settings" />
|
|
</button>
|
|
</div>
|
|
<Dialog bind:open={settingsenabled} headline="Proxy Settings">
|
|
{#if !import.meta.env.VITE_ADRIFT_SINGLEFILE}
|
|
<div>
|
|
<SegmentedButtonContainer>
|
|
<input
|
|
type="radio"
|
|
name="selectedProxy"
|
|
bind:group={selectedProxy}
|
|
value="ultraviolet"
|
|
id="ultraviolet"
|
|
/>
|
|
<SegmentedButtonItem input="ultraviolet"
|
|
>Ultraviolet</SegmentedButtonItem
|
|
>
|
|
<input
|
|
type="radio"
|
|
name="selectedProxy"
|
|
bind:group={selectedProxy}
|
|
value="dynamic"
|
|
id="dynamic"
|
|
/>
|
|
<SegmentedButtonItem input="dynamic">Dynamic</SegmentedButtonItem>
|
|
</SegmentedButtonContainer>
|
|
</div>
|
|
<br />
|
|
|
|
<TextField name="Default Search Engine" bind:value={searchengine} />
|
|
{/if}
|
|
</Dialog>
|
|
</div>
|
|
<iframe class="flex-1" bind:this={proxyIframe} on:load={frameLoad} />
|
|
</div>
|
|
|
|
<style>
|
|
.urlbar {
|
|
border: solid 0.0625rem rgb(var(--m3-scheme-outline));
|
|
padding: 0.25rem;
|
|
border-radius: 0.75rem;
|
|
}
|
|
input {
|
|
background-color: transparent;
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
iframe {
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
</style>
|