2023-04-19 05:42:53 +00:00
|
|
|
<!-- This vue should be kept the same as templates/repo/actions/status.tmpl
|
|
|
|
Please also update the template file above if this vue is modified.
|
2023-05-22 04:17:24 +00:00
|
|
|
action status accepted: success, skipped, waiting, blocked, running, failure, cancelled, unknown
|
2023-04-19 05:42:53 +00:00
|
|
|
-->
|
2024-07-07 15:32:30 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import {SvgIcon} from '../svg.ts';
|
2023-03-06 14:35:24 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {SvgIcon},
|
|
|
|
props: {
|
|
|
|
status: {
|
|
|
|
type: String,
|
2024-03-22 14:06:53 +00:00
|
|
|
required: true,
|
2023-03-06 14:35:24 +00:00
|
|
|
},
|
|
|
|
size: {
|
|
|
|
type: Number,
|
2024-03-22 14:06:53 +00:00
|
|
|
default: 16,
|
2023-03-06 14:35:24 +00:00
|
|
|
},
|
|
|
|
className: {
|
|
|
|
type: String,
|
2024-03-22 14:06:53 +00:00
|
|
|
default: '',
|
2023-05-09 19:39:16 +00:00
|
|
|
},
|
|
|
|
localeStatus: {
|
|
|
|
type: String,
|
2024-03-22 14:06:53 +00:00
|
|
|
default: '',
|
|
|
|
},
|
2023-03-06 14:35:24 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
2023-09-02 14:59:07 +00:00
|
|
|
<template>
|
2024-03-22 19:51:29 +00:00
|
|
|
<span class="tw-flex tw-items-center" :data-tooltip-content="localeStatus" v-if="status">
|
2023-09-02 14:59:07 +00:00
|
|
|
<SvgIcon name="octicon-check-circle-fill" class="text green" :size="size" :class-name="className" v-if="status === 'success'"/>
|
|
|
|
<SvgIcon name="octicon-skip" class="text grey" :size="size" :class-name="className" v-else-if="status === 'skipped'"/>
|
|
|
|
<SvgIcon name="octicon-clock" class="text yellow" :size="size" :class-name="className" v-else-if="status === 'waiting'"/>
|
|
|
|
<SvgIcon name="octicon-blocked" class="text yellow" :size="size" :class-name="className" v-else-if="status === 'blocked'"/>
|
|
|
|
<SvgIcon name="octicon-meter" class="text yellow" :size="size" :class-name="'job-status-rotate ' + className" v-else-if="status === 'running'"/>
|
|
|
|
<SvgIcon name="octicon-x-circle-fill" class="text red" :size="size" v-else-if="['failure', 'cancelled', 'unknown'].includes(status)"/>
|
|
|
|
</span>
|
|
|
|
</template>
|