AvanzaCast/shared/components/modal-parts/ModalShareButtons.tsx
Cesar Mendivil e43686e36d feat(modal-parts): add modular components for modal UI
- Introduced ModalDestinationButton for destination selection with customizable icons and labels.
- Added ModalInput for text input with optional character counter.
- Implemented ModalLink for reusable links styled as underlined text.
- Created ModalPlatformCard for platform selection with badges.
- Developed ModalRadioGroup for radio button groups with custom styling.
- Added ModalSection for grouping modal content with optional labels.
- Implemented ModalSelect for dropdown selections with custom styling.
- Created ModalShareButtons for sharing options via Gmail, Email, and Messenger.
- Developed ModalTextarea for multi-line text input with character counter.
- Introduced ModalToggle for toggle switches with optional help text and links.
- Updated README.md with component descriptions, usage examples, and design guidelines.
- Added index.ts for centralized exports of modal components.
2025-11-06 00:32:08 -07:00

72 lines
1.6 KiB
TypeScript

import React from 'react'
import { SiGmail } from 'react-icons/si'
import { MdEmail } from 'react-icons/md'
import { FaFacebookMessenger } from 'react-icons/fa'
import styles from './ModalShareButtons.module.css'
interface ShareButton {
icon: React.ReactNode
label: string
onClick: () => void
}
interface Props {
onGmail?: () => void
onEmail?: () => void
onMessenger?: () => void
customButtons?: ShareButton[]
className?: string
}
/**
* Componente de botones de compartir para modales
* Estilo StreamYard: icono + texto, fondo gris claro, hover azul
*/
export const ModalShareButtons: React.FC<Props> = ({
onGmail,
onEmail,
onMessenger,
customButtons,
className = ''
}) => {
const defaultButtons: ShareButton[] = [
...(onGmail ? [{
icon: <SiGmail size={18} />,
label: 'Gmail',
onClick: onGmail
}] : []),
...(onEmail ? [{
icon: <MdEmail size={18} />,
label: 'Correo electrónico',
onClick: onEmail
}] : []),
...(onMessenger ? [{
icon: <FaFacebookMessenger size={18} />,
label: 'Messenger',
onClick: onMessenger
}] : [])
]
const buttons = customButtons || defaultButtons
if (buttons.length === 0) return null
return (
<div className={`${styles.container} ${className}`}>
{buttons.map((button, index) => (
<button
key={index}
onClick={button.onClick}
className={styles.button}
type="button"
>
<span className={styles.icon}>{button.icon}</span>
<span className={styles.label}>{button.label}</span>
</button>
))}
</div>
)
}
export default ModalShareButtons