about summary refs log tree commit diff
path: root/assets/src/components/share/DataSelector.svelte
blob: 22a83bad7ffcb8127e1ea99f0fa96d4dd8acfd56 (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
47
<script lang="ts">
    import { ChoosingData, getShareState } from "../../state/share";
    import ShareIcon from "../icons/ShareIcon.svelte";

    let value = "";

    const submit = () => {
        const share = getShareState().state as ChoosingData;
        share.submitData(value);
    };

    // TODO: Accept data other than text.
</script>

<form on:submit|preventDefault={submit}>
    <!-- TODO: Prettier input field -->
    <input type="text" bind:value />
    <button class="start-sharing-button" type="submit">
        <ShareIcon color="black" />
        Start Sharing
    </button>
</form>

<style>
    input {
        border: none;
        font-size: 14px;
        color: black;
        background-color: white;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .start-sharing-button {
        border: none;
        font-size: 14px;
        background-color: white;
        color: black;
        padding: 10px 14px;

        display: flex;
        align-items: center;
        gap: 10px;

        margin-top: 20px;
    }
</style>