Files
hoppscotch/components/collections/request.vue
Keith Holliday 85d6c3ac34 Edit request.
2019-10-17 10:57:58 -06:00

45 lines
1.2 KiB
Vue

<template>
<div @click='selectRequest()'>
{{request.name}}
<button class="add-button" @click="editRequest">e</button>
<button class="add-button" @click="removeRequest">x</button>
</div>
</template>
<style scoped>
.add-button {
padding: 0;
width: 20px;
margin: 0;
height: 20px;
border-radius: 50%;
}
</style>
<script>
export default {
props: {
request: Object,
collectionIndex: Number,
folderIndex: Number,
requestIndex: Number,
},
methods: {
selectRequest() {
this.$store.commit('postwoman/selectRequest', { request: this.request });
},
editRequest() {
this.request.requestIndex = this.requestIndex;
this.$store.commit('postwoman/editRequest', { request: this.request });
},
removeRequest() {
if (!confirm("Are you sure you want to remove this request?")) return;
this.$store.commit('postwoman/removeRequest', {
collectionIndex: this.collectionIndex,
folderIndex: this.folderIndex,
requestIndex: this.requestIndex,
});
},
},
};
</script>