392 lines
12 KiB
Vue
392 lines
12 KiB
Vue
<template>
|
|
<div class="flex flex-col">
|
|
<div
|
|
class="flex items-stretch group"
|
|
@dragover.prevent
|
|
@drop.prevent="dropEvent"
|
|
@dragover="dragging = true"
|
|
@drop="dragging = false"
|
|
@dragleave="dragging = false"
|
|
@dragend="dragging = false"
|
|
@contextmenu.prevent="options.tippy().show()"
|
|
>
|
|
<span
|
|
class="flex items-center justify-center px-4 cursor-pointer"
|
|
@click="toggleShowChildren()"
|
|
>
|
|
<SmartIcon
|
|
class="svg-icons"
|
|
:class="{ 'text-accent': isSelected }"
|
|
:name="getCollectionIcon"
|
|
/>
|
|
</span>
|
|
<span
|
|
class="flex flex-1 min-w-0 py-2 pr-2 cursor-pointer transition group-hover:text-secondaryDark"
|
|
@click="toggleShowChildren()"
|
|
>
|
|
<span class="truncate" :class="{ 'text-accent': isSelected }">
|
|
{{ collection.title }}
|
|
</span>
|
|
</span>
|
|
<div class="flex">
|
|
<ButtonSecondary
|
|
v-if="doc && !selected"
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:title="t('import.title')"
|
|
svg="circle"
|
|
color="green"
|
|
@click.native="$emit('select-collection')"
|
|
/>
|
|
<ButtonSecondary
|
|
v-if="doc && selected"
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:title="t('action.remove')"
|
|
svg="check-circle"
|
|
color="green"
|
|
@click.native="$emit('unselect-collection')"
|
|
/>
|
|
<ButtonSecondary
|
|
v-if="collectionsType.selectedTeam.myRole !== 'VIEWER'"
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
svg="file-plus"
|
|
:title="$t('request.new')"
|
|
class="hidden group-hover:inline-flex"
|
|
@click.native="
|
|
$emit('add-request', {
|
|
folder: collection,
|
|
path: `${collectionIndex}`,
|
|
})
|
|
"
|
|
/>
|
|
<ButtonSecondary
|
|
v-if="collectionsType.selectedTeam.myRole !== 'VIEWER'"
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
svg="folder-plus"
|
|
:title="t('folder.new')"
|
|
class="hidden group-hover:inline-flex"
|
|
@click.native="
|
|
$emit('add-folder', {
|
|
folder: collection,
|
|
path: `${collectionIndex}`,
|
|
})
|
|
"
|
|
/>
|
|
<span>
|
|
<tippy
|
|
v-if="collectionsType.selectedTeam.myRole !== 'VIEWER'"
|
|
ref="options"
|
|
interactive
|
|
trigger="click"
|
|
theme="popover"
|
|
arrow
|
|
:on-shown="() => tippyActions.focus()"
|
|
>
|
|
<template #trigger>
|
|
<ButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:title="t('action.more')"
|
|
svg="more-vertical"
|
|
/>
|
|
</template>
|
|
<div
|
|
ref="tippyActions"
|
|
class="flex flex-col focus:outline-none"
|
|
tabindex="0"
|
|
role="menu"
|
|
@keyup.r="requestAction.$el.click()"
|
|
@keyup.n="folderAction.$el.click()"
|
|
@keyup.e="edit.$el.click()"
|
|
@keyup.delete="deleteAction.$el.click()"
|
|
@keyup.x="exportAction.$el.click()"
|
|
@keyup.escape="options.tippy().hide()"
|
|
>
|
|
<SmartItem
|
|
ref="requestAction"
|
|
svg="file-plus"
|
|
:label="t('request.new')"
|
|
:shortcut="['R']"
|
|
@click.native="
|
|
() => {
|
|
$emit('add-request', {
|
|
folder: collection,
|
|
path: `${collectionIndex}`,
|
|
})
|
|
options.tippy().hide()
|
|
}
|
|
"
|
|
/>
|
|
<SmartItem
|
|
ref="folderAction"
|
|
svg="folder-plus"
|
|
:label="t('folder.new')"
|
|
:shortcut="['N']"
|
|
@click.native="
|
|
() => {
|
|
$emit('add-folder', {
|
|
folder: collection,
|
|
path: `${collectionIndex}`,
|
|
})
|
|
options.tippy().hide()
|
|
}
|
|
"
|
|
/>
|
|
<SmartItem
|
|
ref="edit"
|
|
svg="edit"
|
|
:label="t('action.edit')"
|
|
:shortcut="['E']"
|
|
@click.native="
|
|
() => {
|
|
$emit('edit-collection')
|
|
options.tippy().hide()
|
|
}
|
|
"
|
|
/>
|
|
<SmartItem
|
|
ref="exportAction"
|
|
svg="download"
|
|
:label="$t('export.title')"
|
|
:shortcut="['X']"
|
|
:loading="exportLoading"
|
|
@click.native="exportCollection"
|
|
/>
|
|
<SmartItem
|
|
ref="deleteAction"
|
|
svg="trash-2"
|
|
:label="t('action.delete')"
|
|
:shortcut="['⌫']"
|
|
@click.native="
|
|
() => {
|
|
removeCollection()
|
|
options.tippy().hide()
|
|
}
|
|
"
|
|
/>
|
|
</div>
|
|
</tippy>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div v-if="showChildren || isFiltered" class="flex">
|
|
<div
|
|
class="bg-dividerLight cursor-nsResize flex ml-5.5 transform transition w-1 hover:bg-dividerDark hover:scale-x-125"
|
|
@click="toggleShowChildren()"
|
|
></div>
|
|
<div class="flex flex-col flex-1 truncate">
|
|
<CollectionsTeamsFolder
|
|
v-for="(folder, index) in collection.children"
|
|
:key="`folder-${index}`"
|
|
:folder="folder"
|
|
:folder-index="index"
|
|
:folder-path="`${collectionIndex}/${index}`"
|
|
:collection-index="collectionIndex"
|
|
:doc="doc"
|
|
:save-request="saveRequest"
|
|
:collections-type="collectionsType"
|
|
:is-filtered="isFiltered"
|
|
:picked="picked"
|
|
:loading-collection-i-ds="loadingCollectionIDs"
|
|
@add-request="$emit('add-request', $event)"
|
|
@add-folder="$emit('add-folder', $event)"
|
|
@edit-folder="$emit('edit-folder', $event)"
|
|
@edit-request="$emit('edit-request', $event)"
|
|
@select="$emit('select', $event)"
|
|
@expand-collection="expandCollection"
|
|
@remove-request="$emit('remove-request', $event)"
|
|
@remove-folder="$emit('remove-folder', $event)"
|
|
@duplicate-request="$emit('duplicate-request', $event)"
|
|
/>
|
|
<CollectionsTeamsRequest
|
|
v-for="(request, index) in collection.requests"
|
|
:key="`request-${index}`"
|
|
:request="request.request"
|
|
:collection-index="collectionIndex"
|
|
:folder-index="-1"
|
|
:folder-name="collection.name"
|
|
:request-index="request.id"
|
|
:doc="doc"
|
|
:save-request="saveRequest"
|
|
:collection-i-d="collection.id"
|
|
:collections-type="collectionsType"
|
|
:picked="picked"
|
|
@edit-request="editRequest($event)"
|
|
@select="$emit('select', $event)"
|
|
@remove-request="$emit('remove-request', $event)"
|
|
@duplicate-request="$emit('duplicate-request', $event)"
|
|
/>
|
|
<div
|
|
v-if="loadingCollectionIDs.includes(collection.id)"
|
|
class="flex flex-col items-center justify-center p-4"
|
|
>
|
|
<SmartSpinner class="my-4" />
|
|
<span class="text-secondaryLight">{{ $t("state.loading") }}</span>
|
|
</div>
|
|
<div
|
|
v-else-if="
|
|
(collection.children == undefined ||
|
|
collection.children.length === 0) &&
|
|
(collection.requests == undefined ||
|
|
collection.requests.length === 0)
|
|
"
|
|
class="flex flex-col items-center justify-center p-4 text-secondaryLight"
|
|
>
|
|
<img
|
|
:src="`/images/states/${$colorMode.value}/pack.svg`"
|
|
loading="lazy"
|
|
class="inline-flex flex-col object-contain object-center w-16 h-16 mb-4"
|
|
:alt="`${t('empty.collection')}`"
|
|
/>
|
|
<span class="text-center">
|
|
{{ t("empty.collection") }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, ref } from "@nuxtjs/composition-api"
|
|
import * as E from "fp-ts/Either"
|
|
import {
|
|
getCompleteCollectionTree,
|
|
teamCollToHoppRESTColl,
|
|
} from "~/helpers/backend/helpers"
|
|
import { moveRESTTeamRequest } from "~/helpers/backend/mutations/TeamRequest"
|
|
import { useI18n } from "~/helpers/utils/composables"
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
collectionIndex: { type: Number, default: null },
|
|
collection: { type: Object, default: () => {} },
|
|
doc: Boolean,
|
|
isFiltered: Boolean,
|
|
selected: Boolean,
|
|
saveRequest: Boolean,
|
|
collectionsType: { type: Object, default: () => {} },
|
|
picked: { type: Object, default: () => {} },
|
|
loadingCollectionIDs: { type: Array, default: () => [] },
|
|
},
|
|
setup() {
|
|
const t = useI18n()
|
|
|
|
return {
|
|
tippyActions: ref<any | null>(null),
|
|
options: ref<any | null>(null),
|
|
requestAction: ref<any | null>(null),
|
|
folderAction: ref<any | null>(null),
|
|
edit: ref<any | null>(null),
|
|
deleteAction: ref<any | null>(null),
|
|
exportAction: ref<any | null>(null),
|
|
exportLoading: ref<boolean>(false),
|
|
t,
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
showChildren: false,
|
|
dragging: false,
|
|
selectedFolder: {},
|
|
prevCursor: "",
|
|
cursor: "",
|
|
pageNo: 0,
|
|
}
|
|
},
|
|
computed: {
|
|
isSelected(): boolean {
|
|
return (
|
|
this.picked &&
|
|
this.picked.pickedType === "teams-collection" &&
|
|
this.picked.collectionID === this.collection.id
|
|
)
|
|
},
|
|
getCollectionIcon() {
|
|
if (this.isSelected) return "check-circle"
|
|
else if (!this.showChildren && !this.isFiltered) return "folder"
|
|
else if (this.showChildren || this.isFiltered) return "folder-open"
|
|
else return "folder"
|
|
},
|
|
},
|
|
methods: {
|
|
async exportCollection() {
|
|
this.exportLoading = true
|
|
|
|
const result = await getCompleteCollectionTree(this.collection.id)()
|
|
|
|
if (E.isLeft(result)) {
|
|
this.$toast.error(this.$t("error.something_went_wrong").toString())
|
|
console.log(result.left)
|
|
this.exportLoading = false
|
|
this.options.tippy().hide()
|
|
|
|
return
|
|
}
|
|
|
|
const hoppColl = teamCollToHoppRESTColl(result.right)
|
|
|
|
const collectionJSON = JSON.stringify(hoppColl)
|
|
|
|
const file = new Blob([collectionJSON], { type: "application/json" })
|
|
const a = document.createElement("a")
|
|
const url = URL.createObjectURL(file)
|
|
a.href = url
|
|
|
|
a.download = `${hoppColl.name}.json`
|
|
document.body.appendChild(a)
|
|
a.click()
|
|
this.$toast.success(this.$t("state.download_started").toString())
|
|
|
|
setTimeout(() => {
|
|
document.body.removeChild(a)
|
|
URL.revokeObjectURL(url)
|
|
}, 1000)
|
|
|
|
this.exportLoading = false
|
|
|
|
this.options.tippy().hide()
|
|
},
|
|
editRequest(event: any) {
|
|
this.$emit("edit-request", event)
|
|
if (this.$props.saveRequest)
|
|
this.$emit("select", {
|
|
picked: {
|
|
pickedType: "teams-collection",
|
|
collectionID: this.collection.id,
|
|
},
|
|
})
|
|
},
|
|
toggleShowChildren() {
|
|
if (this.$props.saveRequest)
|
|
this.$emit("select", {
|
|
picked: {
|
|
pickedType: "teams-collection",
|
|
collectionID: this.collection.id,
|
|
},
|
|
})
|
|
|
|
this.$emit("expand-collection", this.collection.id)
|
|
this.showChildren = !this.showChildren
|
|
},
|
|
removeCollection() {
|
|
this.$emit("remove-collection", {
|
|
collectionIndex: this.collectionIndex,
|
|
collectionID: this.collection.id,
|
|
})
|
|
},
|
|
expandCollection(collectionID: string) {
|
|
this.$emit("expand-collection", collectionID)
|
|
},
|
|
async dropEvent({ dataTransfer }: any) {
|
|
this.dragging = !this.dragging
|
|
const requestIndex = dataTransfer.getData("requestIndex")
|
|
const moveRequestResult = await moveRESTTeamRequest(
|
|
requestIndex,
|
|
this.collection.id
|
|
)()
|
|
if (E.isLeft(moveRequestResult))
|
|
this.$toast.error(`${this.$t("error.something_went_wrong")}`)
|
|
},
|
|
},
|
|
})
|
|
</script>
|