mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 05:17:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			788 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			788 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Button } from 'antd';
 | 
						|
import { NotificationFilled } from '@ant-design/icons';
 | 
						|
import { useState } from 'react';
 | 
						|
import Modal from '../ui/Modal/Modal';
 | 
						|
import s from './ActionButton.module.scss';
 | 
						|
import BrowserNotifyModal from '../modals/BrowserNotify/BrowserNotifyModal';
 | 
						|
 | 
						|
export default function NotifyButton() {
 | 
						|
  const [showModal, setShowModal] = useState(false);
 | 
						|
 | 
						|
  const buttonClicked = () => {
 | 
						|
    setShowModal(true);
 | 
						|
  };
 | 
						|
 | 
						|
  return (
 | 
						|
    <>
 | 
						|
      <Button
 | 
						|
        type="primary"
 | 
						|
        className={`${s.button}`}
 | 
						|
        icon={<NotificationFilled />}
 | 
						|
        onClick={buttonClicked}
 | 
						|
      >
 | 
						|
        Notify
 | 
						|
      </Button>
 | 
						|
      <Modal title="Notify" visible={showModal} handleCancel={() => setShowModal(false)}>
 | 
						|
        <BrowserNotifyModal />
 | 
						|
      </Modal>
 | 
						|
    </>
 | 
						|
  );
 | 
						|
}
 |