mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-06 08:01:35 +00:00
* feat: mask oauth client secret in instance settings * fix: address ci review - migrate nextcloud + use Password small prop * fix: associate client secret labels with input via for/id
97 lines
2.7 KiB
Svelte
97 lines
2.7 KiB
Svelte
<script lang="ts">
|
|
import { untrack } from 'svelte'
|
|
import IconedResourceType from './IconedResourceType.svelte'
|
|
import TextInput from './text_input/TextInput.svelte'
|
|
import Password from './Password.svelte'
|
|
import Toggle from './Toggle.svelte'
|
|
import SettingCard from './instanceSettings/SettingCard.svelte'
|
|
|
|
interface Props {
|
|
value: any
|
|
}
|
|
|
|
let { value = $bindable() }: Props = $props()
|
|
|
|
let lastOrg: string | undefined = undefined
|
|
|
|
function changeOrg(org: string | undefined) {
|
|
if (value && org) {
|
|
value = {
|
|
...value,
|
|
connect_config: {
|
|
auth_url: `${org}/protocol/openid-connect/auth`,
|
|
token_url: `${org}/protocol/openid-connect/token`,
|
|
scopes: ['openid', 'offline_access']
|
|
},
|
|
login_config: {
|
|
auth_url: `${org}/protocol/openid-connect/auth`,
|
|
token_url: `${org}/protocol/openid-connect/token`,
|
|
userinfo_url: `${org}/protocol/openid-connect/userinfo`,
|
|
scopes: ['openid', 'offline_access']
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
let enabled = $derived(value != undefined)
|
|
|
|
$effect.pre(() => {
|
|
if (value?.['org'] != lastOrg) {
|
|
lastOrg = value?.['org']
|
|
untrack(() => changeOrg(value?.['org']))
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<div class="flex flex-col gap-1">
|
|
<!-- svelte-ignore a11y_label_has_associated_control -->
|
|
<label class="text-xs font-semibold text-emphasis flex gap-4 items-center"
|
|
><div class="w-[120px]"><IconedResourceType name={'keycloak'} after={true} /></div><Toggle
|
|
checked={enabled}
|
|
on:change={(e) => {
|
|
if (e.detail) {
|
|
value = { id: '', secret: '', org: '' }
|
|
} else {
|
|
value = undefined
|
|
}
|
|
}}
|
|
/></label
|
|
>
|
|
{#if enabled}
|
|
<SettingCard class="flex flex-col gap-6">
|
|
<label class="flex flex-col gap-1">
|
|
<span class="text-emphasis font-semibold text-xs">Realm Url </span>
|
|
<span class="text-secondary font-normal text-xs"
|
|
>{'REALM_URL/protocol/openid-connect/auth'}</span
|
|
>
|
|
<TextInput
|
|
inputProps={{ type: 'text', placeholder: 'yourorg' }}
|
|
bind:value={value['org']}
|
|
/>
|
|
</label>
|
|
<label class="flex flex-col gap-1">
|
|
<span class="text-emphasis font-semibold text-xs">Custom Name</span>
|
|
<TextInput
|
|
inputProps={{ type: 'text', placeholder: 'Custom Name' }}
|
|
bind:value={value['display_name']}
|
|
/>
|
|
</label>
|
|
<label class="flex flex-col gap-1">
|
|
<span class="text-emphasis font-semibold text-xs">Client Id</span>
|
|
<TextInput
|
|
inputProps={{ type: 'text', placeholder: 'Client Id' }}
|
|
bind:value={value['id']}
|
|
/>
|
|
</label>
|
|
<label for="keycloak_client_secret" class="flex flex-col gap-1">
|
|
<span class="text-emphasis font-semibold text-xs">Client Secret </span>
|
|
<Password
|
|
id="keycloak_client_secret"
|
|
placeholder="Client Secret"
|
|
bind:password={value['secret']}
|
|
/>
|
|
</label>
|
|
</SettingCard>
|
|
{/if}
|
|
</div>
|