Hides edit button when user is not allowed to do it in item's page. Also redirects edition dition page to items list when user cant edit. Ref. #205.
This commit is contained in:
parent
b9f2e371d6
commit
6967b0e8b0
|
@ -1067,9 +1067,13 @@ export default {
|
|||
// Initializes Media Frames now that itemId exists
|
||||
this.initializeMediaFrames();
|
||||
|
||||
this.fetchItem(this.itemId).then(res => {
|
||||
this.fetchItem({ itemId: this.itemId, contextEdit: true }).then(res => {
|
||||
this.item = res;
|
||||
|
||||
// Checks if user has permission to edit
|
||||
if (!this.item.current_user_can_edit)
|
||||
this.$router.push(this.$routerHelper.getCollectionPath(this.collectionId));
|
||||
|
||||
// Updates Collection BreadCrumb
|
||||
if (this.isOnSequenceEdit) {
|
||||
this.$root.$emit('onCollectionBreadCrumbUpdate', [
|
||||
|
|
|
@ -336,6 +336,7 @@
|
|||
<div class="footer">
|
||||
<div class="form-submission-footer">
|
||||
<router-link
|
||||
v-if="item.current_user_can_edit"
|
||||
class="button is-secondary"
|
||||
:to="{ path: $routerHelper.getItemEditPath(collectionId, itemId)}">
|
||||
{{ $i18n.getFrom('items','edit_item') }}
|
||||
|
@ -464,7 +465,7 @@
|
|||
});
|
||||
|
||||
// Obtains Item
|
||||
this.fetchItem(this.itemId).then((item) => {
|
||||
this.fetchItem({ itemId: this.itemId, contextEdit: true }).then((item) => {
|
||||
this.$root.$emit('onCollectionBreadCrumbUpdate', [
|
||||
{path: this.$routerHelper.getCollectionPath(this.collectionId), label: this.$i18n.get('items')},
|
||||
{path: '', label: item.title}
|
||||
|
|
|
@ -62,10 +62,10 @@ export const setLastUpdated = ({ commit}, value) => {
|
|||
};
|
||||
|
||||
// Actions directly related to Item
|
||||
export const fetchItem = ({ commit }, item_id) => {
|
||||
export const fetchItem = ({ commit }, { itemId, contextEdit } ) => {
|
||||
commit('cleanItem')
|
||||
return new Promise((resolve, reject) => {
|
||||
axios.tainacan.get('/items/'+item_id)
|
||||
axios.tainacan.get('/items/'+ itemId + (contextEdit ? '?context=edit' : ''))
|
||||
.then(res => {
|
||||
let item = res.data;
|
||||
commit('setItem', item);
|
||||
|
|
|
@ -559,7 +559,7 @@ export default {
|
|||
this.$nextTick(() => this.isLoadingItem = false);
|
||||
} else {
|
||||
// Loads current item
|
||||
this.fetchItem(this.slideItems[this.slideIndex].id)
|
||||
this.fetchItem({ itemId: this.slideItems[this.slideIndex].id, contextEdit: true })
|
||||
.then(() => {
|
||||
this.isLoadingItem = false;
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue