platform/plugins/tracker-resources/src/components/issues/ParentNamesPresenter.svelte
Alexander Platov b5a74cdbc9
TSK-856. Fixed layout in Issues (#2781)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2023-03-21 08:49:29 +07:00

74 lines
1.9 KiB
Svelte
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
// Copyright © 2022 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<script lang="ts">
import type { Issue, IssueParentInfo } from '@hcengineering/tracker'
import { showPanel } from '@hcengineering/ui'
import tracker from '../../plugin'
export let value: Issue | undefined
export let maxWidth = ''
function handleIssueEditorOpened (parent: IssueParentInfo) {
if (value === undefined) return
showPanel(tracker.component.EditIssue, parent.parentId, value._class, 'content')
}
</script>
{#if value}
<div class="root" style:max-width={maxWidth}>
<span class="names">
{#each value.parents as parentInfo}
<!-- svelte-ignore a11y-click-events-have-key-events -->
<span
class="name overflow-label cursor-pointer"
title={parentInfo.parentTitle}
on:click={() => handleIssueEditorOpened(parentInfo)}
>
{parentInfo.parentTitle}
</span>
{/each}
</span>
</div>
{/if}
<style lang="scss">
.root {
display: flex;
margin-left: 0;
min-width: 0;
.names {
display: inline-flex;
min-width: 0;
color: var(--content-color);
}
.name {
&:hover {
color: var(--caption-color);
text-decoration: underline;
}
&:active {
color: var(--accent-color);
}
&::before {
content: '';
padding: 0 0.25rem;
}
}
}
</style>