2023-09-19 20:38:17 +08:00
|
|
|
<template>
|
2023-11-23 18:30:49 +08:00
|
|
|
<transition enter-from-class="translate-x-full w-0"
|
2023-11-14 00:07:13 +08:00
|
|
|
enter-active-class="transition-all ease-sharp duration-[588ms]"
|
|
|
|
leave-active-class="transition-all ease-sharp duration-[588ms]"
|
|
|
|
leave-to-class="translate-x-full w-0">
|
2023-11-10 17:15:03 +08:00
|
|
|
<div ref="wrapper" v-show="isShowing" id="repository-item-sidebar-wrapper"
|
2023-11-14 00:07:13 +08:00
|
|
|
class='items-sidebar-wrapper bg-white gap-2.5 self-stretch rounded-tl-4 rounded-bl-4 shadow-lg h-full w-[565px]'>
|
2023-11-10 17:15:03 +08:00
|
|
|
|
|
|
|
<div id="repository-item-sidebar" class="w-full h-full pl-6 bg-white flex flex-col">
|
|
|
|
|
2023-11-10 17:50:32 +08:00
|
|
|
<div ref="stickyHeaderRef" id="sticky-header-wrapper"
|
|
|
|
class="sticky top-0 right-0 bg-white flex z-50 flex-col h-[78px] pt-6">
|
2023-11-10 17:15:03 +08:00
|
|
|
<div class="header flex w-full h-[30px] pr-6">
|
|
|
|
<repository-item-sidebar-title v-if="defaultColumns"
|
|
|
|
:editable="permissions?.can_manage && !defaultColumns?.archived" :name="defaultColumns.name"
|
|
|
|
@update="update"></repository-item-sidebar-title>
|
2023-11-29 17:59:24 +08:00
|
|
|
<i id="close-icon" @click="toggleShowHideSidebar(null)"
|
2023-11-10 17:15:03 +08:00
|
|
|
class="sn-icon sn-icon-close ml-auto cursor-pointer my-auto mx-0"></i>
|
|
|
|
</div>
|
|
|
|
<div id="divider" class="w-500 bg-sn-light-grey flex items-center self-stretch h-px mt-6 mr-6"></div>
|
2023-09-22 22:08:43 +08:00
|
|
|
</div>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<div ref="bodyWrapper" id="body-wrapper" class="overflow-y-auto overflow-x-hidden h-[calc(100%-78px)] pt-6 ">
|
|
|
|
<div v-if="dataLoading" class="h-full flex flex-grow-1">
|
|
|
|
<div class="sci-loader"></div>
|
|
|
|
</div>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-16 23:25:34 +08:00
|
|
|
<div v-else class="flex flex-1 flex-grow-1 justify-between" ref="scrollSpyContent" id="scrollSpyContent">
|
2023-10-19 17:36:12 +08:00
|
|
|
|
2023-11-29 17:59:24 +08:00
|
|
|
<div id="left-col" class="flex flex-col gap-4 max-w-[350px]">
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- INFORMATION -->
|
|
|
|
<section id="information-section">
|
|
|
|
<div ref="information-label" id="information-label"
|
|
|
|
class="font-inter text-lg font-semibold leading-7 mb-4 transition-colors duration-300">{{
|
|
|
|
i18n.t('repositories.item_card.section.information') }}
|
|
|
|
</div>
|
|
|
|
<div v-if="defaultColumns">
|
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
<!-- REPOSITORY NAME -->
|
|
|
|
<div class="flex flex-col ">
|
|
|
|
<span class="inline-block font-semibold pb-[6px]">{{
|
|
|
|
i18n.t('repositories.item_card.default_columns.repository_name') }}</span>
|
|
|
|
<span class="repository-name text-sn-dark-grey line-clamp-3" :title="repository?.name">
|
|
|
|
{{ repository?.name }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<div class="sci-divider"></div>
|
2023-10-13 22:45:23 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- CODE -->
|
|
|
|
<div class="flex flex-col ">
|
|
|
|
<span class="inline-block font-semibold pb-[6px]">{{
|
|
|
|
i18n.t('repositories.item_card.default_columns.id')
|
|
|
|
}}</span>
|
|
|
|
<span class="inline-block text-sn-dark-grey line-clamp-3" :title="defaultColumns?.code">
|
|
|
|
{{ defaultColumns?.code }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-09-22 22:08:43 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<div class="sci-divider"></div>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- ADDED ON -->
|
|
|
|
<div class="flex flex-col ">
|
|
|
|
<span class="inline-block font-semibold pb-[6px]">{{
|
|
|
|
i18n.t('repositories.item_card.default_columns.added_on')
|
|
|
|
}}</span>
|
|
|
|
<span class="inline-block text-sn-dark-grey" :title="defaultColumns?.added_on">
|
|
|
|
{{ defaultColumns?.added_on }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<div class="sci-divider"></div>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- ADDED BY -->
|
|
|
|
<div class="flex flex-col ">
|
|
|
|
<span class="inline-block font-semibold pb-[6px]">{{
|
|
|
|
i18n.t('repositories.item_card.default_columns.added_by')
|
|
|
|
}}</span>
|
|
|
|
<span class="inline-block text-sn-dark-grey line-clamp-3" :title="defaultColumns?.added_by">
|
|
|
|
{{ defaultColumns?.added_by }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-10-16 16:51:08 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- ARCHIVED ON -->
|
|
|
|
<div v-if="defaultColumns.archived_on" class="flex flex-col ">
|
|
|
|
<div class="sci-divider pb-4"></div>
|
|
|
|
<span class="inline-block font-semibold pb-[6px]">{{
|
|
|
|
i18n.t('repositories.item_card.default_columns.archived_on')
|
|
|
|
}}</span>
|
|
|
|
<span class="inline-block text-sn-dark-grey" :title="defaultColumns.archived_on">
|
|
|
|
{{ defaultColumns.archived_on }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-10-16 16:51:08 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- ARCHIVED BY -->
|
|
|
|
<div v-if="defaultColumns.archived_by" class="flex flex-col ">
|
|
|
|
<div class="sci-divider pb-4"></div>
|
|
|
|
<span class="inline-block font-semibold pb-[6px]">{{
|
|
|
|
i18n.t('repositories.item_card.default_columns.archived_by')
|
|
|
|
}}</span>
|
|
|
|
<span class="inline-block text-sn-dark-grey" :title="defaultColumns.archived_by.full_name">
|
|
|
|
{{ defaultColumns.archived_by.full_name }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-10-16 16:51:08 +08:00
|
|
|
</div>
|
2023-09-22 22:08:43 +08:00
|
|
|
</div>
|
2023-10-19 17:36:12 +08:00
|
|
|
</section>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<div id="divider" class="w-500 bg-sn-light-grey flex items-center self-stretch h-px "></div>
|
2023-10-13 22:45:23 +08:00
|
|
|
|
2023-11-14 22:28:57 +08:00
|
|
|
<!-- CUSTOM COLUMNS, RELATIONSHIPS, ASSIGNED, QR CODE -->
|
2023-11-10 17:15:03 +08:00
|
|
|
<div id="custom-col-assigned-qr-wrapper" class="flex flex-col gap-4">
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- CUSTOM COLUMNS -->
|
|
|
|
<section id="custom-columns-section" class="flex flex-col min-h-[64px] h-auto">
|
|
|
|
<div ref="custom-columns-label" id="custom-columns-label"
|
|
|
|
class="font-inter text-lg font-semibold leading-7 pb-4 transition-colors duration-300">
|
|
|
|
{{ i18n.t('repositories.item_card.custom_columns_label') }}
|
2023-11-14 21:04:46 +08:00
|
|
|
</div>
|
2023-11-10 17:15:03 +08:00
|
|
|
<CustomColumns :customColumns="customColumns" :repositoryRowId="repositoryRowId"
|
|
|
|
:repositoryId="repository?.id" :inArchivedRepositoryRow="defaultColumns?.archived"
|
|
|
|
:permissions="permissions" :updatePath="updatePath" :actions="actions" @update="update" />
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<div id="divider" class="w-500 bg-sn-light-grey flex px-8 items-center self-stretch h-px"></div>
|
|
|
|
|
2023-11-14 22:28:57 +08:00
|
|
|
<!-- RELATIONSHIPS -->
|
|
|
|
<section id="relationships-section" class="flex flex-col" ref="relationshipsSectionRef">
|
|
|
|
<div class="flex flex-row text-base font-semibold w-[350px] pb-4 leading-7 items-center justify-between transition-colors duration-300"
|
2023-11-14 23:58:10 +08:00
|
|
|
ref="relationships-label">
|
2023-11-14 22:28:57 +08:00
|
|
|
{{ i18n.t('repositories.item_card.section.relationships') }}
|
2023-11-14 21:04:46 +08:00
|
|
|
</div>
|
2023-11-14 22:28:57 +08:00
|
|
|
<template v-if="!parentsCount && !childrenCount">
|
|
|
|
<div class="text-sn-dark-grey">
|
|
|
|
{{ i18n.t('repositories.item_card.relationships.empty') }}
|
2023-11-14 21:04:46 +08:00
|
|
|
</div>
|
2023-11-14 22:28:57 +08:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<div class="font-inter text-sm leading-5 w-full">
|
2023-11-12 18:21:05 +08:00
|
|
|
<div class="flex flex-row justify-between">
|
|
|
|
<div class="mb-3 font-semibold">{{ i18n.t('repositories.item_card.relationships.parents.count', { count: parentsCount || 0 }) }}</div>
|
|
|
|
<a class="btn-text-link font-normal" @click="handleOpenAddRelationshipsModal($event, 'parent')">
|
|
|
|
{{ i18n.t('repositories.item_card.add_relationship_button_text') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
2023-11-14 22:28:57 +08:00
|
|
|
<div v-if="parentsCount">
|
|
|
|
<details v-for="(parent) in parents" @toggle="updateOpenState(parent.code, $event.target.open)" :key="parent.code" class="flex flex-col font-normal gap-5 group cursor-default">
|
|
|
|
<summary class="flex flex-row gap-3 mb-3 items-center">
|
|
|
|
<img :src="icons.delimiter_path" class="w-3 h-3 cursor-pointer" :class="{ 'rotate-90': relationshipDetailsState[parent.code] }" />
|
|
|
|
<span>
|
|
|
|
<span>{{ i18n.t('repositories.item_card.relationships.item') }}</span>
|
|
|
|
<a :href="parent.path" class="record-info-link btn-text-link !text-sn-science-blue">{{ parent.name }}</a>
|
|
|
|
<a v-if="permissions?.can_manage" href="/" class="opacity-0 group-hover:opacity-100 cursor-pointer">
|
|
|
|
<img :src="icons.unlink_path" />
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</summary>
|
|
|
|
<p class="flex flex-col gap-3 mb-5 ml-6">
|
|
|
|
<span>
|
|
|
|
{{ i18n.t('repositories.item_card.relationships.id', { code: parent.code }) }}
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
<span>{{ i18n.t('repositories.item_card.relationships.inventory') }}</span>
|
|
|
|
<a :href="parent.repository_path" class="record-info-link btn-text-link !text-sn-science-blue">{{ parent.repository_name }}</a>
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
<div v-else class="text-sn-dark-grey">
|
|
|
|
{{ i18n.t('repositories.item_card.relationships.parents.empty') }}
|
|
|
|
</div>
|
2023-11-14 21:04:46 +08:00
|
|
|
</div>
|
|
|
|
|
2023-11-14 22:28:57 +08:00
|
|
|
<div class="sci-divider pb-4"></div>
|
|
|
|
|
|
|
|
<div class="font-inter text-sm leading-5 w-full">
|
2023-11-12 18:21:05 +08:00
|
|
|
<div class="flex flex-row justify-between">
|
|
|
|
<div class="mb-3 font-semibold">{{ i18n.t('repositories.item_card.relationships.children.count', { count: childrenCount || 0 }) }}</div>
|
|
|
|
<a class="btn-text-link font-normal" @click="handleOpenAddRelationshipsModal($event, 'child')">
|
|
|
|
{{ i18n.t('repositories.item_card.add_relationship_button_text') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
2023-11-14 22:28:57 +08:00
|
|
|
<div v-if="childrenCount">
|
|
|
|
<details v-for="(child) in children" :key="child.code" @toggle="updateOpenState(child.code, $event.target.open)" class="flex flex-col font-normal gap-5 group">
|
|
|
|
<summary class="flex flex-row gap-3 mb-3 items-center">
|
|
|
|
<img :src="icons.delimiter_path" class="w-3 h-3 cursor-pointer" :class="{ 'rotate-90': relationshipDetailsState[child.code] }"/>
|
|
|
|
<span class="group/child">
|
|
|
|
<span>{{ i18n.t('repositories.item_card.relationships.item') }}</span>
|
|
|
|
<a :href="child.path" class="record-info-link btn-text-link !text-sn-science-blue">{{ child.name }}</a>
|
|
|
|
<a v-if="permissions?.can_manage" href="/" class="opacity-0 group-hover:opacity-100 cursor-pointer">
|
|
|
|
<img :src="icons.unlink_path" />
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</summary>
|
|
|
|
<p class="flex flex-col gap-3 mb-5 ml-6">
|
|
|
|
<span>{{ i18n.t('repositories.item_card.relationships.id', { code: child.code }) }}</span>
|
|
|
|
<span>
|
|
|
|
<span>{{ i18n.t('repositories.item_card.relationships.inventory') }}</span>
|
|
|
|
<a :href="child.repository_path" class="record-info-link btn-text-link !text-sn-science-blue">{{ child.repository_name }}</a>
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
<div v-else class="text-sn-dark-grey">
|
|
|
|
{{ i18n.t('repositories.item_card.relationships.children.empty') }}
|
|
|
|
</div>
|
2023-10-19 19:35:37 +08:00
|
|
|
</div>
|
2023-11-14 22:28:57 +08:00
|
|
|
</template>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<div id="divider" class="w-500 bg-sn-light-grey flex px-8 items-center self-stretch h-px"></div>
|
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- ASSIGNED -->
|
|
|
|
<section id="assigned-section" class="flex flex-col" ref="assignedSectionRef">
|
|
|
|
<div
|
2023-11-26 18:29:04 +08:00
|
|
|
class="flex flex-row text-lg font-semibold w-[350px] pb-4 leading-7 items-center justify-between transition-colors duration-300"
|
2023-11-16 23:25:34 +08:00
|
|
|
ref="assigned-label"
|
|
|
|
id="assigned-label"
|
|
|
|
>
|
2023-11-10 17:15:03 +08:00
|
|
|
{{ i18n.t('repositories.item_card.section.assigned', {
|
|
|
|
count: assignedModules ?
|
|
|
|
assignedModules.total_assigned_size : 0
|
|
|
|
}) }}
|
|
|
|
<a v-if="!defaultColumns?.archived && (inRepository || actions?.assign_repository_row)"
|
|
|
|
class="btn-text-link font-normal" :class="{
|
|
|
|
'assign-inventory-button': actions?.assign_repository_row,
|
|
|
|
'disabled': actions?.assign_repository_row && actions.assign_repository_row.disabled
|
|
|
|
}"
|
|
|
|
:data-assign-url="actions?.assign_repository_row ? actions.assign_repository_row.assign_url : ''"
|
|
|
|
:data-repository-row-id="repositoryRowId" @click="showRepositoryAssignModal">
|
|
|
|
{{ i18n.t('repositories.item_card.assigned.assign') }}
|
|
|
|
</a>
|
2023-10-13 22:45:23 +08:00
|
|
|
</div>
|
2023-11-10 17:15:03 +08:00
|
|
|
<div v-if="assignedModules && assignedModules.total_assigned_size > 0" class="flex flex-col gap-4">
|
|
|
|
<div v-if="privateModuleSize() > 0" class="flex flex-col gap-4">
|
|
|
|
<div class="text-sn-dark-grey">{{ i18n.t('repositories.item_card.assigned.private',
|
|
|
|
{ count: privateModuleSize() }) }}
|
2023-10-13 22:45:23 +08:00
|
|
|
</div>
|
2023-11-10 17:50:32 +08:00
|
|
|
<div class="sci-divider" :class="{ 'hidden': assignedModules?.viewable_modules?.length == 0 }">
|
2023-10-13 22:45:23 +08:00
|
|
|
</div>
|
2023-09-22 22:08:43 +08:00
|
|
|
</div>
|
2023-11-10 17:15:03 +08:00
|
|
|
<div v-for="(assigned, index) in assignedModules.viewable_modules" :key="`assigned_module_${index}`"
|
|
|
|
class="flex flex-col w-[350px] h-auto gap-4">
|
2023-11-26 18:29:04 +08:00
|
|
|
<div class="flex flex-col gap-2">
|
2023-11-10 17:15:03 +08:00
|
|
|
<div v-for="(item, index_assigned) in assigned" :key="`assigned_element_${index_assigned}`">
|
|
|
|
{{ i18n.t(`repositories.item_card.assigned.labels.${item.type}`) }}
|
|
|
|
<a :href="item.url" class="text-sn-science-blue hover:text-sn-science-blue hover:no-underline">
|
|
|
|
{{ item.archived ? i18n.t('labels.archived') : '' }} {{ item.value }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="sci-divider"
|
|
|
|
:class="{ 'hidden': index === assignedModules?.viewable_modules?.length - 1 }"></div>
|
2023-09-22 22:08:43 +08:00
|
|
|
</div>
|
2023-09-25 14:29:54 +08:00
|
|
|
</div>
|
2023-11-10 17:15:03 +08:00
|
|
|
<div v-else class="text-sn-dark-grey">
|
|
|
|
{{ i18n.t('repositories.item_card.assigned.empty') }}
|
|
|
|
</div>
|
|
|
|
</section>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<div id="divider" class="w-500 bg-sn-light-grey flex px-8 items-center self-stretch h-px "></div>
|
2023-09-19 20:38:17 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- QR -->
|
|
|
|
<section id="qr-section" ref="QR-label">
|
2023-11-26 18:29:04 +08:00
|
|
|
<div id="QR-label" class="font-inter text-lg font-semibold leading-7 mb-4 mt-0 transition-colors duration-300">
|
2023-11-10 17:15:03 +08:00
|
|
|
{{ i18n.t('repositories.item_card.section.qr') }}
|
|
|
|
</div>
|
|
|
|
<div class="bar-code-container">
|
|
|
|
<canvas id="bar-code-canvas" class="hidden"></canvas>
|
|
|
|
<img :src="barCodeSrc" class="w-[90px]" />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
2023-10-13 22:45:23 +08:00
|
|
|
</div>
|
2023-09-22 22:08:43 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- NAVIGATION -->
|
2023-11-16 23:25:34 +08:00
|
|
|
<div v-if="isShowing && !dataLoading" ref="navigationRef" id="navigation"
|
2023-11-27 17:41:59 +08:00
|
|
|
class="flex item-end gap-x-4 min-w-[130px] min-h-[130px] h-fit sticky top-0 pr-6 [scrollbar-gutter:stable_both-edges] ">
|
2023-11-10 17:15:03 +08:00
|
|
|
<scroll-spy :itemsToCreate="[
|
2023-11-27 17:41:59 +08:00
|
|
|
{
|
|
|
|
id: 'highlight-item-1',
|
|
|
|
textId: 'text-item-1',
|
|
|
|
labelAlias: 'information_label',
|
|
|
|
label: 'information-label',
|
|
|
|
sectionId: 'information-section'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'highlight-item-2',
|
|
|
|
textId: 'text-item-2',
|
|
|
|
labelAlias: 'custom_columns_label',
|
|
|
|
label: 'custom-columns-label',
|
|
|
|
sectionId: 'custom-columns-section'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'highlight-item-3',
|
|
|
|
textId: 'text-item-3',
|
2023-11-29 22:16:22 +08:00
|
|
|
labelAlias: 'relationships_label',
|
|
|
|
label: 'relationships-label',
|
|
|
|
sectionId: 'relationships-section' },
|
|
|
|
{
|
|
|
|
id: 'highlight-item-4',
|
|
|
|
textId: 'text-item-4',
|
2023-11-27 17:41:59 +08:00
|
|
|
labelAlias: 'assigned_label',
|
|
|
|
label: 'assigned-label',
|
|
|
|
sectionId: 'assigned-section'
|
|
|
|
},
|
|
|
|
{
|
2023-11-29 22:16:22 +08:00
|
|
|
id: 'highlight-item-5',
|
|
|
|
textId: 'text-item-5',
|
2023-11-27 17:41:59 +08:00
|
|
|
labelAlias: 'QR_label',
|
|
|
|
label: 'QR-label',
|
|
|
|
sectionId: 'qr-section'
|
|
|
|
}
|
2023-11-10 17:50:32 +08:00
|
|
|
]" v-show="isShowing">
|
2023-11-10 17:15:03 +08:00
|
|
|
</scroll-spy>
|
|
|
|
</div>
|
2023-10-13 22:45:23 +08:00
|
|
|
</div>
|
2023-09-22 22:25:09 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
<!-- BOTTOM -->
|
|
|
|
<div id="bottom" v-show="!dataLoading" class="h-[100px] flex flex-col justify-end mt-4 mr-6"
|
|
|
|
:class="{ 'pb-6': customColumns?.length }">
|
|
|
|
<div id="divider" class="w-500 bg-sn-light-grey flex px-8 items-center self-stretch h-px mb-6"></div>
|
|
|
|
<div id="bottom-button-wrapper" class="flex h-10 justify-end">
|
|
|
|
<button type="button" class="btn btn-primary print-label-button"
|
|
|
|
:data-rows="JSON.stringify([repositoryRowId])">
|
|
|
|
{{ i18n.t('repositories.item_card.print_label') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
2023-10-13 22:45:23 +08:00
|
|
|
</div>
|
2023-09-19 20:38:17 +08:00
|
|
|
</div>
|
2023-09-22 22:08:43 +08:00
|
|
|
|
2023-11-10 17:15:03 +08:00
|
|
|
</div>
|
2023-09-19 20:38:17 +08:00
|
|
|
</div>
|
2023-11-10 17:15:03 +08:00
|
|
|
</transition>
|
2023-09-19 20:38:17 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-10-24 21:49:37 +08:00
|
|
|
import InlineEdit from '../shared/inline_edit.vue';
|
2023-09-22 22:08:43 +08:00
|
|
|
import ScrollSpy from './repository_values/ScrollSpy.vue';
|
2023-10-24 02:57:12 +08:00
|
|
|
import CustomColumns from './customColumns.vue';
|
2023-11-14 23:58:10 +08:00
|
|
|
import RepositoryItemSidebarTitle from './Title.vue';
|
2023-09-19 20:38:17 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'RepositoryItemSidebar',
|
|
|
|
components: {
|
2023-10-24 02:57:12 +08:00
|
|
|
CustomColumns,
|
2023-10-24 21:49:37 +08:00
|
|
|
'repository-item-sidebar-title': RepositoryItemSidebarTitle,
|
|
|
|
'inline-edit': InlineEdit,
|
|
|
|
'scroll-spy': ScrollSpy,
|
2023-09-19 20:38:17 +08:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2023-09-22 22:08:43 +08:00
|
|
|
currentItemUrl: null,
|
2023-10-24 02:57:12 +08:00
|
|
|
updatePath: null,
|
2023-09-22 22:08:43 +08:00
|
|
|
dataLoading: false,
|
2023-10-12 21:10:54 +08:00
|
|
|
repositoryRowId: null,
|
2023-10-12 20:43:17 +08:00
|
|
|
repository: null,
|
2023-09-19 20:38:17 +08:00
|
|
|
defaultColumns: null,
|
|
|
|
customColumns: null,
|
2023-11-14 21:04:46 +08:00
|
|
|
parentsCount: 0,
|
|
|
|
childrenCount: 0,
|
|
|
|
parents: null,
|
|
|
|
children: null,
|
2023-09-25 14:29:54 +08:00
|
|
|
assignedModules: null,
|
2023-09-19 20:38:17 +08:00
|
|
|
isShowing: false,
|
2023-09-27 15:55:53 +08:00
|
|
|
barCodeSrc: null,
|
2023-10-12 21:46:13 +08:00
|
|
|
permissions: null,
|
|
|
|
repositoryRowUrl: null,
|
|
|
|
actions: null,
|
|
|
|
myModuleId: null,
|
2023-11-14 21:04:46 +08:00
|
|
|
inRepository: false,
|
|
|
|
icons: null,
|
|
|
|
relationshipDetailsState: {},
|
2023-11-14 23:58:10 +08:00
|
|
|
initialSectionId: null,
|
|
|
|
};
|
2023-09-19 20:38:17 +08:00
|
|
|
},
|
|
|
|
created() {
|
|
|
|
window.repositoryItemSidebarComponent = this;
|
|
|
|
},
|
2023-10-19 17:23:36 +08:00
|
|
|
computed: {
|
|
|
|
repositoryRowName() {
|
|
|
|
return this.defaultColumns?.archived ? `${I18n.t('labels.archived')} ${this.defaultColumns?.name}` : this.defaultColumns?.name;
|
2023-11-14 23:58:10 +08:00
|
|
|
},
|
2023-10-19 17:23:36 +08:00
|
|
|
},
|
2023-11-14 21:04:46 +08:00
|
|
|
watch: {
|
|
|
|
parents() {
|
2023-11-14 23:58:10 +08:00
|
|
|
this.parents.forEach((parent) => {
|
2023-11-12 18:21:05 +08:00
|
|
|
this.relationshipDetailsState[parent.code] = false;
|
2023-11-14 21:04:46 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
children() {
|
2023-11-14 23:58:10 +08:00
|
|
|
this.children.forEach((child) => {
|
2023-11-12 18:21:05 +08:00
|
|
|
this.relationshipDetailsState[child.code] = false;
|
2023-11-14 21:04:46 +08:00
|
|
|
});
|
2023-11-14 23:58:10 +08:00
|
|
|
},
|
2023-11-14 21:04:46 +08:00
|
|
|
},
|
2023-10-12 21:26:41 +08:00
|
|
|
mounted() {
|
|
|
|
// Add a click event listener to the document
|
2023-10-24 21:49:37 +08:00
|
|
|
document.addEventListener('mousedown', this.handleOutsideClick);
|
2023-10-12 21:46:13 +08:00
|
|
|
this.inRepository = $('.assign-items-to-task-modal-container').length > 0;
|
2023-10-12 21:26:41 +08:00
|
|
|
},
|
2023-11-09 02:32:43 +08:00
|
|
|
beforeUnmount() {
|
2023-09-19 20:38:17 +08:00
|
|
|
delete window.repositoryItemSidebarComponent;
|
2023-10-24 21:49:37 +08:00
|
|
|
document.removeEventListener('mousedown', this.handleOutsideClick);
|
2023-09-19 20:38:17 +08:00
|
|
|
},
|
|
|
|
methods: {
|
2023-11-12 18:21:05 +08:00
|
|
|
handleOpenAddRelationshipsModal(event, parentOrChild) {
|
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
|
|
|
window.repositoryItemRelationshipsModal.show(parentOrChild);
|
|
|
|
},
|
2023-10-12 21:26:41 +08:00
|
|
|
handleOutsideClick(event) {
|
2023-11-14 23:58:10 +08:00
|
|
|
if (!this.isShowing) return;
|
2023-10-12 21:26:41 +08:00
|
|
|
|
2023-10-19 15:48:20 +08:00
|
|
|
// Check if the clicked element is not within the sidebar and it's not another item link or belogs to modals
|
2023-11-07 19:39:07 +08:00
|
|
|
const selectors = ['a', '.modal', '.label-printing-progress-modal', '.atwho-view'];
|
2023-10-19 15:48:20 +08:00
|
|
|
|
2023-11-14 23:58:10 +08:00
|
|
|
if (!$(event.target).parents('#repository-item-sidebar-wrapper').length
|
|
|
|
&& !selectors.some((selector) => event.target.closest(selector))) {
|
2023-10-19 15:48:20 +08:00
|
|
|
this.toggleShowHideSidebar(null);
|
2023-10-12 21:26:41 +08:00
|
|
|
}
|
|
|
|
},
|
2023-11-14 23:58:10 +08:00
|
|
|
toggleShowHideSidebar(repositoryRowUrl, myModuleId = null, initialSectionId = null) {
|
|
|
|
if (initialSectionId) {
|
|
|
|
this.initialSectionId = initialSectionId;
|
|
|
|
} else this.initialSectionId = null;
|
|
|
|
|
2023-09-22 22:08:43 +08:00
|
|
|
// initial click
|
|
|
|
if (this.currentItemUrl === null) {
|
2023-10-12 21:46:13 +08:00
|
|
|
this.myModuleId = myModuleId;
|
|
|
|
this.isShowing = true;
|
|
|
|
this.loadRepositoryRow(repositoryRowUrl);
|
|
|
|
this.currentItemUrl = repositoryRowUrl;
|
2023-11-29 17:59:24 +08:00
|
|
|
return;
|
2023-09-22 22:08:43 +08:00
|
|
|
}
|
2023-11-29 17:59:24 +08:00
|
|
|
// same item click
|
|
|
|
if (repositoryRowUrl === this.currentItemUrl) {
|
|
|
|
if (this.isShowing) {
|
|
|
|
this.toggleShowHideSidebar(null);
|
|
|
|
}
|
|
|
|
return;
|
2023-09-22 22:08:43 +08:00
|
|
|
}
|
2023-10-09 23:10:41 +08:00
|
|
|
// explicit close (from emit)
|
2023-11-29 17:59:24 +08:00
|
|
|
if (repositoryRowUrl === null) {
|
2023-10-12 21:46:13 +08:00
|
|
|
this.isShowing = false;
|
|
|
|
this.currentItemUrl = null;
|
|
|
|
this.myModuleId = null;
|
2023-11-29 17:59:24 +08:00
|
|
|
return;
|
2023-10-09 23:10:41 +08:00
|
|
|
}
|
2023-11-14 00:07:13 +08:00
|
|
|
// click on a different item - if the item card is already showing should just fetch new data
|
2023-11-29 17:59:24 +08:00
|
|
|
this.isShowing = true;
|
|
|
|
this.myModuleId = myModuleId;
|
|
|
|
this.loadRepositoryRow(repositoryRowUrl);
|
|
|
|
this.currentItemUrl = repositoryRowUrl;
|
2023-09-19 20:38:17 +08:00
|
|
|
},
|
|
|
|
loadRepositoryRow(repositoryRowUrl) {
|
2023-11-14 23:58:10 +08:00
|
|
|
this.dataLoading = true;
|
2023-09-19 20:38:17 +08:00
|
|
|
$.ajax({
|
|
|
|
method: 'GET',
|
|
|
|
url: repositoryRowUrl,
|
2023-10-12 21:46:13 +08:00
|
|
|
data: { my_module_id: this.myModuleId },
|
2023-09-19 20:38:17 +08:00
|
|
|
dataType: 'json',
|
|
|
|
success: (result) => {
|
2023-10-17 23:09:11 +08:00
|
|
|
this.repositoryRowId = result.id;
|
2023-10-13 17:54:39 +08:00
|
|
|
this.repository = result.repository;
|
2023-10-24 21:49:37 +08:00
|
|
|
this.optionsPath = result.options_path;
|
2023-10-24 02:57:12 +08:00
|
|
|
this.updatePath = result.update_path;
|
2023-10-13 17:54:39 +08:00
|
|
|
this.defaultColumns = result.default_columns;
|
2023-11-14 21:04:46 +08:00
|
|
|
this.parentsCount = result.relationships.parents_count;
|
|
|
|
this.childrenCount = result.relationships.children_count;
|
|
|
|
this.parents = result.relationships.parents;
|
|
|
|
this.children = result.relationships.children;
|
2023-10-13 17:54:39 +08:00
|
|
|
this.customColumns = result.custom_columns;
|
|
|
|
this.assignedModules = result.assigned_modules;
|
2023-10-17 23:09:11 +08:00
|
|
|
this.permissions = result.permissions;
|
2023-10-13 17:54:39 +08:00
|
|
|
this.actions = result.actions;
|
2023-10-17 23:09:11 +08:00
|
|
|
this.dataLoading = false;
|
2023-11-14 21:04:46 +08:00
|
|
|
this.icons = result.icons;
|
2023-10-03 17:11:07 +08:00
|
|
|
this.$nextTick(() => {
|
2023-10-13 17:54:39 +08:00
|
|
|
this.generateBarCode(this.defaultColumns.code);
|
2023-10-03 17:11:07 +08:00
|
|
|
});
|
2023-11-14 23:58:10 +08:00
|
|
|
},
|
2023-09-19 20:38:17 +08:00
|
|
|
});
|
|
|
|
},
|
2023-10-12 21:46:13 +08:00
|
|
|
reload() {
|
2023-10-16 16:51:08 +08:00
|
|
|
if (this.isShowing) {
|
2023-10-12 21:46:13 +08:00
|
|
|
this.loadRepositoryRow(this.currentItemUrl);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
showRepositoryAssignModal() {
|
|
|
|
if (this.inRepository) {
|
|
|
|
window.AssignItemsToTaskModalComponentContainer.showModal([this.repositoryRowId]);
|
|
|
|
}
|
|
|
|
},
|
2023-10-03 17:11:07 +08:00
|
|
|
generateBarCode(text) {
|
2023-10-16 16:51:08 +08:00
|
|
|
if (!text) return;
|
2023-10-03 17:11:07 +08:00
|
|
|
const barCodeCanvas = bwipjs.toCanvas('bar-code-canvas', {
|
|
|
|
bcid: 'qrcode',
|
|
|
|
text,
|
2023-11-14 23:58:10 +08:00
|
|
|
scale: 3,
|
2023-10-03 17:11:07 +08:00
|
|
|
});
|
2023-10-12 21:10:54 +08:00
|
|
|
this.barCodeSrc = barCodeCanvas.toDataURL('image/png');
|
2023-10-03 17:11:07 +08:00
|
|
|
},
|
2023-09-25 14:29:54 +08:00
|
|
|
privateModuleSize() {
|
|
|
|
return this.assignedModules.total_assigned_size - this.assignedModules.viewable_modules.length;
|
2023-10-24 21:49:37 +08:00
|
|
|
},
|
|
|
|
update(params) {
|
|
|
|
$.ajax({
|
|
|
|
method: 'PUT',
|
|
|
|
url: this.updatePath,
|
|
|
|
dataType: 'json',
|
|
|
|
data: {
|
|
|
|
id: this.id,
|
|
|
|
...params,
|
|
|
|
},
|
2023-11-07 19:39:07 +08:00
|
|
|
}).done((response) => {
|
2023-11-20 22:26:01 +08:00
|
|
|
if (response) {
|
2023-11-14 23:58:10 +08:00
|
|
|
this.customColumns = this.customColumns.map((col) => (col.id === response.id ? { ...col, ...response } : col));
|
2023-11-20 22:26:01 +08:00
|
|
|
if ($('.dataTable')[0]) $('.dataTable').DataTable().ajax.reload(null, false);
|
2023-11-07 19:39:07 +08:00
|
|
|
}
|
2023-10-24 21:49:37 +08:00
|
|
|
});
|
2023-11-14 21:04:46 +08:00
|
|
|
},
|
|
|
|
updateOpenState(code, isOpen) {
|
|
|
|
this.$set(this.relationshipDetailsState, code, isOpen);
|
|
|
|
},
|
2023-11-14 23:58:10 +08:00
|
|
|
},
|
|
|
|
};
|
2023-09-19 20:38:17 +08:00
|
|
|
</script>
|