* Add sort filter * Change UI * Change filter * Complete sort by filters * Style fixes * Fix default sort * Update app/javascript/dashboard/components/widgets/conversation/ConversationBasicFilter.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Update app/javascript/dashboard/components/widgets/conversation/ConversationBasicFilter.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Update app/javascript/dashboard/components/ChatList.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Added translation * Added review fixes * Add more updates * Code cleanups * Update last_activity_at on message received event * Cleans up the design for chatlist and icons * Fix sort * Remove inline styles * Add tag along with the title --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com>
34 lines
781 B
JavaScript
34 lines
781 B
JavaScript
export default {
|
|
GRAVATAR_URL: 'https://www.gravatar.com/avatar/',
|
|
ASSIGNEE_TYPE: {
|
|
ME: 'me',
|
|
UNASSIGNED: 'unassigned',
|
|
ALL: 'all',
|
|
},
|
|
STATUS_TYPE: {
|
|
OPEN: 'open',
|
|
RESOLVED: 'resolved',
|
|
PENDING: 'pending',
|
|
SNOOZED: 'snoozed',
|
|
ALL: 'all',
|
|
},
|
|
SORT_BY_TYPE: {
|
|
LATEST: 'latest',
|
|
CREATED_AT: 'sort_on_created_at',
|
|
},
|
|
ARTICLE_STATUS_TYPES: {
|
|
DRAFT: 0,
|
|
PUBLISH: 1,
|
|
ARCHIVE: 2,
|
|
},
|
|
LAYOUT_TYPES: {
|
|
CONDENSED: 'condensed',
|
|
EXPANDED: 'expanded',
|
|
},
|
|
DOCS_URL: '//www.chatwoot.com/docs/product/',
|
|
TESTIMONIAL_URL: 'https://testimonials.cdn.chatwoot.com/content.json',
|
|
SMALL_SCREEN_BREAKPOINT: 1024,
|
|
AVAILABILITY_STATUS_KEYS: ['online', 'busy', 'offline'],
|
|
};
|
|
export const DEFAULT_REDIRECT_URL = '/app/';
|