136 lines
3.8 KiB
Vue
136 lines
3.8 KiB
Vue
<template>
|
|
<div>
|
|
<div
|
|
:class="[{ 'bg-primaryDark': dragging }]"
|
|
draggable="true"
|
|
@dragstart="dragStart"
|
|
@dragover.stop
|
|
@dragleave="dragging = false"
|
|
@dragend="dragging = false"
|
|
>
|
|
<div>
|
|
<ButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:title="!doc ? $t('use_request') : ''"
|
|
:class="[
|
|
getRequestLabelColor(request.method),
|
|
{ 'mx-3 text-green-400': isSelected },
|
|
]"
|
|
:icon="isSelected ? 'check_circle' : ''"
|
|
:label="request.method + request.name"
|
|
@click.native="!doc ? selectRequest() : {}"
|
|
/>
|
|
</div>
|
|
<tippy tabindex="-1" trigger="click" theme="popover" arrow>
|
|
<template #trigger>
|
|
<ButtonSecondary v-tippy="{ theme: 'tooltip' }" :title="$t('more')" />
|
|
<i class="material-icons">more_vert</i>
|
|
</template>
|
|
<div>
|
|
<ButtonSecondary
|
|
@click.native="
|
|
$emit('edit-request', {
|
|
collectionIndex,
|
|
folderIndex,
|
|
folderName,
|
|
request,
|
|
requestIndex,
|
|
folderPath,
|
|
})
|
|
"
|
|
/>
|
|
<i class="material-icons">edit</i>
|
|
<span>{{ $t("edit") }}</span>
|
|
</div>
|
|
<div>
|
|
<ButtonSecondary @click.native="confirmRemove = true" />
|
|
<i class="material-icons">delete</i>
|
|
<span>{{ $t("delete") }}</span>
|
|
</div>
|
|
</tippy>
|
|
</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>
|