forked from sendbird/sendbird-javascript-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsts.js
More file actions
100 lines (86 loc) · 2.21 KB
/
Copy pathconsts.js
File metadata and controls
100 lines (86 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
export const className = {
WIDGET_BTN: 'widget',
NOTIFICATION: 'notification',
ACTIVE: 'active',
DISABLED: 'disabled',
CHANNEL_BOARD: 'channel-board',
BOARD_TOP: 'board-top',
OPTION_MENU: 'option-menu',
OPTION_CONTENT: 'option-content',
TITLE: 'title',
INPUT: 'input',
BTN: 'btn',
ITEM: 'item',
IMAGE: 'image',
TOP: 'top',
COUNT: 'count',
TIME: 'time',
UNREAD: 'unread',
CONTENT: 'content',
LOGIN_FORM: 'login-form',
LOGIN_BTN: 'login-btn',
USER_ID: 'user-id',
NICKNAME: 'nickname',
CHANNEL_LIST: 'channel-list',
CONTENT_TOP: 'content-top',
CONTENT_BOTTOM: 'content-bottom',
LAST_MESSAGE: 'last-message',
EMPTY_ITEM: 'empty-item',
CHAT_SECTION: 'chat-section',
CHAT_BOARD: 'chat-board',
MESSAGE_CONTENT: 'message-content',
MESSAGE_LIST: 'message-list',
TYPING: 'typing',
TEXT: 'text',
PREVIEW_NAME: 'preview-name',
PREVIEW_TITLE: 'preview-title',
PREVIEW_DESCRIPTION: 'preview-description',
PREVIEW_IMAGE: 'preview-iamge',
FILE_MESSAGE: 'file-message',
FILE: 'file',
FILE_ICON: 'file-icon',
FILE_NAME: 'file-name',
FILE_DOWNLOAD: 'file-download',
FILE_TEXT: 'file-text',
MESSAGE_SET: 'message-set',
USER: 'user',
MESSAGE_ITEM: 'message-item',
MESSAGE: 'message',
USER_CONTENT: 'user-content',
NEW_CHAT_BTN: 'new-chat-btn',
USER_SELECT: 'user-select',
USER_ITEM: 'user-item',
LEAVE_POPUP: 'leave-popup',
LEAVE_BTN: 'leave-btn',
CANCEL_BTN: 'cancel-btn',
ADMIN_MESSAGE: 'admin-message',
POPUP: 'popup',
MEMBERS: 'members',
INVITE: 'invite',
POPUP_BODY: 'popup-body',
POPUP_TOP: 'popup-top',
POPUP_CONTENT: 'popup-content',
POPUP_BOTTOM: 'popup-bottom',
INVITE_BTN: 'invite-btn',
IMAGE_ME: 'image-me',
TOOLTIP: 'tooltip',
IC_LOGIN: 'ic-login',
IC_CONNECTED: 'ic-connected',
IC_MINIMIZE: 'ic-minimize',
IC_OPTION: 'ic-option',
IC_NEW_CHAT: 'ic-new-chat',
IC_CLOSE: 'ic-close',
IC_MEMBERS: 'ic-members',
IC_INVITE: 'ic-invite',
IC_LEAVE: 'ic-leave',
FADE_IN: 'sb-fade-in',
FADE_OUT: 'sb-fade-out',
SPINNER: 'sb-spinner'
};
export const styleValue = {
CURSOR_INIT: '',
CURSOR_DEFAULT: 'default'
};
export const MAX_COUNT = '+9';
export const MAX_FONT_SIZE = '11';
export const TYPE_STRING = 'string';