blob: 15d1ee993bc1745ab37bcc8da47fe5440960e544 (
plain)
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
|
<script lang="ts">
import {
ConnectionState,
getOwnToken,
getStateStore,
} from "../../network/channel/connection";
import data from "../../stores/data";
import DataSelector from "./DataSelector.svelte";
let connection = getStateStore();
</script>
{#if !$data.locked}
<h1>What do you want to share?</h1>
<DataSelector />
{:else}
<h1>
You are <br />
sharing <b>a text.</b>
</h1>
{#if $connection === ConnectionState.CONNECTED}
<p>
Your share is available under: <br />
rook.rnrd.eu/<span>{getOwnToken()}</span>
</p>
<!-- TODO: Display actual data. -->
<div class="data">••••••••••••••••••••••••••••••</div>
{:else}
<p>Connecting to signaling server...</p>
{/if}
{/if}
<style>
span {
color: white;
}
.data {
font-size: 14px;
width: 100%;
background-color: white;
color: black;
padding: 10px 20px;
box-sizing: border-box;
}
</style>
|