platform/plugins/tracker-resources/src/components/issues/IssuePresenter.svelte

108 lines
2.9 KiB
Svelte
Raw Normal View History

<!--
// 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 { Ref, WithLookup } from '@hcengineering/core'
import { createQuery } from '@hcengineering/presentation'
import type { Issue, Team } from '@hcengineering/tracker'
import { Icon, showPanel, tooltip } from '@hcengineering/ui'
import tracker from '../../plugin'
export let value: WithLookup<Issue>
export let disableClick = false
export let onClick: (() => void) | undefined = undefined
export let withIcon = false
export let noUnderline = false
// Extra properties
export let teams: Map<Ref<Team>, Team> | undefined = undefined
function handleIssueEditorOpened () {
if (disableClick) {
return
}
if (onClick) {
onClick()
}
showPanel(tracker.component.EditIssue, value._id, value._class, 'content')
}
const spaceQuery = createQuery()
let currentTeam: Team | undefined = value?.$lookup?.space
$: if (teams === undefined) {
if (value && value?.$lookup?.space === undefined) {
spaceQuery.query(tracker.class.Team, { _id: value.space }, (res) => ([currentTeam] = res))
} else {
spaceQuery.unsubscribe()
}
} else {
currentTeam = teams.get(value.space)
}
$: title = currentTeam ? `${currentTeam.identifier}-${value?.number}` : `${value?.number}`
</script>
{#if value}
<!-- svelte-ignore a11y-click-events-have-key-events -->
<span class="issuePresenterRoot" class:noPointer={disableClick} class:noUnderline on:click={handleIssueEditorOpened}>
{#if withIcon}
<div class="mr-2" use:tooltip={{ label: tracker.string.Issue }}>
<Icon icon={tracker.icon.Issues} size={'small'} />
</div>
{/if}
<span class="select-text" title={value?.title}>
{title}
</span>
2022-06-20 14:11:14 +00:00
</span>
{/if}
<style lang="scss">
.issuePresenterRoot {
display: flex;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2022-06-20 14:11:14 +00:00
flex-shrink: 0;
max-width: 5rem;
font-size: 0.8125rem;
color: var(--content-color);
cursor: pointer;
&.noPointer {
cursor: default;
}
&.noUnderline {
color: var(--caption-color);
font-weight: 500;
}
&:not(.noUnderline) {
&:hover {
color: var(--caption-color);
text-decoration: underline;
}
}
&:active {
color: var(--accent-color);
}
}
</style>