debian-mirror-gitlab/app/assets/javascripts/vue_shared/components/ci_icon.vue

49 lines
1.1 KiB
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
2018-03-17 18:26:18 +05:30
import icon from '../../vue_shared/components/icon.vue';
2017-08-17 22:00:37 +05:30
/**
* Renders CI icon based on API response shared between all places where it is used.
*
* Receives status object containing:
* status: {
* details_path: "/gitlab-org/gitlab-ce/pipelines/8150156" // url
* group:"running" // used for CSS class
* icon: "icon_status_running" // used to render the icon
* label:"running" // used for potential tooltip
* text:"running" // text rendered
* }
*
* Used in:
* - Pipelines table Badge
* - Pipelines table mini graph
* - Pipeline graph
* - Pipeline show view badge
* - Jobs table
* - Jobs show view header
* - Jobs show view sidebar
*/
export default {
2018-03-17 18:26:18 +05:30
components: {
icon,
},
2017-08-17 22:00:37 +05:30
props: {
status: {
type: Object,
required: true,
},
},
computed: {
cssClass() {
const status = this.status.group;
return `ci-status-icon ci-status-icon-${status} js-ci-status-icon-${status}`;
},
},
};
</script>
<template>
2018-03-17 18:26:18 +05:30
<span :class="cssClass">
<icon :name="status.icon" />
2017-08-17 22:00:37 +05:30
</span>
</template>