-
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 pull request #13 from ConductionNL/feature/feature/CONNECTOR-39…
…/source-configurations feature/feature/CONNECTOR-39/source-configurations
- Loading branch information
Showing
6 changed files
with
368 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
118 changes: 118 additions & 0 deletions
118
src/modals/SourceConfiguration/DeleteSourceConfiguration.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 | ||
v-if="navigationStore.modal === 'deleteSourceConfiguration'" | ||
name="Delete Source Configuration" | ||
:can-close="false"> | ||
<div v-if="success !== null || error"> | ||
<NcNoteCard v-if="success" type="success"> | ||
<p>Successfully deleted source configuration</p> | ||
</NcNoteCard> | ||
<NcNoteCard v-if="!success" type="error"> | ||
<p>Something went wrong deleting the source configuration</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 }}</b>? This action cannot be undone. | ||
</p> | ||
<template #actions> | ||
<NcButton :disabled="loading" icon="" @click="navigationStore.setModal(false)"> | ||
<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: 'DeleteSourceConfiguration', | ||
components: { | ||
NcDialog, | ||
NcButton, | ||
NcNoteCard, | ||
NcLoadingIcon, | ||
// Icons | ||
Cancel, | ||
Delete, | ||
}, | ||
data() { | ||
return { | ||
loading: false, | ||
success: null, | ||
error: false, | ||
} | ||
}, | ||
methods: { | ||
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 | ||
const self = this | ||
setTimeout(function() { | ||
self.success = null | ||
navigationStore.setModal(false) | ||
}, 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> |
160 changes: 160 additions & 0 deletions
160
src/modals/SourceConfiguration/EditSourceConfiguration.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,160 @@ | ||
<script setup> | ||
import { sourceStore, navigationStore } from '../../store/store.js' | ||
</script> | ||
|
||
<template> | ||
<NcModal v-if="navigationStore.modal === 'editSourceConfiguration'" | ||
ref="modalRef" | ||
label-id="editSourceConfiguration" | ||
@close="closeModal"> | ||
<div class="modalContent"> | ||
<h2>{{ isEdit ? 'Edit' : 'Add' }} Configuration</h2> | ||
<NcNoteCard v-if="success" type="success"> | ||
<p>Configuration 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: 'EditSourceConfiguration', | ||
components: { | ||
NcModal, | ||
NcButton, | ||
NcLoadingIcon, | ||
NcNoteCard, | ||
NcTextField, | ||
// Icons | ||
ContentSaveOutline, | ||
}, | ||
data() { | ||
return { | ||
configurationItem: { | ||
key: '', | ||
value: '', | ||
}, | ||
success: false, | ||
loading: false, | ||
error: false, | ||
hasUpdated: false, | ||
oldKey: '', | ||
isEdit: false, | ||
} | ||
}, | ||
mounted() { | ||
this.initializeSourceConfiguration() | ||
}, | ||
updated() { | ||
if (navigationStore.modal === 'editSourceConfiguration' && !this.hasUpdated) { | ||
this.initializeSourceConfiguration() | ||
this.hasUpdated = true | ||
} | ||
}, | ||
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] || '', | ||
value: configurationItem[1] || '', | ||
} | ||
this.oldKey = configurationItem[0] | ||
this.isEdit = true | ||
} | ||
}, | ||
checkIfKeyIsUnique(key) { | ||
if (!sourceStore.sourceItem.configuration) return false | ||
const keys = Object.keys(sourceStore.sourceItem.configuration) | ||
if (this.oldKey === key) return false | ||
if (keys.includes(key)) return true | ||
return false | ||
}, | ||
closeModal() { | ||
navigationStore.setModal(false) | ||
this.success = false | ||
this.loading = false | ||
this.error = false | ||
this.hasUpdated = false | ||
this.isEdit = false | ||
this.oldKey = '' | ||
this.configurationItem = { | ||
key: '', | ||
value: '', | ||
} | ||
}, | ||
async editSourceConfiguration() { | ||
this.loading = true | ||
const newSourceItem = { | ||
...sourceStore.sourceItem, | ||
configuration: { | ||
...sourceStore.sourceItem.configuration, | ||
[this.configurationItem.key]: this.configurationItem.value, | ||
}, | ||
} | ||
if (this.oldKey !== '' && this.oldKey !== 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 | ||
setTimeout(() => { | ||
this.closeModal() | ||
}, 2000) | ||
} catch (error) { | ||
this.loading = false | ||
this.success = false | ||
this.error = error.message || 'An error occurred while saving the source configuration' | ||
} | ||
}, | ||
}, | ||
} | ||
</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.