-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into feature/CONNECTOR-143/test-synchro-fe…
…edback
- Loading branch information
Showing
10 changed files
with
880 additions
and
126 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Main Branch Protection | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
check-branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check branch | ||
run: | | ||
if [[ ${GITHUB_HEAD_REF} != development ]] && [[ ${GITHUB_HEAD_REF} != documentation ]] && ! [[ ${GITHUB_HEAD_REF} =~ ^hotfix/ ]]; | ||
then | ||
echo "Error: Pull request must come from 'development', 'documentation' or 'hotfix/' branch" | ||
exit 1 | ||
fi |
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,21 @@ | ||
name: Lint Check | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- development | ||
- main | ||
|
||
jobs: | ||
lint-check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: npm i | ||
|
||
- name: Linting | ||
run: npm run lint |
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
118 changes: 118 additions & 0 deletions
118
src/modals/SourceConfigurationAuthentication/DeleteSourceConfigurationAuthentication.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,118 @@ | ||
<script setup> | ||
import { navigationStore, sourceStore } from '../../store/store.js' | ||
</script> | ||
|
||
<template> | ||
<NcDialog name="Delete Source Authentication" | ||
:can-close="false"> | ||
<div v-if="success !== null || error"> | ||
<NcNoteCard v-if="success" type="success"> | ||
<p>Successfully deleted source authentication</p> | ||
</NcNoteCard> | ||
<NcNoteCard v-if="!success" type="error"> | ||
<p>Something went wrong deleting the source authentication</p> | ||
</NcNoteCard> | ||
<NcNoteCard v-if="error" type="error"> | ||
<p>{{ error }}</p> | ||
</NcNoteCard> | ||
</div> | ||
<p v-if="success === null"> | ||
Do you want to delete <b>{{ sourceStore.sourceConfigurationKey.replace(/^authentication\./g, '') }}</b> from Source Authentication? | ||
</p> | ||
<template #actions> | ||
<NcButton :disabled="loading" icon="" @click="closeModal"> | ||
<template #icon> | ||
<Cancel :size="20" /> | ||
</template> | ||
{{ success !== null ? 'Close' : 'Cancel' }} | ||
</NcButton> | ||
<NcButton | ||
v-if="success === null" | ||
:disabled="loading" | ||
icon="Delete" | ||
type="error" | ||
@click="deleteSourceConfiguration()"> | ||
<template #icon> | ||
<NcLoadingIcon v-if="loading" :size="20" /> | ||
<Delete v-if="!loading" :size="20" /> | ||
</template> | ||
Delete | ||
</NcButton> | ||
</template> | ||
</NcDialog> | ||
</template> | ||
|
||
<script> | ||
import { NcButton, NcDialog, NcNoteCard, NcLoadingIcon } from '@nextcloud/vue' | ||
import Cancel from 'vue-material-design-icons/Cancel.vue' | ||
import Delete from 'vue-material-design-icons/Delete.vue' | ||
export default { | ||
name: 'DeleteSourceConfigurationAuthentication', | ||
components: { | ||
NcDialog, | ||
NcButton, | ||
NcNoteCard, | ||
NcLoadingIcon, | ||
// Icons | ||
Cancel, | ||
Delete, | ||
}, | ||
data() { | ||
return { | ||
loading: false, | ||
success: null, | ||
error: false, | ||
closeTimeoutFunc: null, | ||
} | ||
}, | ||
methods: { | ||
closeModal() { | ||
navigationStore.setModal(false) | ||
clearTimeout(this.closeTimeoutFunc) | ||
sourceStore.setSourceConfigurationKey(null) | ||
}, | ||
deleteSourceConfiguration() { | ||
this.loading = true | ||
const sourceItemClone = { ...sourceStore.sourceItem } | ||
delete sourceItemClone?.configuration[sourceStore.sourceConfigurationKey] | ||
const sourceItem = { | ||
...sourceStore.sourceItem, | ||
} | ||
sourceStore.saveSource(sourceItem) | ||
.then(() => { | ||
this.loading = false | ||
this.success = true | ||
// Wait for the user to read the feedback then close the model | ||
this.closeTimeoutFunc = setTimeout(this.closeModal, 2000) | ||
}) | ||
.catch((err) => { | ||
this.error = err | ||
this.loading = false | ||
}) | ||
}, | ||
}, | ||
} | ||
</script> | ||
<style> | ||
.modal__content { | ||
margin: var(--OC-margin-50); | ||
text-align: center; | ||
} | ||
.zaakDetailsContainer { | ||
margin-block-start: var(--OC-margin-20); | ||
margin-inline-start: var(--OC-margin-20); | ||
margin-inline-end: var(--OC-margin-20); | ||
} | ||
.success { | ||
color: green; | ||
} | ||
</style> |
145 changes: 145 additions & 0 deletions
145
src/modals/SourceConfigurationAuthentication/EditSourceConfigurationAuthentication.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,145 @@ | ||
<script setup> | ||
import { sourceStore, navigationStore } from '../../store/store.js' | ||
</script> | ||
|
||
<template> | ||
<NcModal ref="modalRef" | ||
label-id="editSourceConfigurationAuthentication" | ||
@close="closeModal"> | ||
<div class="modalContent"> | ||
<h2>{{ isEdit ? 'Edit' : 'Add' }} Authentication</h2> | ||
<NcNoteCard v-if="success" type="success"> | ||
<p>Authentication successfully added</p> | ||
</NcNoteCard> | ||
<NcNoteCard v-if="error" type="error"> | ||
<p>{{ error }}</p> | ||
</NcNoteCard> | ||
|
||
<form v-if="!success" @submit.prevent="handleSubmit"> | ||
<div class="form-group"> | ||
<NcTextField | ||
id="key" | ||
label="Key*" | ||
required | ||
:error="checkIfKeyIsUnique(configurationItem.key)" | ||
:helper-text="checkIfKeyIsUnique(configurationItem.key) ? 'This key is already in use. Please choose a different key name.' : ''" | ||
:value.sync="configurationItem.key" /> | ||
<NcTextField | ||
id="value" | ||
label="Value" | ||
:value.sync="configurationItem.value" /> | ||
</div> | ||
</form> | ||
|
||
<NcButton | ||
v-if="!success" | ||
:disabled="loading || !configurationItem.key || checkIfKeyIsUnique(configurationItem.key)" | ||
type="primary" | ||
@click="editSourceConfiguration()"> | ||
<template #icon> | ||
<NcLoadingIcon v-if="loading" :size="20" /> | ||
<ContentSaveOutline v-if="!loading" :size="20" /> | ||
</template> | ||
Save | ||
</NcButton> | ||
</div> | ||
</NcModal> | ||
</template> | ||
|
||
<script> | ||
import { | ||
NcButton, | ||
NcModal, | ||
NcLoadingIcon, | ||
NcNoteCard, | ||
NcTextField, | ||
} from '@nextcloud/vue' | ||
import ContentSaveOutline from 'vue-material-design-icons/ContentSaveOutline.vue' | ||
export default { | ||
name: 'EditSourceConfigurationAuthentication', | ||
components: { | ||
NcModal, | ||
NcButton, | ||
NcLoadingIcon, | ||
NcNoteCard, | ||
NcTextField, | ||
// Icons | ||
ContentSaveOutline, | ||
}, | ||
data() { | ||
return { | ||
configurationItem: { | ||
key: '', | ||
value: '', | ||
}, | ||
success: false, | ||
loading: false, | ||
error: false, | ||
hasUpdated: false, | ||
closeTimeoutFunc: null, | ||
oldKey: '', | ||
isEdit: false, | ||
} | ||
}, | ||
mounted() { | ||
this.initializeSourceConfiguration() | ||
}, | ||
methods: { | ||
initializeSourceConfiguration() { | ||
if (!sourceStore.sourceConfigurationKey) { | ||
return | ||
} | ||
const configurationItem = Object.entries(sourceStore.sourceItem.configuration).find(([key]) => key === sourceStore.sourceConfigurationKey) | ||
if (configurationItem) { | ||
this.configurationItem = { | ||
key: configurationItem[0].replace(/^authentication\./g, '') || '', | ||
value: configurationItem[1] || '', | ||
} | ||
this.oldKey = configurationItem[0] | ||
this.isEdit = true | ||
} | ||
}, | ||
checkIfKeyIsUnique(key) { | ||
if (!sourceStore.sourceItem.configuration) return false | ||
const fullKey = `authentication.${key}` | ||
const keys = Object.keys(sourceStore.sourceItem.configuration) | ||
if (this.oldKey === fullKey) return false | ||
if (keys.includes(fullKey)) return true | ||
return false | ||
}, | ||
closeModal() { | ||
navigationStore.setModal(false) | ||
clearTimeout(this.closeTimeoutFunc) | ||
sourceStore.setSourceConfigurationKey(null) | ||
}, | ||
async editSourceConfiguration() { | ||
this.loading = true | ||
const newSourceItem = { | ||
...sourceStore.sourceItem, | ||
configuration: { | ||
...sourceStore.sourceItem.configuration, | ||
[`authentication.${this.configurationItem.key}`]: this.configurationItem.value, | ||
}, | ||
} | ||
if (this.oldKey !== '' && this.oldKey !== `authentication.${this.configurationItem.key}`) { | ||
delete newSourceItem.configuration[this.oldKey] | ||
} | ||
try { | ||
await sourceStore.saveSource(newSourceItem) | ||
// Close modal or show success message | ||
this.success = true | ||
this.loading = false | ||
this.closeTimeoutFunc = setTimeout(this.closeModal, 2000) | ||
} catch (error) { | ||
this.loading = false | ||
this.success = false | ||
this.error = error.message || 'An error occurred while saving the authentication configuration' | ||
} | ||
}, | ||
}, | ||
} | ||
</script> |
Oops, something went wrong.