105 lines
2.3 KiB
Svelte
105 lines
2.3 KiB
Svelte
<script>
|
|
import { gradient } from "actions"
|
|
import {
|
|
Heading,
|
|
Button,
|
|
Icon,
|
|
ActionMenu,
|
|
MenuItem,
|
|
StatusLight,
|
|
} from "@budibase/bbui"
|
|
import { auth } from "stores/portal"
|
|
|
|
export let app
|
|
export let exportApp
|
|
export let viewApp
|
|
export let editApp
|
|
export let deleteApp
|
|
export let unpublishApp
|
|
export let releaseLock
|
|
</script>
|
|
|
|
<div class="title">
|
|
<div class="preview" use:gradient={{ seed: app.name }} />
|
|
<div class="name" on:click={() => editApp(app)}>
|
|
<Heading size="XS">
|
|
{app.name}
|
|
</Heading>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
Updated {Math.round(Math.random() * 10 + 1)} months ago
|
|
</div>
|
|
<div>
|
|
<StatusLight
|
|
positive={!app.lockedYou && !app.lockedOther}
|
|
notice={app.lockedYou}
|
|
negative={app.lockedOther}
|
|
>
|
|
{#if app.lockedYou}
|
|
Locked by you
|
|
{:else if app.lockedOther}
|
|
Locked by {app.lockedBy.email}
|
|
{:else}
|
|
Open
|
|
{/if}
|
|
</StatusLight>
|
|
</div>
|
|
<div>
|
|
<StatusLight active={app.deployed} neutral={!app.deployed}>
|
|
{#if app.deployed}Published{:else}Unpublished{/if}
|
|
</StatusLight>
|
|
</div>
|
|
<div>
|
|
<Button
|
|
disabled={app.lockedOther}
|
|
on:click={() => editApp(app)}
|
|
size="S"
|
|
secondary>Open</Button
|
|
>
|
|
<ActionMenu align="right">
|
|
<Icon hoverable slot="control" name="More" />
|
|
{#if app.deployed}
|
|
<MenuItem on:click={() => viewApp(app)} icon="GlobeOutline">
|
|
View published app
|
|
</MenuItem>
|
|
{/if}
|
|
{#if app.lockedYou}
|
|
<MenuItem on:click={() => releaseLock(app)} icon="LockOpen">
|
|
Release lock
|
|
</MenuItem>
|
|
{/if}
|
|
<MenuItem on:click={() => exportApp(app)} icon="Download">Export</MenuItem>
|
|
{#if app.deployed}
|
|
<MenuItem on:click={() => unpublishApp(app)} icon="GlobeRemove">
|
|
Unpublish
|
|
</MenuItem>
|
|
{/if}
|
|
{#if !app.deployed}
|
|
<MenuItem on:click={() => deleteApp(app)} icon="Delete">Delete</MenuItem>
|
|
{/if}
|
|
</ActionMenu>
|
|
</div>
|
|
|
|
<style>
|
|
.preview {
|
|
height: 40px;
|
|
width: 40px;
|
|
border-radius: var(--border-radius-s);
|
|
}
|
|
.name {
|
|
text-decoration: none;
|
|
overflow: hidden;
|
|
}
|
|
.name :global(.spectrum-Heading) {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.title :global(h1:hover) {
|
|
color: var(--spectrum-global-color-blue-600);
|
|
cursor: pointer;
|
|
transition: color 130ms ease;
|
|
}
|
|
</style>
|