Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
208 lines
4.4 KiB
Vue
208 lines
4.4 KiB
Vue
<script setup>
|
|
import { CONVERSATION_PRIORITY } from 'shared/constants/messages';
|
|
|
|
defineProps({
|
|
priority: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<!-- eslint-disable vue/no-static-inline-styles -->
|
|
<template>
|
|
<div class="inline-flex items-center justify-center rounded-md">
|
|
<!-- Low Priority -->
|
|
<svg
|
|
v-if="priority === CONVERSATION_PRIORITY.LOW"
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<mask
|
|
id="mask0_2030_12879"
|
|
style="mask-type: alpha"
|
|
maskUnits="userSpaceOnUse"
|
|
x="0"
|
|
y="0"
|
|
width="20"
|
|
height="20"
|
|
>
|
|
<rect width="20" height="20" fill="#D9D9D9" />
|
|
</mask>
|
|
<g mask="url(#mask0_2030_12879)">
|
|
<rect
|
|
x="3.33301"
|
|
y="10"
|
|
width="3.33333"
|
|
height="6.66667"
|
|
rx="1.66667"
|
|
class="fill-n-amber-9"
|
|
/>
|
|
<rect
|
|
x="8.33301"
|
|
y="6.6665"
|
|
width="3.33333"
|
|
height="10"
|
|
rx="1.66667"
|
|
class="fill-n-slate-6"
|
|
/>
|
|
<rect
|
|
x="13.333"
|
|
y="3.3335"
|
|
width="3.33333"
|
|
height="13.3333"
|
|
rx="1.66667"
|
|
class="fill-n-slate-6"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
|
|
<!-- Medium Priority -->
|
|
<svg
|
|
v-if="priority === CONVERSATION_PRIORITY.MEDIUM"
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<mask
|
|
id="mask0_2030_12879"
|
|
style="mask-type: alpha"
|
|
maskUnits="userSpaceOnUse"
|
|
x="0"
|
|
y="0"
|
|
width="20"
|
|
height="20"
|
|
>
|
|
<rect width="20" height="20" fill="#D9D9D9" />
|
|
</mask>
|
|
<g mask="url(#mask0_2030_12879)">
|
|
<rect
|
|
x="3.33301"
|
|
y="10"
|
|
width="3.33333"
|
|
height="6.66667"
|
|
rx="1.66667"
|
|
class="fill-n-amber-9"
|
|
/>
|
|
<rect
|
|
x="8.33301"
|
|
y="6.6665"
|
|
width="3.33333"
|
|
height="10"
|
|
rx="1.66667"
|
|
class="fill-n-amber-9"
|
|
/>
|
|
<rect
|
|
x="13.333"
|
|
y="3.3335"
|
|
width="3.33333"
|
|
height="13.3333"
|
|
rx="1.66667"
|
|
class="fill-n-slate-6"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
|
|
<!-- High Priority -->
|
|
<svg
|
|
v-if="priority === CONVERSATION_PRIORITY.HIGH"
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<mask
|
|
id="mask0_2030_12879"
|
|
style="mask-type: alpha"
|
|
maskUnits="userSpaceOnUse"
|
|
x="0"
|
|
y="0"
|
|
width="20"
|
|
height="20"
|
|
>
|
|
<rect width="20" height="20" fill="#D9D9D9" />
|
|
</mask>
|
|
<g mask="url(#mask0_2030_12879)">
|
|
<rect
|
|
x="3.33301"
|
|
y="10"
|
|
width="3.33333"
|
|
height="6.66667"
|
|
rx="1.66667"
|
|
class="fill-n-amber-9"
|
|
/>
|
|
<rect
|
|
x="8.33301"
|
|
y="6.6665"
|
|
width="3.33333"
|
|
height="10"
|
|
rx="1.66667"
|
|
class="fill-n-amber-9"
|
|
/>
|
|
<rect
|
|
x="13.333"
|
|
y="3.3335"
|
|
width="3.33333"
|
|
height="13.3333"
|
|
rx="1.66667"
|
|
class="fill-n-amber-9"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
|
|
<!-- Urgent Priority -->
|
|
<svg
|
|
v-if="priority === CONVERSATION_PRIORITY.URGENT"
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<mask
|
|
id="mask0_2030_12879"
|
|
style="mask-type: alpha"
|
|
maskUnits="userSpaceOnUse"
|
|
x="0"
|
|
y="0"
|
|
width="20"
|
|
height="20"
|
|
>
|
|
<rect width="20" height="20" fill="#D9D9D9" />
|
|
</mask>
|
|
<g mask="url(#mask0_2030_12879)">
|
|
<rect
|
|
x="3.33301"
|
|
y="10"
|
|
width="3.33333"
|
|
height="6.66667"
|
|
rx="1.66667"
|
|
class="fill-n-ruby-9"
|
|
/>
|
|
<rect
|
|
x="8.33301"
|
|
y="6.6665"
|
|
width="3.33333"
|
|
height="10"
|
|
rx="1.66667"
|
|
class="fill-n-ruby-9"
|
|
/>
|
|
<rect
|
|
x="13.333"
|
|
y="3.3335"
|
|
width="3.33333"
|
|
height="13.3333"
|
|
rx="1.66667"
|
|
class="fill-n-ruby-9"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
</div>
|
|
</template>
|