mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 10:37:56 +00:00 
			
		
		
		
	 40aaca9c65
			
		
	
	40aaca9c65
	
	
	
		
			
			* remove commented out import from info-table-row * glimmerize * update docs * glimmerize confirmation modal * update modal usage * remove keyboard action * Revert "remove keyboard action" This reverts commit 42b7f5950b244b5a728f94a1fbb8cd836f646ae8. * remove keyboard actions * address comments * update tests
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import Component from '@glimmer/component';
 | |
| import { messageTypes } from 'core/helpers/message-types';
 | |
| /**
 | |
|  * @module Modal
 | |
|  * Modal components are used to overlay content on top of the page. Has a darkened background,
 | |
|  * a title, and in order to close it you must pass an onClose function.
 | |
|  *
 | |
|  * @example
 | |
|  * ```js
 | |
|  *  <Modal
 | |
|  *    @title="Export attribution data"
 | |
|  *    @type="info"
 | |
|  *    @isActive={{this.showModal}}
 | |
|  *    @showCloseButton={{true}}
 | |
|  *    @onClose={{action (mut this.showModal) false}}
 | |
|  *  >
 | |
|  *    Whatever content pops up when the modal isActive!
 | |
|  *  </Modal>
 | |
|  * ```
 | |
|  * @callback onClose
 | |
|  * @param {onClose} onClose - onClose is the action taken when someone clicks the modal background or close button (if shown).
 | |
|  * @param {boolean} isActive=false - whether or not modal displays
 | |
|  * @param {string} [title] - This text shows up in the header section of the modal.
 | |
|  * @param {boolean} [showCloseButton=false] - controls whether the close button in the top right corner shows.
 | |
|  * @param {string} [type=null] - The header styling based on type passed into the message-types helper.
 | |
|  */
 | |
| 
 | |
| export default class ModalComponent extends Component {
 | |
|   get isActive() {
 | |
|     return this.args.isActive || false;
 | |
|   }
 | |
| 
 | |
|   get showCloseButton() {
 | |
|     return this.args.showCloseButton || false;
 | |
|   }
 | |
| 
 | |
|   get glyph() {
 | |
|     if (!this.args.type) {
 | |
|       return null;
 | |
|     }
 | |
|     return messageTypes([this.args.type]);
 | |
|   }
 | |
| 
 | |
|   get modalClass() {
 | |
|     if (!this.args.type) {
 | |
|       return 'modal';
 | |
|     }
 | |
|     return 'modal ' + messageTypes([this.args.type]).class;
 | |
|   }
 | |
| }
 |