Files
huly-platform/plugins/process-resources/src/components/ExecutonPresenter.svelte
T

60 lines
1.7 KiB
Svelte

<!--
// Copyright © 2025 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 { WithLookup } from '@hcengineering/core'
import { getClient } from '@hcengineering/presentation'
import { Execution } from '@hcengineering/process'
import ErrorPresenter from './ErrorPresenter.svelte'
import { continueExecution } from '../utils'
import { showPopup } from '@hcengineering/ui'
import ExecutionDetails from './ExecutionDetails.svelte'
export let value: WithLookup<Execution>
const client = getClient()
$: process = value?.$lookup?.process ?? client.getModel().findObject(value.process)
function open (): void {
showPopup(
ExecutionDetails,
{
execution: value
},
'top'
)
}
</script>
{#if process}
<div class="flex-row-center flex-gap-2">
<ErrorPresenter value={value.error} on:click={() => continueExecution(value)} />
<div class="overflow-label link" on:click={open}>
{process.name}
</div>
</div>
{/if}
<style>
.link {
color: var(--theme-content-color);
cursor: pointer;
}
.link:hover {
text-decoration: underline;
}
</style>