cartodb/lib/assets/javascripts/new-dashboard/components/QuickActions/MapQuickActions.vue

143 lines
4.5 KiB
Vue
Raw Normal View History

2020-06-15 10:58:47 +08:00
<template>
<QuickActions
v-if="!isSharedWithMe"
ref="quickActions"
:actions="actions[actionMode]"
v-on="getEventListeners()"
@open="openQuickactions"
@close="closeQuickactions"></QuickActions>
</template>
<script>
import { mapGetters } from 'vuex';
import QuickActions from 'new-dashboard/components/QuickActions/QuickActions';
import * as DialogActions from 'new-dashboard/core/dialog-actions';
import * as Visualization from 'new-dashboard/core/models/visualization';
export default {
name: 'MapQuickActions',
components: {
QuickActions
},
props: {
map: Object,
storeActionType: {
type: String,
default: 'maps'
}
},
computed: {
...mapGetters({
isOutOfPublicMapsQuota: 'user/isOutOfPublicMapsQuota'
}),
actions () {
return {
mine: [
{ name: this.$t('QuickActions.editInfo'), event: 'editInfo' },
{ name: this.$t('QuickActions.manageTags'), event: 'manageTags' },
{ name: this.$t('QuickActions.changePrivacy'), event: 'changePrivacy', shouldBeDisabled: !this.canChangePrivacy },
{ name: this.$t('QuickActions.share'), event: 'shareVisualization', shouldBeHidden: !this.isUserInsideOrganization },
{ name: this.$t('QuickActions.duplicate'), event: 'duplicateMap', shouldBeDisabled: !this.canDuplicate },
{ name: this.$t('QuickActions.lock'), event: 'lockMap' },
{ name: this.$t('QuickActions.delete'), event: 'deleteMap', isDestructive: true }
],
locked: [
{ name: this.$t('QuickActions.unlock'), event: 'unlockMap' }
]
};
},
actionMode () {
return this.map.locked ? 'locked' : 'mine';
},
isSharedWithMe () {
return Visualization.isSharedWithMe(this.$props.map, this.$cartoModels);
},
isUserInsideOrganization () {
const userOrganization = this.$store.state.user.organization;
return userOrganization && userOrganization.id;
},
isSelectedMapPrivate () {
return this.map.privacy === 'PRIVATE';
},
canChangePrivacy () {
return !this.isOutOfPublicMapsQuota || !this.isSelectedMapPrivate;
},
canDuplicate () {
return !this.isOutOfPublicMapsQuota || this.isSelectedMapPrivate;
}
},
methods: {
getActionHandlers () {
return {
deselectAll: () => {},
updateVisualization: (model) => {
this.$store.dispatch(`${this.storeActionType}/updateVisualization`, { visualizationId: model.get('id'), visualizationAttributes: model.attributes });
},
fetchList: () => {
this.$store.dispatch(`${this.storeActionType}/fetch`);
this.$emit('contentChanged', 'maps');
}
};
},
getEventListeners () {
const events = this.actions[this.actionMode].map(action => action.event);
return events.reduce(
(eventListeners, action) => {
eventListeners[action] = this[action].bind(this);
return eventListeners;
}, {}
);
},
showModal (componentDefinition, componentPropsData) {
this.$modal.show(
componentDefinition,
componentPropsData,
{ width: '100%', height: '100%' }
);
},
openQuickactions () {
this.$emit('open');
},
closeQuickactions () {
this.$emit('close');
},
closeDropdown () {
this.$refs.quickActions.closeDropdown();
},
editInfo () {
DialogActions.editMapMetadata.apply(this, [this.map, this.getActionHandlers()]);
this.closeDropdown();
},
changePrivacy () {
DialogActions.changePrivacy.apply(this, [this.map, this.getActionHandlers()]);
this.closeDropdown();
},
manageTags () {
DialogActions.editMapMetadata.apply(this, [this.map, this.getActionHandlers()]);
this.closeDropdown();
},
duplicateMap () {
DialogActions.duplicateVisualization.apply(this, [this.map]);
this.closeDropdown();
},
unlockMap () {
DialogActions.changeLockState.apply(this, [this.map, 'maps', this.getActionHandlers()]);
this.closeDropdown();
},
lockMap () {
DialogActions.changeLockState.apply(this, [this.map, 'maps', this.getActionHandlers()]);
this.closeDropdown();
},
deleteMap () {
DialogActions.deleteVisualization.apply(this, [this.map, 'maps', this.getActionHandlers()]);
this.closeDropdown();
},
shareVisualization () {
DialogActions.shareVisualization.apply(this, [this.map, this.getActionHandlers()]);
this.closeDropdown();
}
}
};
</script>