@zohoim/chat-components 0.0.24 → 0.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,6 +33,7 @@ export default function Message(props) {
33
33
  renderSecondaryActions,
34
34
  onSelectAction,
35
35
  onMouseEnterAction,
36
+ needMessageActions,
36
37
  renderContent,
37
38
  customProps
38
39
  } = props;
@@ -110,7 +111,6 @@ export default function Message(props) {
110
111
  };
111
112
  return /*#__PURE__*/React.createElement(MessageActions, _extends({}, props, messageActionsProps));
112
113
  }, [actions, onSelectAction, onMouseEnterAction, renderSecondaryActions, messageActionsProps]);
113
- const needMessageActions = !!actions.length;
114
114
  return /*#__PURE__*/React.createElement(MessageBubble, _extends({
115
115
  direction: direction,
116
116
  isActive: isActive,
@@ -6,6 +6,7 @@ const messageDefaultProps = {
6
6
  isActive: false,
7
7
  isShowSender: true,
8
8
  customProps: dummyObject,
9
- actions: dummyArray
9
+ actions: dummyArray,
10
+ needMessageActions: true
10
11
  };
11
12
  export default messageDefaultProps;
@@ -29,6 +29,7 @@ const messagePropTypes = {
29
29
  })),
30
30
  onSelectAction: PropTypes.func.isRequired,
31
31
  renderSecondaryActions: PropTypes.func,
32
+ needMessageActions: PropTypes.bool,
32
33
  customProps: PropTypes.shape({
33
34
  messageActionsProps: PropTypes.object,
34
35
  messageBoxProps: PropTypes.object,
@@ -7,7 +7,8 @@ export const imIntegrationIcon = {
7
7
  line_color: '#01b901',
8
8
  twillio_color: '#f22f46',
9
9
  instagram_color: 'red',
10
- asap_color: '#0a73eb'
10
+ asap_color: '#0a73eb',
11
+ fb_color: '#006aff'
11
12
  };
12
13
  export const imTtIcon = {
13
14
  path0_color: '#ffffff40',
@@ -26,7 +26,8 @@ export const imIntegrationIcon = {
26
26
  line_color: '#01b901',
27
27
  twillio_color: '#f22f46',
28
28
  instagram_color: 'red',
29
- asap_color: '#0a73eb'
29
+ asap_color: '#0a73eb',
30
+ fb_color: '#006aff'
30
31
  };
31
32
  export const imTtIcon = {
32
33
  path0_color: 'rgba(200,203,220,0.7)',
@@ -19,7 +19,8 @@ const {
19
19
  IM_TALK,
20
20
  WECHAT,
21
21
  TWILLIO,
22
- LINE
22
+ LINE,
23
+ FACEBOOKMESSENGER
23
24
  } = integrationConstants;
24
25
  const fontIconMap = {
25
26
  [TWILLIO]: 'ZD-TT-imtwillio',
@@ -27,7 +28,8 @@ const fontIconMap = {
27
28
  [TELEGRAM]: 'ZD-TT-imTelegram',
28
29
  [WECHAT]: 'ZD-TT-imWeChat',
29
30
  [LINE]: 'ZD-TT-imLine',
30
- [IM_TALK]: 'ZD-TT-imASAP'
31
+ [IM_TALK]: 'ZD-TT-imASAP',
32
+ [FACEBOOKMESSENGER]: 'ZD-TT-fbMessanger'
31
33
  };
32
34
  export default function IMIntegrationIcon(props) {
33
35
  const {
@@ -59,10 +59,14 @@
59
59
  background-color: var(--imlib_chat_components_imIntegrationIcon_asap_color);
60
60
  }
61
61
 
62
+ .fbIcon {
63
+ background-color: var(--imlib_chat_components_imIntegrationIcon_fb_color);
64
+ }
65
+
62
66
  .fontIcon :global .path1::before {
63
- color: var(--imlib_chat_components_imIntegrationIcon_path0_color);;
67
+ color: var(--imlib_chat_components_imIntegrationIcon_path0_color);
64
68
  }
65
69
 
66
70
  .fontIcon :global .path2::before {
67
- color:var(--imlib_chat_components_imIntegrationIcon_path1_color);
68
- }
71
+ color: var(--imlib_chat_components_imIntegrationIcon_path1_color);
72
+ }
@@ -11,7 +11,8 @@ const {
11
11
  IM_TALK,
12
12
  WECHAT,
13
13
  TWILLIO,
14
- LINE
14
+ LINE,
15
+ FACEBOOKMESSENGER
15
16
  } = integrationConstants;
16
17
  export default function cssJSLogic(props, style) {
17
18
  const {
@@ -24,8 +25,8 @@ export default function cssJSLogic(props, style) {
24
25
  const isIMTalkIcon = integrationName === IM_TALK;
25
26
  const isWeChatIcon = integrationName === WECHAT;
26
27
  const isTwillioIcon = integrationName === TWILLIO;
27
- const isLineIcon = integrationName === LINE; // const isTwitterIcon = integrationName === TWITTER;
28
-
28
+ const isLineIcon = integrationName === LINE;
29
+ const isFbIcon = integrationName === FACEBOOKMESSENGER;
29
30
  const isSmall = size === sizes.SMALL;
30
31
  const isMedium = size === sizes.MEDIUM;
31
32
  const iconWrapperClass = compileClassNames({
@@ -38,8 +39,8 @@ export default function cssJSLogic(props, style) {
38
39
  [style.asapIcon]: isIMTalkIcon,
39
40
  [style.weChatIcon]: isWeChatIcon,
40
41
  [style.twillioIcon]: isTwillioIcon,
41
- [style.lineIcon]: isLineIcon // [style.twitterIcon]: isTwitterIcon
42
-
42
+ [style.lineIcon]: isLineIcon,
43
+ [style.fbIcon]: isFbIcon
43
44
  });
44
45
  const iconClass = compileClassNames({
45
46
  [style.small]: isSmall,
@@ -58,7 +58,8 @@ export default function IMMessage(props) {
58
58
  needSender,
59
59
  isShowSender,
60
60
  isShowMessageTime,
61
- isShowMessageStatus
61
+ isShowMessageStatus,
62
+ needMessageActions
62
63
  } = messageDisplayProps;
63
64
  const newStyle = useMergeStyle(style, customStyle);
64
65
  const {
@@ -176,6 +177,7 @@ export default function IMMessage(props) {
176
177
  isActive: isHighlightMessage,
177
178
  isShowMessageStatus: isShowMessageStatus,
178
179
  isShowSender: isShowSender,
180
+ needMessageActions: needMessageActions,
179
181
  needSender: needSender,
180
182
  onMouseEnterAction: onMouseEnterAction,
181
183
  onSelectAction: onSelectAction,
@@ -64,6 +64,7 @@ const imMessagePropTypes = {
64
64
  isShowMessageStatus: PropTypes.bool,
65
65
  isShowMessageTime: PropTypes.bool,
66
66
  isShowSender: PropTypes.bool,
67
+ needMessageActions: PropTypes.bool,
67
68
  needSender: PropTypes.bool
68
69
  }),
69
70
  messageStatusI18N: PropTypes.shape({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohoim/chat-components",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "Chat Components",
5
5
  "main": "es/index.js",
6
6
  "module": "es/index.js",
@@ -36,8 +36,8 @@
36
36
  "@zohodesk/utils": "1.3.9",
37
37
  "@zohodesk/variables": "1.0.0-beta.30",
38
38
  "@zohodesk/virtualizer": "1.0.13",
39
- "@zohoim/chat-components-hooks": "^0.0.19",
40
- "@zohoim/chat-components-utils": "^0.0.18"
39
+ "@zohoim/chat-components-hooks": "^0.0.20",
40
+ "@zohoim/chat-components-utils": "^0.0.19"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@zohodesk-private/css-variable-migrator": "1.0.1",
@@ -45,5 +45,5 @@
45
45
  "jsdom": "22.1.0",
46
46
  "react-to-jsx": "1.3.2"
47
47
  },
48
- "gitHead": "9d681517828c86660488a0acf37760afd96ae3e5"
48
+ "gitHead": "68391846c5f62dd502adc161cdf5bca0091b7caf"
49
49
  }