You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
| import React from 'react';
 | |
| 
 | |
| import { SessionIcon, SessionIconType } from './icon/';
 | |
| import { Flex } from '../basic/Flex';
 | |
| import styled from 'styled-components';
 | |
| import { noop } from 'lodash';
 | |
| 
 | |
| export enum SessionToastType {
 | |
|   Info = 'info',
 | |
|   Success = 'success',
 | |
|   Warning = 'warning',
 | |
|   Error = 'error',
 | |
| }
 | |
| 
 | |
| type Props = {
 | |
|   title: string;
 | |
|   id?: string;
 | |
|   type?: SessionToastType;
 | |
|   icon?: SessionIconType;
 | |
|   description?: string;
 | |
|   closeToast?: any;
 | |
|   onToastClick?: () => void;
 | |
| };
 | |
| 
 | |
| const TitleDiv = styled.div`
 | |
|   font-size: var(--font-size-md);
 | |
|   line-height: var(--font-size-md);
 | |
|   font-family: var(--font-default);
 | |
|   color: var(--color-text);
 | |
|   text-overflow: ellipsis;
 | |
| `;
 | |
| 
 | |
| const DescriptionDiv = styled.div`
 | |
|   font-size: var(--font-size-sm);
 | |
|   color: var(--color-text-subtle);
 | |
|   text-overflow: ellipsis;
 | |
|   font-family: var(--font-default);
 | |
|   padding-bottom: var(--font-size-xs);
 | |
|   padding-top: var(--font-size-xs);
 | |
| `;
 | |
| 
 | |
| const IconDiv = styled.div`
 | |
|   flex-shrink: 0;
 | |
|   padding-inline-end: var(--margins-xs);
 | |
| `;
 | |
| 
 | |
| export const SessionToast = (props: Props) => {
 | |
|   const { title, description, type, icon } = props;
 | |
| 
 | |
|   const toastDesc = description ? description : '';
 | |
|   const toastIconSize = toastDesc ? 'huge' : 'medium';
 | |
| 
 | |
|   // Set a custom icon or allow the theme to define the icon
 | |
|   let toastIcon = icon || undefined;
 | |
|   if (!toastIcon) {
 | |
|     switch (type) {
 | |
|       case SessionToastType.Info:
 | |
|         toastIcon = 'info';
 | |
|         break;
 | |
|       case SessionToastType.Success:
 | |
|         toastIcon = 'check';
 | |
|         break;
 | |
|       case SessionToastType.Error:
 | |
|         toastIcon = 'error';
 | |
|         break;
 | |
|       case SessionToastType.Warning:
 | |
|         toastIcon = 'warning';
 | |
|         break;
 | |
|       default:
 | |
|         toastIcon = 'info';
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   return (
 | |
|     // tslint:disable-next-line: use-simple-attributes
 | |
|     <Flex container={true} alignItems="center" onClick={props?.onToastClick || noop}>
 | |
|       <IconDiv>
 | |
|         <SessionIcon iconType={toastIcon} iconSize={toastIconSize} />
 | |
|       </IconDiv>
 | |
|       <Flex
 | |
|         container={true}
 | |
|         justifyContent="flex-start"
 | |
|         flexDirection="column"
 | |
|         className="session-toast"
 | |
|       >
 | |
|         <TitleDiv>{title}</TitleDiv>
 | |
|         {toastDesc && <DescriptionDiv>{toastDesc}</DescriptionDiv>}
 | |
|       </Flex>
 | |
|     </Flex>
 | |
|   );
 | |
| };
 |