-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
133 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
apps/frontend/src/lib/components/blocks/playground/playground-alert.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<script lang="ts"> | ||
import { LL } from "@undb/i18n/client" | ||
import { preferences } from "$lib/store/persisted.store" | ||
</script> | ||
|
||
{#if !$preferences.playgroundModeDismissed} | ||
<div | ||
id="banner" | ||
tabindex="-1" | ||
class="z-50 flex w-full items-start justify-between gap-8 border border-b border-gray-200 bg-gray-50 px-4 py-2 sm:items-center lg:py-3 dark:border-gray-700 dark:bg-gray-800" | ||
> | ||
<p class="text-sm text-gray-500 dark:text-gray-400"> | ||
{$LL.playground.playgroundModeDescription()} | ||
</p> | ||
<button | ||
data-collapse-toggle="banner" | ||
type="button" | ||
class="flex items-center rounded-lg p-1.5 text-sm text-gray-400 hover:bg-gray-200 hover:text-gray-900 dark:hover:bg-gray-600 dark:hover:text-white" | ||
on:click={() => { | ||
$preferences.playgroundModeDismissed = true | ||
}} | ||
> | ||
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" | ||
><path | ||
fill-rule="evenodd" | ||
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" | ||
clip-rule="evenodd" | ||
></path></svg | ||
> | ||
</button> | ||
</div> | ||
{/if} |
22 changes: 22 additions & 0 deletions
22
apps/frontend/src/lib/components/blocks/playground/playground-menubar.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<script lang="ts"> | ||
import * as Menubar from "$lib/components/ui/menubar" | ||
import { IMPORT_TEMPLATE_MODAL, openModal } from "$lib/store/modal.store" | ||
</script> | ||
|
||
<Menubar.Root> | ||
<Menubar.Menu> | ||
<Menubar.Trigger>Data</Menubar.Trigger> | ||
<Menubar.Content> | ||
<Menubar.Item | ||
class="text-sm" | ||
on:click={() => { | ||
openModal(IMPORT_TEMPLATE_MODAL) | ||
}} | ||
> | ||
Import From Template | ||
</Menubar.Item> | ||
<Menubar.Separator /> | ||
<Menubar.Item>Share</Menubar.Item> | ||
</Menubar.Content> | ||
</Menubar.Menu> | ||
</Menubar.Root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
<script lang="ts"> | ||
import { setIsLocal } from "$lib/store/data-service.store" | ||
import { setIsPlayground } from "$lib/store/playground.svelte" | ||
import PlaygroundAlert from "$lib/components/blocks/playground/playground-alert.svelte" | ||
setIsLocal(true) | ||
setIsPlayground(true) | ||
</script> | ||
|
||
<slot /> | ||
<main class="flex h-screen flex-col"> | ||
<PlaygroundAlert /> | ||
<slot /> | ||
</main> | ||
|
||
{#await import("$lib/components/blocks/create-base/create-base-dialog.svelte") then { default: CreateBaseDialog }} | ||
<CreateBaseDialog baseNames={[]} /> | ||
{/await} | ||
|
||
{#await import("$lib/components/blocks/template/template-list-sheet.svelte") then { default: TemplateListSheet }} | ||
<TemplateListSheet /> | ||
{/await} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters