mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 10:37:56 +00:00 
			
		
		
		
	 43258c28fa
			
		
	
	43258c28fa
	
	
	
		
			
			* UI: Part 1 - hds adoption replace <Modal> (#23363) * replace policy-form modal * replace clients/attribution modal * clients/config modal * scope form odal * remove button type * include toolbar to match other example templates * rotate credentials modal * add toolbar button class for hds buttons * transformation-edit modal * add back test selector * add route arg to button! * update link status * fix link-status tests * remove prevent default * update db tests * update tests * use page alert for hcp link status banner * fix scopy button selector * fix sidebar test * change to neutral banner * UI: Part 2 - hds adoption replace <Modal> (#23398) * upgrade HDS library (adds support for snippet containers * cleanup flight icons * replace transit key action modals * re-add deps as devDeps * remove line * address transit tests * UI: Part 3 - hds adoption replace <Modal> (#23415) * cleanup css * cleanup extra type attr * masked input download modal * use Hds::Button in download button" * fix size of modal * tiny icon fix * refactor download button to always render download icon * update tests * UI: Part 3.5 - hds adoption replace <Modal> (#23448) * replication-promote modal * replication component modals * replication add secondary modal * move update text for diff * UI: Part 4 - hds adoption replace <Modal> (#23451) * k8 configure modal * kv delete modal * ldap modals * pki modals * add trash icon * move deps * UI: Part 5 - hds adoption replace <Modal> (#23471) * replace confirmation modals --------- * UI: Part 6 - hds adoption replace <Modal> (#23484) * search select with modal * policy search select modal * replace date dropdown for client dashboard * change padding to top * update policy example args * lolllll test typo wow * update dropdown tests * shamir flow modals! * add one more container * update test selectors * UI: Final hds adoption replace <Modal> cleanup PR (#23522) * search select with modal * policy search select modal * replace date dropdown for client dashboard * change padding to top * update policy example args * lolllll test typo wow * update dropdown tests * shamir flow modals! * add one more container * update test selectors * remove wormhole and modal component * fix selectors * uninstall wormhole * remove shamir-modal-flow class * fix confirm modal test * fix pki and kv test * fix toolbar selector kv * client and download button test * fix-confirmation-modal-padding * fix replication modal tests so relevant modal opens (#23540) * more confirmation modal tests * adds changelog
		
			
				
	
	
		
			79 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * SPDX-License-Identifier: BUSL-1.1
 | |
|  */
 | |
| 
 | |
| import Component from '@glimmer/component';
 | |
| import { action } from '@ember/object';
 | |
| import { tracked } from '@glimmer/tracking';
 | |
| import { ARRAY_OF_MONTHS } from 'core/utils/date-formatters';
 | |
| import timestamp from 'core/utils/timestamp';
 | |
| /**
 | |
|  * @module DateDropdown
 | |
|  * DateDropdown components are used to display a dropdown of months and years to handle date selection. Future dates are disabled (current month and year are selectable).
 | |
|  * The component returns an object with selected date info, example: { dateType: 'start', monthIdx: 0, monthName: 'January', year: 2022 }
 | |
|  *
 | |
|  * @example
 | |
|  * ```js
 | |
|  * <DateDropdown @handleSubmit={{this.actionFromParent}} @name="startTime" @submitText="Save" />
 | |
|  * ```
 | |
|  * @param {function} handleSubmit - callback function from parent that the date picker triggers on submit
 | |
|  * @param {string} [dateType] - optional argument to give the selected month/year a type
 | |
|  * @param {string} [submitText] - optional argument to change submit button text
 | |
|  * @param {function} [validateDate] - parent function to validate date selection, receives date object and returns an error message that's passed to the inline alert
 | |
|  */
 | |
| export default class DateDropdown extends Component {
 | |
|   currentDate = timestamp.now();
 | |
|   currentYear = this.currentDate.getFullYear(); // integer of year
 | |
|   currentMonthIdx = this.currentDate.getMonth(); // integer of month, 0 indexed
 | |
|   dropdownMonths = ARRAY_OF_MONTHS.map((m, i) => ({ name: m, index: i }));
 | |
|   dropdownYears = Array.from({ length: 5 }, (item, i) => this.currentYear - i);
 | |
| 
 | |
|   @tracked maxMonthIdx = 11; // disables months with index greater than this number, initially all months are selectable
 | |
|   @tracked disabledYear = null; // year as integer if current year should be disabled
 | |
|   @tracked selectedMonth = null;
 | |
|   @tracked selectedYear = null;
 | |
|   @tracked invalidDate = null;
 | |
| 
 | |
|   @action
 | |
|   selectMonth(month, dropdown) {
 | |
|     this.selectedMonth = month;
 | |
|     // disable current year if selected month is later than current month
 | |
|     this.disabledYear = month.index > this.currentMonthIdx ? this.currentYear : null;
 | |
|     dropdown.close();
 | |
|   }
 | |
| 
 | |
|   @action
 | |
|   selectYear(year, dropdown) {
 | |
|     this.selectedYear = year;
 | |
|     // disable months after current month if selected year is current year
 | |
|     this.maxMonthIdx = year === this.currentYear ? this.currentMonthIdx : 11;
 | |
|     dropdown.close();
 | |
|   }
 | |
| 
 | |
|   @action
 | |
|   handleSubmit() {
 | |
|     if (this.args.validateDate) {
 | |
|       this.invalidDate = null;
 | |
|       this.invalidDate = this.args.validateDate(new Date(this.selectedYear, this.selectedMonth.index));
 | |
|       if (this.invalidDate) return;
 | |
|     }
 | |
|     const { index, name } = this.selectedMonth;
 | |
|     this.args.handleSubmit({
 | |
|       monthIdx: index,
 | |
|       monthName: name,
 | |
|       year: this.selectedYear,
 | |
|       dateType: this.args.dateType,
 | |
|     });
 | |
|     this.resetDropdown();
 | |
|   }
 | |
| 
 | |
|   resetDropdown() {
 | |
|     this.maxMonthIdx = 11;
 | |
|     this.disabledYear = null;
 | |
|     this.selectedMonth = null;
 | |
|     this.selectedYear = null;
 | |
|     this.invalidDate = null;
 | |
|   }
 | |
| }
 |