diff --git a/src/components/Chatwoot/index.tsx b/src/components/Chatwoot/index.tsx index 58b340ab..a5e09190 100644 --- a/src/components/Chatwoot/index.tsx +++ b/src/components/Chatwoot/index.tsx @@ -5,6 +5,9 @@ import useChat from '../../hooks/useChat' const styles: { button: CSSProperties img: CSSProperties + expandedButton: CSSProperties + expandedImg: CSSProperties + launcherTitle: CSSProperties close: CSSProperties } = { button: { @@ -24,6 +27,27 @@ const styles: { margin: '20px', width: '24px' }, + expandedButton: { + display: 'flex', + bottom: '24px', + height: '48px', + width: 'auto' + }, + expandedImg: { + height: '20px', + margin: '14px 8px 14px 16px', + width: '20px' + }, + launcherTitle: { + display: 'flex', + color: '#fff', + alignItems: 'center', + paddingRight: '20px', + fontFamily: + 'system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, sans-serif', + fontSize: '16px', + fontWeight: 500 + }, close: { backgroundColor: '#fff', height: '24px', @@ -36,9 +60,10 @@ const styles: { interface Props { color?: string + launcherTitle?: string } -const Provider = ({ color }: Props): JSX.Element | null => { +const Provider = ({ color, launcherTitle }: Props): JSX.Element | null => { const [state, loadChat] = useChat({ loadWhenIdle: true }) if (state === 'complete') return null @@ -54,15 +79,24 @@ const Provider = ({ color }: Props): JSX.Element | null => { onMouseEnter={() => loadChat({ open: false })} style={{ ...styles.button, + ...(launcherTitle && styles.expandedButton), backgroundColor: color }} > {state === 'initial' ? ( - bubble-icon + <> + bubble-icon + {launcherTitle ? ( +
{launcherTitle}
+ ) : null} + ) : ( <>