* new select component * fix search * arrow keys * placeholder color not working darkmode * Popover forceContentToTriggerWidth * select with popover * Revert "select with popover" This reverts commit61aece9ed0. * Revert "Popover forceContentToTriggerWidth" This reverts commit48c4d16111. * select fixes * fix select clipping with portal * started replacing select components * nit * AppSelect upgraded * no items * new Selector in Team and Channel selector * replace Select components * remove redundant select in ServiceLogsInner * replaced more selects * gcp trigger new select component * fix disablePortal position * fix broken clear in teams and channel selecrt * Finish Select component migration * fix empty entries in select * open Select above when no space below * fix sizing on disablePortal * Select loading feature + fix npm check * fix text contrast in select dropdown
210 lines
5.5 KiB
Svelte
210 lines
5.5 KiB
Svelte
<script lang="ts">
|
|
import { ScriptService, FlowService, type Script, AppService } from '$lib/gen'
|
|
|
|
import { workspaceStore } from '$lib/stores'
|
|
import { base } from '$lib/base'
|
|
import { createEventDispatcher } from 'svelte'
|
|
|
|
import Select from './Select.svelte'
|
|
|
|
import { getScriptByPath } from '$lib/scripts'
|
|
import { Button, Drawer, DrawerContent } from './common'
|
|
import HighlightCode from './HighlightCode.svelte'
|
|
import FlowPathViewer from './flows/content/FlowPathViewer.svelte'
|
|
import ToggleButton from './common/toggleButton-v2/ToggleButton.svelte'
|
|
import ToggleButtonGroup from './common/toggleButton-v2/ToggleButtonGroup.svelte'
|
|
import { Code, Code2, ExternalLink, Pen, RefreshCw } from 'lucide-svelte'
|
|
import type { SupportedLanguage } from '$lib/common'
|
|
import FlowIcon from './home/FlowIcon.svelte'
|
|
import DarkModeObserver from './DarkModeObserver.svelte'
|
|
import { truncate } from '$lib/utils'
|
|
|
|
export let initialPath: string | undefined = undefined
|
|
export let scriptPath: string | undefined = undefined
|
|
export let allowFlow = false
|
|
export let itemKind: 'script' | 'flow' | 'app' = 'script'
|
|
export let kinds: Script['kind'][] = ['script']
|
|
export let disabled = false
|
|
export let allowRefresh = false
|
|
export let allowEdit = true
|
|
export let allowView = true
|
|
|
|
let items: { value: string; label: string }[] = []
|
|
let drawerViewer: Drawer
|
|
let drawerFlowViewer: Drawer
|
|
let code: string = ''
|
|
let lang: SupportedLanguage | undefined
|
|
|
|
let options: [[string, any, any, string | undefined]] = [['Script', 'script', Code2, undefined]]
|
|
allowFlow && options.push(['Flow', 'flow', FlowIcon, '#14b8a6'])
|
|
const dispatch = createEventDispatcher()
|
|
|
|
async function loadItems(): Promise<void> {
|
|
if (itemKind == 'flow') {
|
|
items = (await FlowService.listFlows({ workspace: $workspaceStore! })).map((flow) => ({
|
|
value: flow.path,
|
|
label: `${flow.path}${flow.summary ? ` | ${truncate(flow.summary, 20)}` : ''}`
|
|
}))
|
|
} else if (itemKind == 'script') {
|
|
items = (
|
|
await ScriptService.listScripts({
|
|
workspace: $workspaceStore!,
|
|
kinds: kinds.join(',')
|
|
})
|
|
).map((script) => ({
|
|
value: script.path,
|
|
label: `${script.path}${script.summary ? ` | ${truncate(script.summary, 20)}` : ''}`
|
|
}))
|
|
} else if (itemKind == 'app') {
|
|
items = (await AppService.listApps({ workspace: $workspaceStore! })).map((app) => ({
|
|
value: app.path,
|
|
label: `${app.path}${app.summary ? ` | ${truncate(app.summary, 20)}` : ''}`
|
|
}))
|
|
}
|
|
}
|
|
|
|
$: itemKind && $workspaceStore && loadItems()
|
|
let darkMode: boolean = false
|
|
</script>
|
|
|
|
<DarkModeObserver bind:darkMode />
|
|
|
|
<Drawer bind:this={drawerViewer} size="900px">
|
|
<DrawerContent title="Script {scriptPath}" on:close={drawerViewer.closeDrawer}>
|
|
<HighlightCode {code} language={lang} />
|
|
</DrawerContent>
|
|
</Drawer>
|
|
|
|
<Drawer bind:this={drawerFlowViewer} size="900px">
|
|
<DrawerContent title="Flow {scriptPath}" on:close={drawerFlowViewer.closeDrawer}>
|
|
<FlowPathViewer path={scriptPath ?? ''} />
|
|
</DrawerContent>
|
|
</Drawer>
|
|
|
|
<div class="flex flex-row items-center gap-4 w-full mt-2">
|
|
{#if options.length > 1}
|
|
<div>
|
|
<ToggleButtonGroup bind:selected={itemKind} let:item>
|
|
{#each options as [label, value, icon, selectedColor]}
|
|
<ToggleButton {icon} {disabled} {value} {label} {selectedColor} {item} />
|
|
{/each}
|
|
</ToggleButtonGroup>
|
|
</div>
|
|
{/if}
|
|
|
|
{#if disabled}
|
|
<input type="text" value={scriptPath ?? initialPath ?? ''} disabled />
|
|
{:else}
|
|
<Select
|
|
bind:value={
|
|
() => scriptPath ?? initialPath,
|
|
(path) => {
|
|
scriptPath = path
|
|
dispatch('select', { path, itemKind })
|
|
}
|
|
}
|
|
class="grow shrink max-w-full"
|
|
{items}
|
|
placeholder="Pick {itemKind === 'app' ? 'an' : 'a'} {itemKind}"
|
|
/>
|
|
{/if}
|
|
|
|
{#if allowRefresh}
|
|
<Button
|
|
variant="border"
|
|
color="light"
|
|
wrapperClasses="self-stretch"
|
|
on:click={loadItems}
|
|
startIcon={{ icon: RefreshCw }}
|
|
iconOnly
|
|
/>
|
|
{/if}
|
|
|
|
{#if scriptPath !== undefined && scriptPath !== ''}
|
|
{#if itemKind == 'flow'}
|
|
<div class="flex gap-2">
|
|
{#if allowEdit}
|
|
<Button
|
|
endIcon={{ icon: ExternalLink }}
|
|
target="_blank"
|
|
color="light"
|
|
size="xs"
|
|
variant="border"
|
|
href="{base}/flows/edit/{scriptPath}">Edit</Button
|
|
>
|
|
{/if}
|
|
{#if allowView}
|
|
<Button
|
|
color="light"
|
|
size="xs"
|
|
variant="border"
|
|
on:click={async () => {
|
|
drawerFlowViewer.openDrawer()
|
|
}}
|
|
>
|
|
View
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{:else if itemKind == 'app'}
|
|
<div class="flex gap-2">
|
|
{#if allowEdit}
|
|
<Button
|
|
startIcon={{ icon: Pen }}
|
|
target="_blank"
|
|
color="light"
|
|
size="xs"
|
|
href="{base}/apps/edit/{scriptPath}"
|
|
variant="border"
|
|
>
|
|
Edit
|
|
</Button>
|
|
{/if}
|
|
{#if allowView}
|
|
<Button
|
|
color="light"
|
|
size="xs"
|
|
variant="border"
|
|
target="_blank"
|
|
startIcon={{ icon: Code }}
|
|
href="{base}/apps/get/{scriptPath}"
|
|
>
|
|
View
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{:else}
|
|
<div class="flex gap-2">
|
|
{#if allowEdit}
|
|
<Button
|
|
startIcon={{ icon: Pen }}
|
|
target="_blank"
|
|
color="light"
|
|
size="xs"
|
|
href="{base}/scripts/edit/{scriptPath}"
|
|
variant="border"
|
|
>
|
|
Edit
|
|
</Button>
|
|
{/if}
|
|
{#if allowView}
|
|
<Button
|
|
color="light"
|
|
size="xs"
|
|
variant="border"
|
|
startIcon={{ icon: Code }}
|
|
on:click={async () => {
|
|
const { language, content } = await getScriptByPath(scriptPath ?? '')
|
|
code = content
|
|
lang = language
|
|
drawerViewer.openDrawer()
|
|
}}
|
|
>
|
|
View
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
</div>
|