| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535 |
- <template>
- <Section id="execution-results-popup">
- <template #title>
- <span class="section-title-with-icon">
- Execution Results:
- <router-link
- v-if="actionId"
- :to="`/action/${actionId}`"
- class="action-details-title-link"
- :title="titleTooltip"
- >
- <ActionIconGlyph class="action-title-icon" :glyph="icon" />
- <LogActionTitle v-if="logEntry" :action-title="title" :justification="logEntry.justification" />
- <span v-else>{{ title }}</span>
- </router-link>
- <template v-else>
- <LogActionTitle v-if="logEntry" :action-title="title" :justification="logEntry.justification" />
- <span v-else>{{ title }}</span>
- </template>
- </span>
- </template>
- <template #toolbar>
- <button
- v-for="dashboard in backToDashboards"
- :key="dashboard.path"
- @click="goToDashboard(dashboard.path)"
- :title="'Back to ' + dashboard.title"
- class="button neutral"
- >
- <HugeiconsIcon :icon="DashboardSquare01Icon" />
- {{ dashboard.title }}
- </button>
- <button v-if="backToDashboards.length === 0" @click="goBack" title="Go back" class="button neutral">
- <HugeiconsIcon :icon="ArrowLeftIcon" />
- Back
- </button>
- </template>
- <div v-if="logEntry" class = "flex-row">
- <dl class = "fg1">
- <dt>Duration</dt>
- <dd><span v-html="duration"></span></dd>
- <dt>Status</dt>
- <dd class="execution-dialog-status">
- <ActionStatusDisplay :log-entry="logEntry" :link-queued-status="true" />
- </dd>
- </dl>
- </div>
- <div v-if="notFound" class="error-message padded-content">
- <h3>Execution Not Found</h3>
- <p>{{ errorMessage }}</p>
- <p>The execution with ID <code>{{ executionTrackingId }}</code> could not be found.</p>
- <router-link to="/logs">View all logs</router-link> or <router-link to="/">return to home</router-link>.
- </div>
- <div class="xterm-output-container">
- <div class="xterm-overlay-toolbar">
- <button type="button" class="xterm-overlay-button" @click="copyOutput" title="Copy to clipboard">
- <HugeiconsIcon :icon="Copy01Icon" />
- </button>
- <button type="button" class="xterm-overlay-button" @click="toggleSize" title="Toggle fullscreen">
- <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24">
- <path fill="currentColor"
- d="M3 3h6v2H6.462l4.843 4.843l-1.415 1.414L5 6.367V9H3zm0 18h6v-2H6.376l4.929-4.928l-1.415-1.414L5 17.548V15H3zm12 0h6v-6h-2v2.524l-4.867-4.866l-1.414 1.414L17.647 19H15zm6-18h-6v2h2.562l-4.843 4.843l1.414 1.414L19 6.39V9h2z" />
- </svg>
- </button>
- </div>
- <div ref="xtermOutput"></div>
- </div>
- <br />
- <div class="flex-row g1 buttons padded-content">
- <div class = "fg1" />
- <button :disabled="!canRerun" @click="rerunAction" title="Rerun">
- <HugeiconsIcon :icon="WorkoutRunIcon" />
- Rerun
- </button>
- <button :disabled="!canKill" @click="killAction" title="Kill" id = "execution-dialog-kill-action">
- <HugeiconsIcon :icon="Cancel02Icon" />
- Kill
- </button>
- </div>
- </Section>
- </template>
- <script setup>
- import { ref, onMounted, onBeforeUnmount, watch } from 'vue'
- import ActionIconGlyph from '../components/ActionIconGlyph.vue'
- import ActionStatusDisplay from '../components/ActionStatusDisplay.vue'
- import LogActionTitle from '../components/LogActionTitle.vue'
- import Section from 'picocrank/vue/components/Section.vue'
- import { OutputTerminal } from '../../../js/OutputTerminal.js'
- import { HugeiconsIcon } from '@hugeicons/vue'
- import { WorkoutRunIcon, Cancel02Icon, ArrowLeftIcon, DashboardSquare01Icon, Copy01Icon } from '@hugeicons/core-free-icons'
- import { useRouter } from 'vue-router'
- import { buttonResults } from '../stores/buttonResults'
- import { requestReconnectNow } from '../../../js/websocket.js'
- import { needsArgumentForm } from '../utils/needsArgumentForm.js'
- const router = useRouter()
- // Refs for DOM elements
- const xtermOutput = ref(null)
- const props = defineProps({
- executionTrackingId: {
- type: String,
- required: true
- }
- })
- const executionTrackingId = ref(props.executionTrackingId)
- const hideBasics = ref(false)
- const hideDetails = ref(false)
- const hideDetailsOnResult = ref(false)
- const executionSeconds = ref(0)
- const icon = ref('')
- const title = ref('Waiting for result...')
- const titleTooltip = ref('')
- const duration = ref('')
- const logEntry = ref(null)
- const canRerun = ref(false)
- const canKill = ref(false)
- const actionId = ref('')
- const backToDashboards = ref([])
- const notFound = ref(false)
- const errorMessage = ref('')
- let executionTicker = null
- let terminal = null
- function initializeTerminal() {
- terminal = new OutputTerminal(executionTrackingId.value)
- terminal.open(xtermOutput.value)
- terminal.resize(80, 40)
- window.terminal = terminal
- }
- function toggleSize() {
- if (!xtermOutput.value) {
- return
- }
- if (xtermOutput.value.requestFullscreen) {
- xtermOutput.value.requestFullscreen()
- } else if (xtermOutput.value.webkitRequestFullscreen) {
- xtermOutput.value.webkitRequestFullscreen()
- } else if (xtermOutput.value.mozRequestFullScreen) {
- xtermOutput.value.mozRequestFullScreen()
- } else if (xtermOutput.value.msRequestFullscreen) {
- xtermOutput.value.msRequestFullscreen()
- }
- }
- async function copyOutput() {
- const text = terminal?.getBufferAsString?.() || logEntry.value?.output || ''
- if (!text) {
- return
- }
- try {
- await navigator.clipboard.writeText(text)
- } catch (err) {
- console.error('Failed to copy execution output:', err)
- }
- }
- async function reset() {
- executionSeconds.value = 0
- executionTrackingId.value = 'notset'
- hideBasics.value = false
- hideDetails.value = false
- hideDetailsOnResult.value = false
- icon.value = ''
- title.value = 'Waiting for result...'
- titleTooltip.value = ''
- duration.value = ''
- canRerun.value = false
- canKill.value = false
- logEntry.value = null
- backToDashboards.value = []
- notFound.value = false
- errorMessage.value = ''
- if (terminal) {
- await terminal.reset()
- terminal.fit()
- }
- }
- function show(actionButton) {
- if (actionButton) {
- icon.value = actionButton.glyph ?? ''
- }
- canKill.value = true
- // Clear existing ticker
- if (executionTicker) {
- clearInterval(executionTicker)
- }
- executionSeconds.value = 0
- executionTick()
- executionTicker = setInterval(() => {
- executionTick()
- }, 1000)
- }
- async function rerunAction() {
- const bindingId = logEntry.value?.bindingId
- if (!logEntry.value || !bindingId) {
- console.error('Cannot rerun: no action ID available')
- return
- }
- try {
- const binding = await window.client.getActionBinding({ bindingId })
- if (needsArgumentForm(binding.action)) {
- router.push(`/actionBinding/${bindingId}/argumentForm`)
- return
- }
- requestReconnectNow()
- const startActionArgs = {
- bindingId: bindingId,
- arguments: []
- }
- const res = await window.client.startAction(startActionArgs)
- router.push(`/logs/${res.executionTrackingId}`)
- } catch (err) {
- console.error('Failed to rerun action:', err)
- window.showBigError('rerun-action', 'rerunning action', err, false)
- }
- }
- async function killAction() {
- if (!executionTrackingId.value || executionTrackingId.value === 'notset') {
- return
- }
- const killActionArgs = {
- executionTrackingId: executionTrackingId.value
- }
- try {
- await window.client.killAction(killActionArgs)
- } catch (err) {
- console.error('Failed to kill action:', err)
- }
- }
- function executionTick() {
- executionSeconds.value++
- updateDuration(null)
- }
- function hideEverythingApartFromOutput() {
- hideDetailsOnResult.value = true
- hideBasics.value = true
- hideDetailsOnResult.value = true
- hideBasics.value = true
- }
- async function fetchExecutionResult(executionTrackingIdParam) {
- console.log("fetchExecutionResult", executionTrackingIdParam)
- executionTrackingId.value = executionTrackingIdParam
- notFound.value = false
- errorMessage.value = ''
- backToDashboards.value = []
- const executionStatusArgs = {
- executionTrackingId: executionTrackingId.value
- }
- try {
- const executionStatusResult = await window.client.executionStatus(executionStatusArgs)
- await renderExecutionResult(executionStatusResult)
- } catch (err) {
- // Check if it's a "not found" error (404 or similar)
- if (err.status === 404 || err.code === 'NotFound' || err.message?.includes('not found')) {
- notFound.value = true
- errorMessage.value = err.message || 'The execution could not be found in the system.'
- } else {
- renderError(err)
- }
- throw err
- }
- }
- function updateDuration(logEntryParam) {
- logEntry.value = logEntryParam
- if (logEntry.value == null) {
- duration.value = executionSeconds.value + ' seconds'
- duration.value = duration.value
- } else if (!logEntry.value.executionStarted) {
- duration.value = logEntry.value.datetimeStarted + ' (request time). Not executed.'
- } else if (logEntry.value.executionStarted && !logEntry.value.executionFinished) {
- duration.value = logEntry.value.datetimeStarted
- } else {
- let delta = ''
- try {
- delta = (new Date(logEntry.value.datetimeFinished) - new Date(logEntry.value.datetimeStarted)) / 1000
- delta = new Intl.RelativeTimeFormat().format(delta, 'seconds').replace('in ', '').replace('ago', '')
- } catch (e) {
- console.warn('Failed to calculate delta', e)
- }
- duration.value = logEntry.value.datetimeStarted + ' → ' + logEntry.value.datetimeFinished
- if (delta !== '') {
- duration.value += ' (' + delta + ')'
- }
- }
- }
- async function renderExecutionResult(res) {
- logEntry.value = res.logEntry
- if (res.backToDashboards) {
- backToDashboards.value = res.backToDashboards.slice(0, 3)
- }
- // Clear ticker
- if (executionTicker) {
- clearInterval(executionTicker)
- }
- executionTicker = null
- if (hideDetailsOnResult.value) {
- hideDetails.value = true
- }
- executionTrackingId.value = res.logEntry.executionTrackingId
- canRerun.value = res.logEntry.executionFinished && !!res.logEntry.bindingId
- canKill.value = res.logEntry.canKill
- icon.value = res.logEntry.actionIcon
- title.value = res.logEntry.actionTitle
- titleTooltip.value = 'Action ID: ' + res.logEntry.bindingId + '\nExecution ID: ' + res.logEntry.executionTrackingId
- actionId.value = res.logEntry.bindingId
- updateDuration(res.logEntry)
- if (terminal) {
- await terminal.reset()
- await terminal.write(res.logEntry.output, () => {
- terminal.fit()
- })
- }
- }
- function renderError(err) {
- window.showBigError('execution-dlg-err', 'in the execution dialog', 'Failed to fetch execution result. ' + err, false)
- }
- function handleClose() {
- if (executionTicker) {
- clearInterval(executionTicker)
- }
- executionTicker = null
- }
- function cleanup() {
- if (executionTicker) {
- clearInterval(executionTicker)
- }
- executionTicker = null
- if (terminal != null) {
- terminal.close()
- }
- terminal = null
- }
- function goBack() {
- router.back()
- }
- function goToDashboard(path) {
- router.push(path)
- }
- onMounted(() => {
- document.addEventListener('fullscreenchange', (e) => {
- setTimeout(() => { // Wait for the DOM to settle
- if (document.fullscreenElement) {
- terminal.fit()
- } else {
- terminal.resize(80, 40)
- terminal.fit()
- }
- }, 100)
- })
- initializeTerminal()
- fetchExecutionResult(props.executionTrackingId)
- watch(
- () => buttonResults[props.executionTrackingId],
- (newResult, oldResult) => {
- if (newResult) {
- renderExecutionResult({
- logEntry: newResult
- })
- }
- }
- )
- })
- onBeforeUnmount(() => {
- cleanup()
- })
- // Expose methods for parent/imperative use
- defineExpose({
- reset,
- show,
- rerunAction,
- killAction,
- fetchExecutionResult,
- renderExecutionResult,
- hideEverythingApartFromOutput,
- handleClose
- })
- </script>
- <style scoped>
- .section-title-with-icon {
- display: inline-flex;
- align-items: center;
- gap: 0.5rem;
- }
- .action-title-icon {
- font-size: 1.5rem;
- }
- .action-details-title-link {
- display: inline-flex;
- align-items: center;
- gap: 0.5rem;
- color: inherit;
- text-decoration: none;
- }
- .action-details-title-link:hover {
- text-decoration: underline;
- }
- .xterm-output-container {
- position: relative;
- }
- .xterm-overlay-toolbar {
- position: absolute;
- top: 0.5rem;
- right: 0.5rem;
- z-index: 2;
- display: flex;
- gap: 0.35rem;
- }
- .xterm-overlay-button {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- padding: 0.35rem;
- border: 1px solid rgba(255, 255, 255, 0.25);
- border-radius: 0.25rem;
- background: rgba(30, 30, 30, 0.85);
- color: #f0f0f0;
- cursor: pointer;
- line-height: 1;
- }
- .xterm-overlay-button:hover {
- background: rgba(50, 50, 50, 0.95);
- border-color: rgba(255, 255, 255, 0.45);
- color: #fff;
- }
- .xterm-overlay-button:focus-visible {
- outline: 2px solid rgba(255, 255, 255, 0.6);
- outline-offset: 2px;
- }
- .action-history-link {
- color: var(--link-color, #007bff);
- text-decoration: none;
- display: inline-block;
- font-size: 0.9rem;
- }
- .error-message {
- background-color: #f8d7da;
- border: 1px solid #f5c2c7;
- border-radius: 0.25rem;
- padding: 1.5rem;
- margin: 1rem 0;
- }
- .error-message h3 {
- margin: 0 0 0.5rem 0;
- color: #721c24;
- }
- .error-message p {
- margin: 0.5rem 0;
- color: #721c24;
- }
- .error-message code {
- background-color: #f8d7da;
- padding: 0.125rem 0.25rem;
- border-radius: 0.125rem;
- font-family: monospace;
- }
- .error-message a {
- color: #721c24;
- text-decoration: underline;
- font-weight: 500;
- }
- </style>
|