2023-04-19 01:42:53 -04: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-03-06 09:35:24 -05:00
|
|
|
<template>
|
2023-05-14 10:58:59 -04:00
|
|
|
<span :data-tooltip-content="localeStatus" v-if="status">
|
2023-05-09 15:39:16 -04: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/>
|
|
|
|
</span>
|
2023-03-06 09:35:24 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {SvgIcon} from '../svg.js';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {SvgIcon},
|
|
|
|
props: {
|
|
|
|
status: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
size: {
|
|
|
|
type: Number,
|
|
|
|
default: 16
|
|
|
|
},
|
|
|
|
className: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
2023-05-09 15:39:16 -04:00
|
|
|
},
|
|
|
|
localeStatus: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
2023-03-06 09:35:24 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|