mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
112 lines
3.7 KiB
Vue
112 lines
3.7 KiB
Vue
<template>
|
|
<div ref="modal" class="modal" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<form @submit.prevent="submit">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<i class="sn-icon sn-icon-close"></i>
|
|
</button>
|
|
<h4 class="modal-title truncate !block" id="edit-project-modal-label" :title="project.name">
|
|
{{ i18n.t('projects.index.modal_edit_project.modal_title', {project: project.name}) }}
|
|
</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="mb-6">
|
|
<label class="sci-label">{{ i18n.t("projects.index.modal_new_project.name") }}</label>
|
|
<div class="sci-input-container-v2" :class="{'error': error}" :data-error="error">
|
|
<input type="text" v-model="name" class="sci-input-field"
|
|
autofocus="true" ref="input"
|
|
:placeholder="i18n.t('projects.index.modal_new_project.name_placeholder')" />
|
|
</div>
|
|
</div>
|
|
<div class="flex gap-2 text-xs items-center">
|
|
<div class="sci-checkbox-container">
|
|
<input type="checkbox" class="sci-checkbox" v-model="visible" value="visible"/>
|
|
<span class="sci-checkbox-label"></span>
|
|
</div>
|
|
<span v-html="i18n.t('projects.index.modal_new_project.visibility_html')"></span>
|
|
</div>
|
|
<div class="mt-6" :class="{'hidden': !visible}">
|
|
<label class="sci-label">{{ i18n.t("user_assignment.select_default_user_role") }}</label>
|
|
<SelectDropdown :options="userRoles" :value="defaultRole" @change="changeRole" />
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">{{ i18n.t('general.cancel') }}</button>
|
|
<button class="btn btn-primary" type="submit" :disabled="visible && !defaultRole">
|
|
{{ i18n.t('projects.index.modal_edit_project.submit') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import SelectDropdown from '../../shared/select_dropdown.vue';
|
|
import axios from '../../../packs/custom_axios.js';
|
|
import modalMixin from '../../shared/modal_mixin';
|
|
|
|
export default {
|
|
name: 'EditProjectModal',
|
|
props: {
|
|
project: Object,
|
|
userRolesUrl: String,
|
|
},
|
|
mixins: [modalMixin],
|
|
components: {
|
|
SelectDropdown,
|
|
},
|
|
watch: {
|
|
visible(newValue) {
|
|
if (newValue) {
|
|
[this.defaultRole] = this.userRoles.find((role) => role[1] === 'Viewer');
|
|
} else {
|
|
this.defaultRole = null;
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
this.fetchUserRoles();
|
|
},
|
|
data() {
|
|
return {
|
|
name: this.project.name,
|
|
visible: !this.project.hidden,
|
|
defaultRole: this.project.default_public_user_role_id,
|
|
error: null,
|
|
userRoles: []
|
|
};
|
|
},
|
|
methods: {
|
|
submit() {
|
|
axios.put(this.project.urls.update, {
|
|
project: {
|
|
name: this.name,
|
|
visibility: (this.visible ? 'visible' : 'hidden'),
|
|
default_public_user_role_id: this.defaultRole,
|
|
},
|
|
}).then(() => {
|
|
this.error = null;
|
|
this.$emit('update');
|
|
}).catch((error) => {
|
|
this.error = error.response.data.errors.name;
|
|
});
|
|
},
|
|
changeRole(role) {
|
|
this.defaultRole = role;
|
|
},
|
|
fetchUserRoles() {
|
|
if (this.userRolesUrl) {
|
|
axios.get(this.userRolesUrl)
|
|
.then((response) => {
|
|
this.userRoles = response.data.data;
|
|
});
|
|
}
|
|
}
|
|
},
|
|
};
|
|
</script>
|