mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 08:02:19 +00:00
use auto-complete for worker group select
This commit is contained in:
@@ -2678,7 +2678,7 @@ fn restructure_cloudevents_metadata(
|
||||
let mut hm = serde_json::from_str::<Option<HashMap<String, Box<JsonRawValue>>>>(&str)
|
||||
.map_err(|e| Error::BadRequest(format!("invalid json: {}", e)))?
|
||||
.unwrap_or_else(HashMap::new);
|
||||
hm.insert("WEBHOOK__METADATA__".to_string(), to_raw_value(&p));
|
||||
hm.insert("WEBHOOK__METADATA__".to_string(), to_raw_value(&p));
|
||||
Ok(hm)
|
||||
}
|
||||
}
|
||||
@@ -2836,7 +2836,10 @@ where
|
||||
.unwrap()
|
||||
.starts_with("application/cloudevents-batch+json")
|
||||
{
|
||||
Err(Error::BadRequest(format!("Cloud events batching is not supported yet")).into_response())
|
||||
Err(
|
||||
Error::BadRequest(format!("Cloud events batching is not supported yet"))
|
||||
.into_response(),
|
||||
)
|
||||
} else if content_type
|
||||
.unwrap()
|
||||
.starts_with("application/x-www-form-urlencoded")
|
||||
|
||||
@@ -20,6 +20,8 @@
|
||||
import { displayDate, groupBy, pluralize, truncate } from '$lib/utils'
|
||||
import { AlertTriangle, FileJson, LineChart, Plus, Search } from 'lucide-svelte'
|
||||
import { onDestroy, onMount } from 'svelte'
|
||||
import AutoComplete from 'simple-svelte-autocomplete'
|
||||
|
||||
import YAML from 'yaml'
|
||||
|
||||
let workers: WorkerPing[] | undefined = undefined
|
||||
@@ -295,13 +297,13 @@
|
||||
{/if}
|
||||
|
||||
<div class="py-4 w-full flex justify-between"
|
||||
><h2
|
||||
>Worker Groups <Tooltip
|
||||
><h4
|
||||
>{groupWorkers?.length} Worker Groups <Tooltip
|
||||
documentationLink="https://www.windmill.dev/docs/core_concepts/worker_groups"
|
||||
>Worker groups are groups of workers that share a config and are meant to be identical.
|
||||
Worker groups are meant to be used with tags. Tags can be assigned to scripts and flows
|
||||
and can be seen as dedicated queues. Only the corresponding
|
||||
</Tooltip></h2
|
||||
</Tooltip></h4
|
||||
>
|
||||
<div />
|
||||
{#if $superadmin}
|
||||
@@ -378,9 +380,20 @@
|
||||
{/if}</div
|
||||
>
|
||||
|
||||
{#if Object.keys(workerGroups ?? {}).length > 5}
|
||||
<div>
|
||||
<select
|
||||
{#if (groupedWorkers ?? []).length > 5}
|
||||
<div class="flex gap-2 items-center">
|
||||
<div class="text-secondary text-sm">Worker group:</div>
|
||||
<AutoComplete
|
||||
noInputStyles
|
||||
items={groupedWorkers.map((x) => x[0])}
|
||||
bind:selectedItem={selectedTab}
|
||||
hideArrow={true}
|
||||
inputClassName={'flex !font-gray-600 !font-primary !bg-surface-primary"'}
|
||||
dropdownClassName="!text-sm !py-2 !rounded-sm !border-gray-200 !border !shadow-md"
|
||||
className="!font-gray-600 !font-primary !bg-surface-primary"
|
||||
/>
|
||||
|
||||
<!-- <select
|
||||
class="max-w-64"
|
||||
bind:value={selectedTab}
|
||||
on:change={() => {
|
||||
@@ -395,7 +408,7 @@
|
||||
)})
|
||||
</option>
|
||||
{/each}
|
||||
</select>
|
||||
</select> -->
|
||||
</div>
|
||||
{:else}
|
||||
<Tabs bind:selected={selectedTab}>
|
||||
|
||||
Reference in New Issue
Block a user