Add preselected role for new protocol template [SCI-10326]

This commit is contained in:
wandji20 2024-03-01 11:45:15 +01:00
parent 65c1e549f2
commit b497c7e9a7
4 changed files with 48 additions and 8 deletions

View file

@ -29,12 +29,12 @@
</div>
<div class="mt-6" :class="{'hidden': !visible}">
<label class="sci-label">{{ i18n.t("user_assignment.select_default_user_role") }}</label>
<SelectDropdown :optionsUrl="userRolesUrl" :value="defaultRole" @change="changeRole" />
<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">
<button class="btn btn-primary" type="submit" :disabled="visible && !defaultRole">
{{ i18n.t('projects.index.modal_edit_project.submit') }}
</button>
</div>
@ -60,12 +60,25 @@ export default {
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: {
@ -86,6 +99,14 @@ export default {
changeRole(role) {
this.defaultRole = role;
},
fetchUserRoles() {
if (this.userRolesUrl) {
axios.get(this.userRolesUrl)
.then((response) => {
this.userRoles = response.data.data;
});
}
}
},
};
</script>

View file

@ -36,7 +36,7 @@
</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">
<button class="btn btn-primary" type="submit" :disabled="disableSubmit || (visible && !defaultRole)">
{{ i18n.t('projects.index.modal_new_project.create') }}
</button>
</div>

View file

@ -30,12 +30,12 @@
</div>
<div class="mt-6" :class="{'hidden': !visible}">
<label class="sci-label">{{ i18n.t("protocols.new_protocol_modal.role_label") }}</label>
<SelectDropdown :optionsUrl="userRolesUrl" :value="defaultRole" @change="changeRole" />
<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">
<button class="btn btn-primary" type="submit" :disabled="visible && !defaultRole">
{{ i18n.t('protocols.new_protocol_modal.create_new') }}
</button>
</div>
@ -61,11 +61,24 @@ export default {
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: '',
visible: false,
defaultRole: null,
userRoles: [],
error: null
};
},
@ -86,6 +99,14 @@ export default {
},
changeRole(role) {
this.defaultRole = role;
},
fetchUserRoles() {
if (this.userRolesUrl) {
axios.get(this.userRolesUrl)
.then((response) => {
this.userRoles = response.data.data;
});
}
}
}
};

View file

@ -64,8 +64,6 @@ module Lists
count: object.comments.count,
count_unseen: count_unseen_comments(object, @user)
}
else
{}
end
end
@ -98,7 +96,7 @@ module Lists
def permissions
{
create_comments: comment_addable?(object)
create_comments: can_create_project_comments?(object)
}
end