-
-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
616 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
web/src/components/admin/settings/AdminVariablesTab.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<template> | ||
<Settings | ||
:title="$t('variables.variables')" | ||
:desc="$t('admin.settings.variables.desc')" | ||
docs-url="docs/usage/variables" | ||
:warning="$t('admin.settings.variables.warning')" | ||
> | ||
<template #titleActions> | ||
<Button | ||
v-if="selectedVariable" | ||
:text="$t('variables.show')" | ||
start-icon="back" | ||
@click="selectedVariable = undefined" | ||
/> | ||
<Button v-else :text="$t('variables.add')" start-icon="plus" @click="showAddVariable" /> | ||
</template> | ||
|
||
<VariableList | ||
v-if="!selectedVariable" | ||
v-model="variables" | ||
:is-deleting="isDeleting" | ||
@edit="editVariable" | ||
@delete="deleteVariable" | ||
/> | ||
|
||
<VariableEdit | ||
v-else | ||
v-model="selectedVariable" | ||
:is-saving="isSaving" | ||
@save="createVariable" | ||
@cancel="selectedVariable = undefined" | ||
/> | ||
</Settings> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
import { cloneDeep } from 'lodash'; | ||
import { computed, ref } from 'vue'; | ||
import { useI18n } from 'vue-i18n'; | ||
import Button from '~/components/atomic/Button.vue'; | ||
import Settings from '~/components/layout/Settings.vue'; | ||
import VariableEdit from '~/components/variables/VariableEdit.vue'; | ||
import VariableList from '~/components/variables/VariableList.vue'; | ||
import useApiClient from '~/compositions/useApiClient'; | ||
import { useAsyncAction } from '~/compositions/useAsyncAction'; | ||
import useNotifications from '~/compositions/useNotifications'; | ||
import { usePagination } from '~/compositions/usePaginate'; | ||
import { Variable } from '~/lib/api/types'; | ||
const emptyVariable: Partial<Variable> = { | ||
name: '', | ||
value: '', | ||
}; | ||
const apiClient = useApiClient(); | ||
const notifications = useNotifications(); | ||
const i18n = useI18n(); | ||
const selectedVariable = ref<Partial<Variable>>(); | ||
const isEditingVariable = computed(() => !!selectedVariable.value?.id); | ||
async function loadVariables(page: number): Promise<Variable[] | null> { | ||
return apiClient.getGlobalSecretList({ page }); | ||
} | ||
const { resetPage, data: variables } = usePagination(loadVariables, () => !selectedVariable.value); | ||
const { doSubmit: createVariable, isLoading: isSaving } = useAsyncAction(async () => { | ||
if (!selectedVariable.value) { | ||
throw new Error("Unexpected: Can't get variable"); | ||
} | ||
if (isEditingVariable.value) { | ||
await apiClient.updateGlobalSecret(selectedVariable.value); | ||
} else { | ||
await apiClient.createGlobalSecret(selectedVariable.value); | ||
} | ||
notifications.notify({ | ||
title: i18n.t(isEditingVariable.value ? 'variables.saved' : 'variables.created'), | ||
type: 'success', | ||
}); | ||
selectedVariable.value = undefined; | ||
resetPage(); | ||
}); | ||
const { doSubmit: deleteVariable, isLoading: isDeleting } = useAsyncAction(async (_variable: Variable) => { | ||
await apiClient.deleteGlobalSecret(_variable.name); | ||
notifications.notify({ title: i18n.t('variables.deleted'), type: 'success' }); | ||
resetPage(); | ||
}); | ||
function editVariable(variable: Variable) { | ||
selectedVariable.value = cloneDeep(variable); | ||
} | ||
function showAddVariable() { | ||
selectedVariable.value = cloneDeep(emptyVariable); | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
<template> | ||
<Settings :title="$t('variables.variables')" :desc="$t('variables.desc')" docs-url="docs/usage/variables"> | ||
<template #titleActions> | ||
<Button | ||
v-if="selectedVariable" | ||
:text="$t('variables.show')" | ||
start-icon="back" | ||
@click="selectedVariable = undefined" | ||
/> | ||
<Button v-else :text="$t('variables.add')" start-icon="plus" @click="showAddVariable" /> | ||
</template> | ||
|
||
<VariableList | ||
v-if="!selectedVariable" | ||
:model-value="variables" | ||
:is-deleting="isDeleting" | ||
@edit="editVariable" | ||
@delete="deleteSecret" | ||
/> | ||
|
||
<VariableEdit | ||
v-else | ||
v-model="selectedVariable" | ||
:is-saving="isSaving" | ||
@save="createSecret" | ||
@cancel="selectedVariable = undefined" | ||
/> | ||
</Settings> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
import { cloneDeep } from 'lodash'; | ||
import { computed, inject, Ref, ref } from 'vue'; | ||
import { useI18n } from 'vue-i18n'; | ||
import Button from '~/components/atomic/Button.vue'; | ||
import Settings from '~/components/layout/Settings.vue'; | ||
import VariableEdit from '~/components/variables/VariableEdit.vue'; | ||
import VariableList from '~/components/variables/VariableList.vue'; | ||
import useApiClient from '~/compositions/useApiClient'; | ||
import { useAsyncAction } from '~/compositions/useAsyncAction'; | ||
import useNotifications from '~/compositions/useNotifications'; | ||
import { usePagination } from '~/compositions/usePaginate'; | ||
import { Repo, Variable } from '~/lib/api/types'; | ||
const emptyVariable: Partial<Variable> = { | ||
name: '', | ||
value: '', | ||
}; | ||
const apiClient = useApiClient(); | ||
const notifications = useNotifications(); | ||
const i18n = useI18n(); | ||
const repo = inject<Ref<Repo>>('repo'); | ||
const selectedVariable = ref<Partial<Variable>>(); | ||
const isEditingVariable = computed(() => !!selectedVariable.value?.id); | ||
async function loadVariables(page: number, level: 'repo' | 'org' | 'global'): Promise<Variable[] | null> { | ||
if (!repo?.value) { | ||
throw new Error("Unexpected: Can't load repo"); | ||
} | ||
switch (level) { | ||
case 'repo': | ||
return apiClient.getSecretList(repo.value.id, { page }); | ||
case 'org': | ||
return apiClient.getOrgSecretList(repo.value.org_id, { page }); | ||
case 'global': | ||
return apiClient.getGlobalSecretList({ page }); | ||
default: | ||
throw new Error(`Unexpected level: ${level}`); | ||
} | ||
} | ||
const { resetPage, data: _variables } = usePagination(loadVariables, () => !selectedVariable.value, { | ||
each: ['repo', 'org', 'global'], | ||
pageSize: 50, | ||
}); | ||
const variables = computed(() => { | ||
const variablesList: Record<string, Variable & { edit?: boolean; level: 'repo' | 'org' | 'global' }> = {}; | ||
// eslint-disable-next-line no-restricted-syntax | ||
for (const level of ['repo', 'org', 'global']) { | ||
// eslint-disable-next-line no-restricted-syntax | ||
for (const variable of _variables.value) { | ||
if ( | ||
((level === 'repo' && variable.repo_id !== 0 && variable.org_id === 0) || | ||
(level === 'org' && variable.repo_id === 0 && variable.org_id !== 0) || | ||
(level === 'global' && variable.repo_id === 0 && variable.org_id === 0)) && | ||
!variablesList[variable.name] | ||
) { | ||
variablesList[variable.name] = { ...variable, edit: variable.repo_id !== 0, level }; | ||
} | ||
} | ||
} | ||
const levelsOrder = { | ||
global: 0, | ||
org: 1, | ||
repo: 2, | ||
}; | ||
return Object.values(variablesList) | ||
.toSorted((a, b) => a.name.localeCompare(b.name)) | ||
.toSorted((a, b) => levelsOrder[b.level] - levelsOrder[a.level]); | ||
}); | ||
const { doSubmit: createSecret, isLoading: isSaving } = useAsyncAction(async () => { | ||
if (!repo?.value) { | ||
throw new Error("Unexpected: Can't load repo"); | ||
} | ||
if (!selectedVariable.value) { | ||
throw new Error("Unexpected: Can't get variable"); | ||
} | ||
if (isEditingVariable.value) { | ||
await apiClient.updateSecret(repo.value.id, selectedVariable.value); | ||
} else { | ||
await apiClient.createSecret(repo.value.id, selectedVariable.value); | ||
} | ||
notifications.notify({ | ||
title: i18n.t(isEditingVariable.value ? 'variables.saved' : 'variables.created'), | ||
type: 'success', | ||
}); | ||
selectedVariable.value = undefined; | ||
await resetPage(); | ||
}); | ||
const { doSubmit: deleteSecret, isLoading: isDeleting } = useAsyncAction(async (_variable: Variable) => { | ||
if (!repo?.value) { | ||
throw new Error("Unexpected: Can't load repo"); | ||
} | ||
await apiClient.deleteSecret(repo.value.id, _variable.name); | ||
notifications.notify({ title: i18n.t('variables.deleted'), type: 'success' }); | ||
await resetPage(); | ||
}); | ||
function editVariable(variable: Variable) { | ||
selectedVariable.value = cloneDeep(variable); | ||
} | ||
function showAddVariable() { | ||
selectedVariable.value = cloneDeep(emptyVariable); | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.