-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathPatchcab.svelte
69 lines (56 loc) · 1.48 KB
/
Patchcab.svelte
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<script lang="ts">
import { onMount } from 'svelte';
import modules from './state/modules';
import { stateImport } from './state/helpers';
import { Bar, Cables, Help, Container, Loading, Shelf } from './rack';
import type { Library, View, Rack } from './types';
export let api: string;
export let rack: Rack;
let view: View = 'rack';
let library: Library;
let modulesAll = modules.store;
let loading = false;
let title = '';
onMount(async () => {
const response = await fetch('/modules.json');
try {
library = await response.json();
} catch (error) {
console.error(error);
library = [];
}
title = 'My untiled synth';
if (api) {
const path = location.pathname;
if (path.length === 9) {
loading = true;
title = '';
try {
const response = await fetch(`${api}?url=${path.substr(1)}`);
const data = (await response.json()) as { rack: Rack; url: string };
stateImport(data.rack, library);
title = data.rack.title;
loading = false;
return;
} catch (err) {
console.log(err);
}
loading = false;
}
}
if (rack) {
stateImport(rack, library);
}
});
</script>
{#if loading}
<Loading />
{:else}
<Bar bind:title bind:view {library} {api} />
<Shelf bind:view {library} />
<Help bind:view />
{#each $modulesAll as module (module.id)}
<Container {module} />
{/each}
<Cables />
{/if}