2022-07-06 11:02:36 +02:00
|
|
|
<script lang="ts">
|
2022-09-22 15:48:16 +02:00
|
|
|
export let length = 0;
|
2022-09-23 14:09:26 +02:00
|
|
|
export let index: number = 0;
|
2022-02-10 15:47:44 +01:00
|
|
|
export let name = '';
|
|
|
|
export let value = '';
|
|
|
|
export let isBuildSecret = false;
|
|
|
|
export let isNewSecret = false;
|
2022-02-19 14:54:47 +01:00
|
|
|
|
2022-02-10 15:47:44 +01:00
|
|
|
import { page } from '$app/stores';
|
2022-09-23 14:09:26 +02:00
|
|
|
import { del, post, put } from '$lib/api';
|
2022-07-06 11:02:36 +02:00
|
|
|
import { errorNotification } from '$lib/common';
|
2022-02-20 00:00:31 +01:00
|
|
|
import CopyPasswordField from '$lib/components/CopyPasswordField.svelte';
|
2022-08-09 15:28:26 +00:00
|
|
|
import { addToast } from '$lib/store';
|
2022-04-04 12:37:24 +02:00
|
|
|
import { t } from '$lib/translations';
|
2022-02-12 15:23:58 +01:00
|
|
|
import { createEventDispatcher } from 'svelte';
|
2022-02-10 15:47:44 +01:00
|
|
|
|
2022-02-12 15:23:58 +01:00
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
const { id } = $page.params;
|
2022-09-23 14:09:26 +02:00
|
|
|
function cleanupState() {
|
|
|
|
if (isNewSecret) {
|
|
|
|
name = '';
|
|
|
|
value = '';
|
|
|
|
isBuildSecret = false;
|
|
|
|
}
|
|
|
|
}
|
2022-02-10 15:47:44 +01:00
|
|
|
async function removeSecret() {
|
|
|
|
try {
|
2022-07-06 11:02:36 +02:00
|
|
|
await del(`/applications/${id}/secrets`, { name });
|
2022-09-23 14:09:26 +02:00
|
|
|
cleanupState();
|
2022-08-09 15:28:26 +00:00
|
|
|
addToast({
|
|
|
|
message: 'Secret removed.',
|
|
|
|
type: 'success'
|
|
|
|
});
|
2022-09-23 14:09:26 +02:00
|
|
|
dispatch('refresh');
|
2022-07-06 11:02:36 +02:00
|
|
|
} catch (error) {
|
2022-02-10 15:47:44 +01:00
|
|
|
return errorNotification(error);
|
|
|
|
}
|
|
|
|
}
|
2022-04-02 23:25:55 +02:00
|
|
|
|
2022-09-23 14:09:26 +02:00
|
|
|
async function addNewSecret() {
|
2022-07-06 11:02:36 +02:00
|
|
|
try {
|
2022-10-13 15:43:57 +02:00
|
|
|
if (!name.trim()) return errorNotification({ message: 'Name is required.' });
|
|
|
|
if (!value.trim()) return errorNotification({ message: 'Value is required.' });
|
2022-09-23 14:09:26 +02:00
|
|
|
await post(`/applications/${id}/secrets`, {
|
2022-10-13 15:43:57 +02:00
|
|
|
name: name.trim(),
|
|
|
|
value: value.trim(),
|
2022-09-23 14:09:26 +02:00
|
|
|
isBuildSecret
|
|
|
|
});
|
|
|
|
cleanupState();
|
|
|
|
addToast({
|
|
|
|
message: 'Secret added.',
|
|
|
|
type: 'success'
|
2022-07-06 11:02:36 +02:00
|
|
|
});
|
2022-08-12 10:08:48 +02:00
|
|
|
dispatch('refresh');
|
2022-07-06 11:02:36 +02:00
|
|
|
} catch (error) {
|
|
|
|
return errorNotification(error);
|
2022-04-04 13:49:26 +02:00
|
|
|
}
|
2022-02-10 15:47:44 +01:00
|
|
|
}
|
2022-04-02 23:25:55 +02:00
|
|
|
|
2022-09-23 14:09:26 +02:00
|
|
|
async function updateSecret({
|
|
|
|
changeIsBuildSecret = false
|
|
|
|
}: { changeIsBuildSecret?: boolean } = {}) {
|
|
|
|
if (changeIsBuildSecret) isBuildSecret = !isBuildSecret;
|
2022-09-26 13:37:06 +02:00
|
|
|
if (isNewSecret) return;
|
2022-09-23 14:09:26 +02:00
|
|
|
try {
|
|
|
|
await put(`/applications/${id}/secrets`, {
|
2022-10-13 15:43:57 +02:00
|
|
|
name: name.trim(),
|
|
|
|
value: value.trim(),
|
2022-09-23 14:09:26 +02:00
|
|
|
isBuildSecret: changeIsBuildSecret ? isBuildSecret : undefined
|
|
|
|
});
|
|
|
|
addToast({
|
|
|
|
message: 'Secret updated.',
|
|
|
|
type: 'success'
|
|
|
|
});
|
|
|
|
dispatch('refresh');
|
|
|
|
} catch (error) {
|
|
|
|
return errorNotification(error);
|
2022-02-10 15:47:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-09-23 14:09:26 +02:00
|
|
|
<div class="w-full font-bold grid grid-cols-1 lg:grid-cols-4 gap-2 pb-2">
|
2022-09-22 15:48:16 +02:00
|
|
|
<div class="flex flex-col">
|
2022-09-23 14:09:26 +02:00
|
|
|
{#if (index === 0 && !isNewSecret) || length === 0}
|
|
|
|
<label for="name" class="pb-2 uppercase">name</label>
|
2022-09-22 15:48:16 +02:00
|
|
|
{/if}
|
2022-09-23 14:09:26 +02:00
|
|
|
|
2022-09-22 15:48:16 +02:00
|
|
|
<input
|
|
|
|
id={isNewSecret ? 'secretName' : 'secretNameNew'}
|
|
|
|
bind:value={name}
|
|
|
|
required
|
|
|
|
placeholder="EXAMPLE_VARIABLE"
|
|
|
|
readonly={!isNewSecret}
|
2022-09-23 14:09:26 +02:00
|
|
|
class=" w-full"
|
2022-09-22 15:48:16 +02:00
|
|
|
class:bg-coolblack={!isNewSecret}
|
|
|
|
class:border={!isNewSecret}
|
|
|
|
class:border-dashed={!isNewSecret}
|
|
|
|
class:border-coolgray-300={!isNewSecret}
|
|
|
|
class:cursor-not-allowed={!isNewSecret}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col">
|
2022-09-23 14:09:26 +02:00
|
|
|
{#if (index === 0 && !isNewSecret) || length === 0}
|
|
|
|
<label for="value" class="pb-2 uppercase">value</label>
|
|
|
|
{/if}
|
|
|
|
|
2022-09-22 15:48:16 +02:00
|
|
|
<CopyPasswordField
|
|
|
|
id={isNewSecret ? 'secretValue' : 'secretValueNew'}
|
|
|
|
name={isNewSecret ? 'secretValue' : 'secretValueNew'}
|
|
|
|
isPasswordField={true}
|
|
|
|
bind:value
|
|
|
|
placeholder="J$#@UIO%HO#$U%H"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div class="flex lg:flex-col flex-row justify-start items-center pt-3 lg:pt-0">
|
2022-09-23 14:09:26 +02:00
|
|
|
{#if (index === 0 && !isNewSecret) || length === 0}
|
|
|
|
<label for="name" class="pb-2 uppercase lg:block hidden">Need during buildtime?</label>
|
2022-09-22 15:48:16 +02:00
|
|
|
{/if}
|
2022-09-23 14:09:26 +02:00
|
|
|
<label for="name" class="pb-2 uppercase lg:hidden block">Need during buildtime?</label>
|
|
|
|
|
|
|
|
<div class="flex justify-center h-full items-center pt-0 lg:pt-0 pl-4 lg:pl-0">
|
2022-09-22 15:48:16 +02:00
|
|
|
<button
|
2022-09-23 14:09:26 +02:00
|
|
|
on:click={() => updateSecret({ changeIsBuildSecret: true })}
|
2022-09-22 15:48:16 +02:00
|
|
|
aria-pressed="false"
|
|
|
|
class="relative inline-flex h-6 w-11 flex-shrink-0 rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out "
|
|
|
|
class:bg-green-600={isBuildSecret}
|
|
|
|
class:bg-stone-700={!isBuildSecret}
|
2022-02-12 15:23:58 +01:00
|
|
|
>
|
2022-09-22 15:48:16 +02:00
|
|
|
<span class="sr-only">{$t('application.secrets.use_isbuildsecret')}</span>
|
|
|
|
<span
|
|
|
|
class="pointer-events-none relative inline-block h-5 w-5 transform rounded-full bg-white shadow transition duration-200 ease-in-out"
|
|
|
|
class:translate-x-5={isBuildSecret}
|
|
|
|
class:translate-x-0={!isBuildSecret}
|
2022-08-09 15:28:26 +00:00
|
|
|
>
|
2022-09-22 15:48:16 +02:00
|
|
|
<span
|
|
|
|
class="absolute inset-0 flex h-full w-full items-center justify-center transition-opacity duration-200 ease-in"
|
|
|
|
class:opacity-0={isBuildSecret}
|
|
|
|
class:opacity-100={!isBuildSecret}
|
|
|
|
aria-hidden="true"
|
|
|
|
>
|
|
|
|
<svg class="h-3 w-3 bg-white text-red-600" fill="none" viewBox="0 0 12 12">
|
|
|
|
<path
|
|
|
|
d="M4 8l2-2m0 0l2-2M6 6L4 4m2 2l2 2"
|
|
|
|
stroke="currentColor"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="absolute inset-0 flex h-full w-full items-center justify-center transition-opacity duration-100 ease-out"
|
|
|
|
aria-hidden="true"
|
|
|
|
class:opacity-100={isBuildSecret}
|
|
|
|
class:opacity-0={!isBuildSecret}
|
2022-04-02 23:00:03 +02:00
|
|
|
>
|
2022-09-22 15:48:16 +02:00
|
|
|
<svg class="h-3 w-3 bg-white text-green-600" fill="currentColor" viewBox="0 0 12 12">
|
|
|
|
<path
|
|
|
|
d="M3.707 5.293a1 1 0 00-1.414 1.414l1.414-1.414zM5 8l-.707.707a1 1 0 001.414 0L5 8zm4.707-3.293a1 1 0 00-1.414-1.414l1.414 1.414zm-7.414 2l2 2 1.414-1.414-2-2-1.414 1.414zm3.414 2l4-4-1.414-1.414-4 4 1.414 1.414z"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-row lg:flex-col lg:items-center items-start">
|
2022-09-23 14:09:26 +02:00
|
|
|
{#if (index === 0 && !isNewSecret) || length === 0}
|
|
|
|
<label for="name" class="pb-2 uppercase lg:block hidden">Actions</label>
|
|
|
|
{/if}
|
|
|
|
|
2022-09-22 15:48:16 +02:00
|
|
|
<div class="flex justify-center h-full items-center pt-3">
|
|
|
|
{#if isNewSecret}
|
|
|
|
<div class="flex items-center justify-center">
|
2022-09-23 14:09:26 +02:00
|
|
|
<button class="btn btn-sm btn-primary" on:click={addNewSecret}>Add</button>
|
2022-09-22 15:48:16 +02:00
|
|
|
</div>
|
|
|
|
{:else}
|
|
|
|
<div class="flex flex-row justify-center space-x-2">
|
|
|
|
<div class="flex items-center justify-center">
|
2022-09-23 14:09:26 +02:00
|
|
|
<button class="btn btn-sm btn-primary" on:click={() => updateSecret()}>Set</button>
|
|
|
|
</div>
|
|
|
|
<div class="flex justify-center items-end">
|
|
|
|
<button class="btn btn-sm btn-error" on:click={removeSecret}>Remove</button>
|
2022-09-22 15:48:16 +02:00
|
|
|
</div>
|
2022-02-20 00:00:31 +01:00
|
|
|
</div>
|
|
|
|
{/if}
|
2022-02-10 15:47:44 +01:00
|
|
|
</div>
|
2022-09-22 15:48:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|