Chatwoot/app/javascript/shared/constants/messages.js

59 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

export const MESSAGE_STATUS = {
FAILED: 'failed',
SENT: 'sent',
PROGRESS: 'progress',
};
export const MESSAGE_TYPE = {
INCOMING: 0,
OUTGOING: 1,
ACTIVITY: 2,
TEMPLATE: 3,
};
// Size in mega bytes
export const MAXIMUM_FILE_UPLOAD_SIZE = 40;
export const ALLOWED_FILE_TYPES =
'image/*,' +
'audio/*,' +
'video/*,' +
'.3gpp,' +
'text/csv, text/plain, application/json, application/pdf, text/rtf,' +
'application/zip, application/x-7z-compressed application/vnd.rar application/x-tar,' +
'application/msword, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.text,' +
'application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,' +
'application/vnd.openxmlformats-officedocument.wordprocessingml.document,';
export const CSAT_RATINGS = [
{
key: 'disappointed',
emoji: '😞',
value: 1,
2021-07-14 04:50:06 +00:00
color: '#FDAD2A',
},
{
key: 'expressionless',
emoji: '😑',
value: 2,
2021-07-14 04:50:06 +00:00
color: '#FFC532',
},
{
key: 'neutral',
emoji: '😐',
value: 3,
2021-07-14 04:50:06 +00:00
color: '#FCEC56',
},
{
key: 'grinning',
emoji: '😀',
value: 4,
2021-07-14 04:50:06 +00:00
color: '#6FD86F',
},
{
key: 'smiling',
emoji: '😍',
value: 5,
2021-07-14 04:50:06 +00:00
color: '#44CE4B',
},
];