This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/tasks/partials/priorityLabel.vue

62 lines
1.6 KiB
Vue
Raw Normal View History

2019-11-24 13:16:24 +00:00
<template>
<span
:class="{'not-so-high': priority === priorities.HIGH, 'high-priority': priority >= priorities.HIGH}"
class="priority-label"
v-if="!done && (showAll || priority >= priorities.HIGH)">
<span class="icon" v-if="priority >= priorities.HIGH">
2019-11-24 13:16:24 +00:00
<icon icon="exclamation"/>
</span>
<span>
<template v-if="priority === priorities.UNSET">{{ $t('task.priority.unset') }}</template>
<template v-if="priority === priorities.LOW">{{ $t('task.priority.low') }}</template>
<template v-if="priority === priorities.MEDIUM">{{ $t('task.priority.medium') }}</template>
<template v-if="priority === priorities.HIGH">{{ $t('task.priority.high') }}</template>
<template v-if="priority === priorities.URGENT">{{ $t('task.priority.urgent') }}</template>
<template v-if="priority === priorities.DO_NOW">{{ $t('task.priority.doNow') }}</template>
</span>
2019-11-24 13:16:24 +00:00
<span class="icon" v-if="priority === priorities.DO_NOW">
<icon icon="exclamation"/>
</span>
</span>
</template>
2022-02-15 12:07:59 +00:00
<script setup lang="ts">
2022-06-23 01:14:58 +00:00
import {PRIORITIES as priorities} from '@/models/constants/priorities'
2022-02-15 12:07:59 +00:00
defineProps({
priority: {
default: 0,
type: Number,
},
2022-02-15 12:07:59 +00:00
showAll: {
type: Boolean,
default: false,
},
2022-02-15 12:07:59 +00:00
done: {
type: Boolean,
default: false,
},
})
2019-11-24 13:16:24 +00:00
</script>
2019-12-18 21:38:26 +00:00
<style lang="scss" scoped>
.priority-label {
2021-01-10 20:46:41 +00:00
display: inline-flex;
align-items: center;
}
span.high-priority {
color: var(--danger);
width: auto !important; // To override the width set in tasks
2019-12-18 21:38:26 +00:00
.icon {
vertical-align: middle;
width: auto !important;
padding: 0 .5rem;
}
2019-12-18 21:38:26 +00:00
&.not-so-high {
color: var(--warning);
2019-12-18 21:38:26 +00:00
}
}
2019-12-18 21:38:26 +00:00
</style>