ec092fb042
fix: gqlgen regenerated
172 lines
5.3 KiB
Vue
172 lines
5.3 KiB
Vue
<template>
|
|
<div
|
|
class="border border-outline-2 rounded-md space-y-2 overflow-hidden bg-foundation shadow-sm"
|
|
>
|
|
<button
|
|
class="flex space-x-1.5 items-center max-w-full w-full px-2 py-1 h-8 transition hover:bg-primary-muted bg-foundation"
|
|
@click="expanded = !expanded"
|
|
>
|
|
<div>
|
|
<Component
|
|
:is="statusMetaData.icon"
|
|
v-tippy="functionRun.status"
|
|
:class="['h-4 w-4 outline-none', statusMetaData.iconColor]"
|
|
/>
|
|
</div>
|
|
<AutomateFunctionLogo :logo="functionRun.function?.logo" size="xs" />
|
|
<div class="font-medium text-body-2xs truncate">
|
|
{{ automationName ? automationName + ' / ' : ''
|
|
}}{{ functionRun.function?.name || 'Unknown function' }}
|
|
</div>
|
|
|
|
<div class="h-full grow flex justify-end">
|
|
<button
|
|
class="hover:bg-primary-muted hover:text-primary flex h-full items-center justify-center rounded"
|
|
>
|
|
<ChevronDownIcon
|
|
:class="`h-3 w-3 transition ${!expanded ? '-rotate-90' : 'rotate-0'}`"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</button>
|
|
<div v-if="expanded" class="px-3 pb-2 space-y-4">
|
|
<!-- Status message -->
|
|
<div class="space-y-1">
|
|
<div class="text-body-2xs font-medium text-foreground">Status</div>
|
|
<div class="text-body-2xs text-foreground-2 whitespace-pre-wrap">
|
|
{{ statusMessage }}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Attachments -->
|
|
<div
|
|
v-if="attachments.length !== 0"
|
|
class="border-t pt-2 border-outline-2 space-y-1"
|
|
>
|
|
<div class="text-body-2xs font-medium text-foreground-2">Attachments</div>
|
|
<div class="ml-[2px] justify-start">
|
|
<AutomateRunsAttachmentButton
|
|
v-for="id in attachments"
|
|
:key="id"
|
|
:blob-id="id"
|
|
:project-id="projectId"
|
|
size="xs"
|
|
link
|
|
class="mr-2"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<!-- Context view -->
|
|
<div v-if="hasValidContextView" class="border-t pt-2 border-outline-2">
|
|
<div>
|
|
<FormButton
|
|
size="sm"
|
|
color="outline"
|
|
class="truncate max-w-full"
|
|
:to="functionRun.contextView || ''"
|
|
>
|
|
Open view
|
|
</FormButton>
|
|
</div>
|
|
</div>
|
|
<!-- Results -->
|
|
<div
|
|
v-if="!!results?.values.objectResults.length"
|
|
class="border-t pt-2 border-outline-2"
|
|
>
|
|
<div class="text-body-2xs font-medium text-foreground-2 mb-2">Results</div>
|
|
<div class="space-y-1">
|
|
<AutomateViewerPanelFunctionRunRowObjectResult
|
|
v-for="(result, index) in results.values.objectResults.slice(
|
|
0,
|
|
pageRunLimit
|
|
)"
|
|
:key="index"
|
|
:function-id="functionRun.function?.id"
|
|
:result="result"
|
|
/>
|
|
<FormButton
|
|
v-if="pageRunLimit < results.values.objectResults.length"
|
|
size="sm"
|
|
color="outline"
|
|
class="w-full"
|
|
@click="pageRunLimit += 10"
|
|
>
|
|
Load more ({{ results.values.objectResults.length - pageRunLimit }}
|
|
hidden results)
|
|
</FormButton>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ChevronDownIcon } from '@heroicons/vue/24/outline'
|
|
import { AutomateRunStatus } from '~~/lib/common/generated/gql/graphql'
|
|
import type { AutomateViewerPanelFunctionRunRow_AutomateFunctionRunFragment } from '~~/lib/common/generated/gql/graphql'
|
|
import { useInjectedViewerState } from '~~/lib/viewer/composables/setup'
|
|
import { graphql } from '~/lib/common/generated/gql'
|
|
import { useAutomationFunctionRunResults } from '~/lib/automate/composables/runs'
|
|
import { useRunStatusMetadata } from '~/lib/automate/composables/runStatus'
|
|
import { doesRouteFitTarget } from '~/lib/common/helpers/route'
|
|
|
|
graphql(`
|
|
fragment AutomateViewerPanelFunctionRunRow_AutomateFunctionRun on AutomateFunctionRun {
|
|
id
|
|
results
|
|
status
|
|
statusMessage
|
|
contextView
|
|
function {
|
|
id
|
|
logo
|
|
name
|
|
}
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
`)
|
|
|
|
const props = defineProps<{
|
|
functionRun: AutomateViewerPanelFunctionRunRow_AutomateFunctionRunFragment
|
|
automationName: string
|
|
}>()
|
|
|
|
const { projectId } = useInjectedViewerState()
|
|
const results = useAutomationFunctionRunResults({
|
|
results: computed(() => props.functionRun.results)
|
|
})
|
|
const { metadata: statusMetaData } = useRunStatusMetadata({
|
|
status: computed(() => props.functionRun.status)
|
|
})
|
|
const route = useRoute()
|
|
|
|
const pageRunLimit = ref(5)
|
|
const expanded = ref(false)
|
|
|
|
const attachments = computed(() =>
|
|
(results.value?.values.blobIds || []).filter((b) => !!b)
|
|
)
|
|
const hasValidContextView = computed(() => {
|
|
const ctxView = props.functionRun.contextView
|
|
if (!ctxView?.length) return false
|
|
|
|
const currentPath = route.fullPath
|
|
return !doesRouteFitTarget(ctxView, currentPath)
|
|
})
|
|
|
|
const statusMessage = computed(() => {
|
|
const isFinished = !(
|
|
[
|
|
AutomateRunStatus.Initializing,
|
|
AutomateRunStatus.Running,
|
|
AutomateRunStatus.Pending
|
|
] as string[]
|
|
).includes(props.functionRun.status)
|
|
|
|
return isFinished
|
|
? props.functionRun.statusMessage ?? 'No status message'
|
|
: `Function is ${props.functionRun.status.toLowerCase()}.`
|
|
})
|
|
</script>
|