scinote-web/app/javascript/vue/projects/modals/new.vue

120 lines
3.8 KiB
Vue
Raw Normal View History

2023-12-01 07:01:08 +08:00
<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">
{{ i18n.t('projects.index.modal_new_project.modal_title') }}
</h4>
2023-12-01 07:01:08 +08:00
</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"
ref="input"
autofocus="true"
: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" />
2023-12-01 07:01:08 +08:00
</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="disableSubmit || (visible && !defaultRole)">
{{ i18n.t('projects.index.modal_new_project.create') }}
</button>
2023-12-01 07:01:08 +08:00
</div>
</div>
</form>
2023-12-01 07:01:08 +08:00
</div>
</div>
</template>
<script>
2023-12-11 16:18:22 +08:00
import SelectDropdown from '../../shared/select_dropdown.vue';
2023-12-01 07:01:08 +08:00
import axios from '../../../packs/custom_axios.js';
2023-12-11 16:18:22 +08:00
import modalMixin from '../../shared/modal_mixin';
2023-12-01 07:01:08 +08:00
export default {
2023-12-11 16:18:22 +08:00
name: 'NewProjectModal',
2023-12-01 07:01:08 +08:00
props: {
createUrl: String,
userRolesUrl: String,
currentFolderId: String,
},
2023-12-11 16:18:22 +08:00
mixins: [modalMixin],
2023-12-01 07:01:08 +08:00
components: {
SelectDropdown,
},
watch: {
visible(newValue) {
if (newValue) {
[this.defaultRole] = this.userRoles.find((role) => role[1] === 'Viewer');
} else {
this.defaultRole = null;
}
}
},
mounted() {
this.fetchUserRoles();
},
2023-12-01 07:01:08 +08:00
data() {
return {
name: '',
visible: false,
defaultRole: null,
error: null,
disableSubmit: false,
userRoles: []
2023-12-01 07:01:08 +08:00
};
},
methods: {
async submit() {
this.disableSubmit = true;
await axios.post(this.createUrl, {
2023-12-01 07:01:08 +08:00
project: {
name: this.name,
visibility: (this.visible ? 'visible' : 'hidden'),
default_public_user_role_id: this.defaultRole,
project_folder_id: this.currentFolderId,
2023-12-11 16:18:22 +08:00
},
2023-12-01 07:01:08 +08:00
}).then(() => {
this.error = null;
this.$emit('create');
}).catch((error) => {
this.error = error.response.data.name;
2023-12-11 16:18:22 +08:00
});
this.disableSubmit = false;
2023-12-01 07:01:08 +08:00
},
changeRole(role) {
this.defaultRole = role;
},
fetchUserRoles() {
if (this.userRolesUrl) {
axios.get(this.userRolesUrl)
.then((response) => {
this.userRoles = response.data.data;
});
}
}
2023-12-11 16:18:22 +08:00
},
};
2023-12-01 07:01:08 +08:00
</script>