373 lines
12 KiB
Vue
373 lines
12 KiB
Vue
<template>
|
|
<div class="flex flex-col" :class="[{ 'bg-primaryLight': dragging }]">
|
|
<div
|
|
class="group flex items-stretch"
|
|
@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 cursor-pointer items-center justify-center px-4"
|
|
@click="toggleShowChildren()"
|
|
>
|
|
<component
|
|
:is="collectionIcon"
|
|
class="svg-icons"
|
|
:class="{ 'text-accent': isSelected }"
|
|
/>
|
|
</span>
|
|
<span
|
|
class="flex min-w-0 flex-1 cursor-pointer py-2 pr-2 transition group-hover:text-secondaryDark"
|
|
@click="toggleShowChildren()"
|
|
>
|
|
<span class="truncate" :class="{ 'text-accent': isSelected }">
|
|
{{ collection.name }}
|
|
</span>
|
|
</span>
|
|
<div class="flex">
|
|
<HoppButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:icon="IconFilePlus"
|
|
:title="t('request.new')"
|
|
class="hidden group-hover:inline-flex"
|
|
@click="
|
|
emit('add-request', {
|
|
path: `${collectionIndex}`,
|
|
index: collection.requests.length,
|
|
})
|
|
"
|
|
/>
|
|
<HoppButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:icon="IconFolderPlus"
|
|
:title="t('folder.new')"
|
|
class="hidden group-hover:inline-flex"
|
|
@click="
|
|
emit('add-folder', {
|
|
path: `${collectionIndex}`,
|
|
})
|
|
"
|
|
/>
|
|
<span>
|
|
<tippy
|
|
ref="options"
|
|
interactive
|
|
trigger="click"
|
|
theme="popover"
|
|
:on-shown="() => tippyActions.focus()"
|
|
>
|
|
<HoppButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:title="t('action.more')"
|
|
:icon="IconMoreVertical"
|
|
/>
|
|
<template #content="{ hide }">
|
|
<div
|
|
ref="tippyActions"
|
|
class="flex flex-col focus:outline-none"
|
|
tabindex="0"
|
|
@keyup.r="requestAction.$el.click()"
|
|
@keyup.n="folderAction.$el.click()"
|
|
@keyup.e="edit.$el.click()"
|
|
@keyup.delete="deleteAction.$el.click()"
|
|
@keyup.escape="hide()"
|
|
>
|
|
<HoppSmartItem
|
|
ref="requestAction"
|
|
:icon="IconFilePlus"
|
|
:label="`${t('request.new')}`"
|
|
:shortcut="['R']"
|
|
@click="
|
|
() => {
|
|
$emit('add-request', {
|
|
path: `${collectionIndex}`,
|
|
})
|
|
hide()
|
|
}
|
|
"
|
|
/>
|
|
<HoppSmartItem
|
|
ref="folderAction"
|
|
:icon="IconFolderPlus"
|
|
:label="`${t('folder.new')}`"
|
|
:shortcut="['N']"
|
|
@click="
|
|
() => {
|
|
emit('add-folder', {
|
|
path: `${collectionIndex}`,
|
|
})
|
|
hide()
|
|
}
|
|
"
|
|
/>
|
|
<HoppSmartItem
|
|
ref="edit"
|
|
:icon="IconEdit"
|
|
:label="`${t('action.edit')}`"
|
|
:shortcut="['E']"
|
|
@click="
|
|
() => {
|
|
emit('edit-collection')
|
|
hide()
|
|
}
|
|
"
|
|
/>
|
|
<HoppSmartItem
|
|
ref="deleteAction"
|
|
:icon="IconTrash2"
|
|
:label="`${t('action.delete')}`"
|
|
:shortcut="['⌫']"
|
|
@click="
|
|
() => {
|
|
confirmRemove = true
|
|
hide()
|
|
}
|
|
"
|
|
/>
|
|
<HoppSmartItem
|
|
ref="propertiesAction"
|
|
:icon="IconSettings2"
|
|
:label="t('action.properties')"
|
|
:shortcut="['P']"
|
|
@click="
|
|
() => {
|
|
emit('edit-properties', {
|
|
collectionIndex: String(collectionIndex),
|
|
collection: collection,
|
|
})
|
|
hide()
|
|
}
|
|
"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</tippy>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div v-if="showChildren || isFiltered" class="flex">
|
|
<div
|
|
class="ml-[1.375rem] flex w-0.5 transform cursor-nsResize bg-dividerLight transition hover:scale-x-125 hover:bg-dividerDark"
|
|
@click="toggleShowChildren()"
|
|
></div>
|
|
<div class="flex flex-1 flex-col truncate">
|
|
<CollectionsGraphqlFolder
|
|
v-for="(folder, index) in collection.folders"
|
|
:key="`folder-${String(index)}`"
|
|
:picked="picked"
|
|
:save-request="saveRequest"
|
|
:folder="folder"
|
|
:folder-index="index"
|
|
:folder-path="`${collectionIndex}/${String(index)}`"
|
|
:collection-index="collectionIndex"
|
|
:is-filtered="isFiltered"
|
|
@add-request="$emit('add-request', $event)"
|
|
@add-folder="$emit('add-folder', $event)"
|
|
@edit-folder="$emit('edit-folder', $event)"
|
|
@edit-request="$emit('edit-request', $event)"
|
|
@duplicate-request="$emit('duplicate-request', $event)"
|
|
@edit-properties="
|
|
$emit('edit-properties', {
|
|
collectionIndex: `${collectionIndex}/${String(index)}`,
|
|
collection: folder,
|
|
})
|
|
"
|
|
@select="$emit('select', $event)"
|
|
@select-request="$emit('select-request', $event)"
|
|
@drop-request="$emit('drop-request', $event)"
|
|
/>
|
|
<CollectionsGraphqlRequest
|
|
v-for="(request, index) in collection.requests"
|
|
:key="`request-${String(index)}`"
|
|
:picked="picked"
|
|
:save-request="saveRequest"
|
|
:request="request"
|
|
:collection-index="collectionIndex"
|
|
:folder-index="-1"
|
|
:folder-name="collection.name"
|
|
:folder-path="`${collectionIndex}`"
|
|
:request-index="index"
|
|
@edit-request="$emit('edit-request', $event)"
|
|
@duplicate-request="$emit('duplicate-request', $event)"
|
|
@select="$emit('select', $event)"
|
|
@select-request="$emit('select-request', $event)"
|
|
/>
|
|
<HoppSmartPlaceholder
|
|
v-if="
|
|
collection.folders.length === 0 && collection.requests.length === 0
|
|
"
|
|
:src="`/images/states/${colorMode.value}/pack.svg`"
|
|
:alt="`${t('empty.collection')}`"
|
|
:text="t('empty.collection')"
|
|
>
|
|
<template #body>
|
|
<HoppButtonSecondary
|
|
:label="t('add.new')"
|
|
filled
|
|
outline
|
|
@click="
|
|
emit('add-folder', {
|
|
path: `${collectionIndex}`,
|
|
})
|
|
"
|
|
/>
|
|
</template>
|
|
</HoppSmartPlaceholder>
|
|
</div>
|
|
</div>
|
|
<HoppSmartConfirmModal
|
|
:show="confirmRemove"
|
|
:title="`${t('confirm.remove_collection')}`"
|
|
@hide-modal="confirmRemove = false"
|
|
@resolve="removeCollection"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref } from "vue"
|
|
import IconCheckCircle from "~icons/lucide/check-circle"
|
|
import IconFolder from "~icons/lucide/folder"
|
|
import IconFolderOpen from "~icons/lucide/folder-open"
|
|
import IconFilePlus from "~icons/lucide/file-plus"
|
|
import IconFolderPlus from "~icons/lucide/folder-plus"
|
|
import IconMoreVertical from "~icons/lucide/more-vertical"
|
|
import IconEdit from "~icons/lucide/edit"
|
|
import IconTrash2 from "~icons/lucide/trash-2"
|
|
import IconSettings2 from "~icons/lucide/settings-2"
|
|
import { useToast } from "@composables/toast"
|
|
import { useI18n } from "@composables/i18n"
|
|
import { useColorMode } from "@composables/theming"
|
|
import { removeGraphqlCollection } from "~/newstore/collections"
|
|
import { Picked } from "~/helpers/types/HoppPicked"
|
|
import { useService } from "dioc/vue"
|
|
import { GQLTabService } from "~/services/tab/graphql"
|
|
import { HoppCollection, HoppGQLRequest } from "@hoppscotch/data"
|
|
|
|
const props = defineProps<{
|
|
picked: Picked | null
|
|
// Whether the viewing context is related to picking (activates 'select' events)
|
|
saveRequest: boolean
|
|
collectionIndex: number | null
|
|
collection: HoppCollection<HoppGQLRequest>
|
|
isFiltered: boolean
|
|
}>()
|
|
|
|
const colorMode = useColorMode()
|
|
const toast = useToast()
|
|
const t = useI18n()
|
|
|
|
const tabs = useService(GQLTabService)
|
|
|
|
// TODO: improve types plz
|
|
const emit = defineEmits<{
|
|
(e: "select", i: Picked | null): void
|
|
(e: "edit-request", i: any): void
|
|
(e: "duplicate-request", i: any): void
|
|
(e: "add-request", i: any): void
|
|
(e: "add-folder", i: any): void
|
|
(e: "edit-folder", i: any): void
|
|
(
|
|
e: "edit-properties",
|
|
payload: {
|
|
collectionIndex: string | null
|
|
collection: HoppCollection<HoppGQLRequest>
|
|
}
|
|
): void
|
|
(e: "edit-collection"): void
|
|
(e: "select-request", i: any): void
|
|
(
|
|
e: "drop-request",
|
|
payload: {
|
|
folderPath: string
|
|
requestIndex: string
|
|
collectionIndex: number | null
|
|
}
|
|
): void
|
|
}>()
|
|
|
|
// Template refs
|
|
const tippyActions = ref<any | null>(null)
|
|
const options = ref<any | null>(null)
|
|
const requestAction = ref<any | null>(null)
|
|
const folderAction = ref<any | null>(null)
|
|
const edit = ref<any | null>(null)
|
|
const deleteAction = ref<any | null>(null)
|
|
|
|
const showChildren = ref(false)
|
|
const dragging = ref(false)
|
|
|
|
const confirmRemove = ref(false)
|
|
|
|
const isSelected = computed(
|
|
() =>
|
|
props.picked?.pickedType === "gql-my-collection" &&
|
|
props.picked?.collectionIndex === props.collectionIndex
|
|
)
|
|
const collectionIcon = computed(() => {
|
|
if (isSelected.value) return IconCheckCircle
|
|
else if (!showChildren.value && !props.isFiltered) return IconFolder
|
|
else if (!showChildren.value || props.isFiltered) return IconFolderOpen
|
|
return IconFolder
|
|
})
|
|
|
|
const pick = () => {
|
|
emit("select", {
|
|
pickedType: "gql-my-collection",
|
|
collectionIndex: props.collectionIndex,
|
|
})
|
|
}
|
|
|
|
const toggleShowChildren = () => {
|
|
if (props.saveRequest) {
|
|
pick()
|
|
}
|
|
|
|
showChildren.value = !showChildren.value
|
|
}
|
|
|
|
const removeCollection = () => {
|
|
// Cancel pick if picked collection is deleted
|
|
if (
|
|
props.picked?.pickedType === "gql-my-collection" &&
|
|
props.picked?.collectionIndex === props.collectionIndex
|
|
) {
|
|
emit("select", null)
|
|
}
|
|
|
|
const possibleTabs = tabs.getTabsRefTo((tab) => {
|
|
const ctx = tab.document.saveContext
|
|
|
|
if (!ctx) return false
|
|
|
|
return (
|
|
ctx.originLocation === "user-collection" &&
|
|
ctx.folderPath.startsWith(props.collectionIndex.toString())
|
|
)
|
|
})
|
|
|
|
for (const tab of possibleTabs) {
|
|
tab.value.document.saveContext = undefined
|
|
tab.value.document.isDirty = true
|
|
}
|
|
|
|
removeGraphqlCollection(props.collectionIndex, props.collection.id)
|
|
toast.success(`${t("state.deleted")}`)
|
|
}
|
|
|
|
const dropEvent = ({ dataTransfer }: any) => {
|
|
dragging.value = !dragging.value
|
|
const folderPath = dataTransfer.getData("folderPath")
|
|
const requestIndex = dataTransfer.getData("requestIndex")
|
|
emit("drop-request", {
|
|
folderPath,
|
|
requestIndex,
|
|
collectionIndex: props.collectionIndex,
|
|
})
|
|
}
|
|
</script>
|