151 lines
4.1 KiB
Vue
151 lines
4.1 KiB
Vue
<template>
|
|
<div>
|
|
<div
|
|
:class="[
|
|
'row-wrapper transition duration-150 ease-in-out',
|
|
{ 'bg-primaryDark': dragging },
|
|
]"
|
|
draggable="true"
|
|
@dragstart="dragStart"
|
|
@dragover.stop
|
|
@dragleave="dragging = false"
|
|
@dragend="dragging = false"
|
|
>
|
|
<div>
|
|
<button
|
|
v-tooltip="!doc ? $t('use_request') : ''"
|
|
class="icon button"
|
|
@click="!doc ? selectRequest() : {}"
|
|
>
|
|
<i v-if="isSelected" class="mx-3 text-green-400 material-icons"
|
|
>check_circle</i
|
|
>
|
|
|
|
<span v-else :class="getRequestLabelColor(request.method)">{{
|
|
request.method
|
|
}}</span>
|
|
<span>{{ request.name }}</span>
|
|
</button>
|
|
</div>
|
|
<v-popover>
|
|
<button v-tooltip="$t('more')" class="tooltip-target icon button">
|
|
<i class="material-icons">more_vert</i>
|
|
</button>
|
|
<template slot="popover">
|
|
<div>
|
|
<button
|
|
v-close-popover
|
|
class="icon button"
|
|
@click="
|
|
$emit('edit-request', {
|
|
collectionIndex,
|
|
folderIndex,
|
|
folderName,
|
|
request,
|
|
requestIndex,
|
|
folderPath,
|
|
})
|
|
"
|
|
>
|
|
<i class="material-icons">edit</i>
|
|
<span>{{ $t("edit") }}</span>
|
|
</button>
|
|
</div>
|
|
<div>
|
|
<button
|
|
v-close-popover
|
|
class="icon button"
|
|
@click="confirmRemove = true"
|
|
>
|
|
<i class="material-icons">delete</i>
|
|
<span>{{ $t("delete") }}</span>
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</v-popover>
|
|
</div>
|
|
<SmartConfirmModal
|
|
:show="confirmRemove"
|
|
:title="$t('are_you_sure_remove_request')"
|
|
@hide-modal="confirmRemove = false"
|
|
@resolve="removeRequest"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
request: { type: Object, default: () => {} },
|
|
collectionIndex: { type: Number, default: null },
|
|
folderIndex: { type: Number, default: null },
|
|
folderName: { type: String, default: null },
|
|
// eslint-disable-next-line vue/require-default-prop
|
|
requestIndex: [Number, String],
|
|
doc: Boolean,
|
|
saveRequest: Boolean,
|
|
collectionsType: { type: Object, default: () => {} },
|
|
folderPath: { type: String, default: null },
|
|
picked: { type: Object, default: () => {} },
|
|
},
|
|
data() {
|
|
return {
|
|
dragging: false,
|
|
requestMethodLabels: {
|
|
get: "text-green-400",
|
|
post: "text-yellow-400",
|
|
put: "text-blue-400",
|
|
delete: "text-red-400",
|
|
default: "text-gray-400",
|
|
},
|
|
confirmRemove: false,
|
|
}
|
|
},
|
|
computed: {
|
|
isSelected() {
|
|
return (
|
|
this.picked &&
|
|
this.picked.pickedType === "my-request" &&
|
|
this.picked.folderPath === this.folderPath &&
|
|
this.picked.requestIndex === this.requestIndex
|
|
)
|
|
},
|
|
},
|
|
methods: {
|
|
selectRequest() {
|
|
if (this.$props.saveRequest)
|
|
this.$emit("select", {
|
|
picked: {
|
|
pickedType: "my-request",
|
|
collectionIndex: this.collectionIndex,
|
|
folderPath: this.folderPath,
|
|
folderName: this.folderName,
|
|
requestIndex: this.requestIndex,
|
|
},
|
|
})
|
|
else
|
|
this.$store.commit("postwoman/selectRequest", { request: this.request })
|
|
},
|
|
dragStart({ dataTransfer }) {
|
|
this.dragging = !this.dragging
|
|
dataTransfer.setData("folderPath", this.folderPath)
|
|
dataTransfer.setData("requestIndex", this.requestIndex)
|
|
},
|
|
removeRequest() {
|
|
this.$emit("remove-request", {
|
|
collectionIndex: this.$props.collectionIndex,
|
|
folderName: this.$props.folderName,
|
|
folderPath: this.folderPath,
|
|
requestIndex: this.$props.requestIndex,
|
|
})
|
|
},
|
|
getRequestLabelColor(method) {
|
|
return (
|
|
this.requestMethodLabels[method.toLowerCase()] ||
|
|
this.requestMethodLabels.default
|
|
)
|
|
},
|
|
},
|
|
}
|
|
</script>
|