Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions frontend/viewer/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import DotnetProjectView from './DotnetProjectView.svelte';
import {setupGlobalErrorHandlers} from '$lib/errors/global-errors';
import {ModeWatcher} from 'mode-watcher';
import {initScottyPortalContext} from '$lib/layout/Scotty.svelte';

let url = '';

Expand Down Expand Up @@ -69,7 +68,6 @@
/* eslint-enable @typescript-eslint/naming-convention */

setupGlobalErrorHandlers();
initScottyPortalContext();
</script>

<ModeWatcher />
Expand Down
10 changes: 0 additions & 10 deletions frontend/viewer/src/CrdtProjectView.svelte

This file was deleted.

48 changes: 0 additions & 48 deletions frontend/viewer/src/FwDataProjectView.svelte

This file was deleted.

46 changes: 0 additions & 46 deletions frontend/viewer/src/FwDataWebComponent.svelte

This file was deleted.

5 changes: 3 additions & 2 deletions frontend/viewer/src/ProjectLoader.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import {ProgressCircle} from 'svelte-ux';
import {writable} from 'svelte/store';
import {fade} from 'svelte/transition';
import Loading from '$lib/components/Loading.svelte';

export let readyToLoadProject = true;
export let projectName: string;
Expand All @@ -13,7 +13,8 @@
{#if loading}
<div class="absolute w-full h-full z-10 flex grow items-center justify-center" out:fade={{duration: 800}}>
<div class="inline-flex flex-col items-center text-4xl gap-4 opacity-75 m-auto p-4 text-center">
<span>Loading <span class="text-primary">{projectName}</span>...</span><ProgressCircle />
<span>Loading <span class="text-primary">{projectName}</span>...</span>
<Loading class="size-14"/>
</div>
</div>
{/if}
Expand Down
Loading
Loading