mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 02:57:04 +02:00
* runs ember-cli-update to 4.4.0 * updates yarn.lock * updates dependencies causing runtime errors (#17135) * Inject Store Service When Accessed Implicitly (#17345) * adds codemod for injecting store service * adds custom babylon parser with decorators-legacy plugin for jscodeshift transforms * updates inject-store-service codemod to only look for .extend object expressions and adds recast options * runs inject-store-service codemod on js files * replace query-params helper with hash (#17404) * Updates/removes dependencies throwing errors in Ember 4.4 (#17396) * updates ember-responsive to latest * updates ember-composable-helpers to latest and uses includes helper since contains was removed * updates ember-concurrency to latest * updates ember-cli-clipboard to latest * temporary workaround for toolbar-link component throwing errors for using params arg with LinkTo * adds missing store injection to auth configure route * fixes issue with string-list component throwing error for accessing prop in same computation * fixes non-iterable query params issue in mfa methods controller * refactors field-to-attrs to handle belongsTo rather than fragments * converts mount-config fragment to belongsTo on auth-method model * removes ember-api-actions and adds tune method to auth-method adapter * converts cluster replication attributes from fragment to relationship * updates ember-data, removes ember-data-fragments and updates yarn to latest * removes fragments from secret-engine model * removes fragment from test-form-model * removes commented out code * minor change to inject-store-service codemod and runs again on js files * Remove LinkTo positional params (#17421) * updates ember-cli-page-object to latest version * update toolbar-link to support link-to args and not positional params * adds replace arg to toolbar-link component * Clean up js lint errors (#17426) * replaces assert.equal to assert.strictEqual * update eslint no-console to error and disables invididual intended uses of console * cleans up hbs lint warnings (#17432) * Upgrade bug and test fixes (#17500) * updates inject-service codemod to take arg for service name and runs for flashMessages service * fixes hbs lint error after merging main * fixes flash messages * updates more deps * bug fixes * test fixes * updates ember-cli-content-security-policy and prevents default form submission throwing errors * more bug and test fixes * removes commented out code * fixes issue with code-mirror modifier sending change event on setup causing same computation error * Upgrade Clean Up (#17543) * updates deprecation workflow and filter * cleans up build errors, removes unused ivy-codemirror and sass and updates ember-cli-sass and node-sass to latest * fixes control groups test that was skipped after upgrade * updates control group service tests * addresses review feedback * updates control group service handleError method to use router.currentURL rather that transition.intent.url * adds changelog entry
142 lines
5.1 KiB
JavaScript
142 lines
5.1 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import layout from '../templates/components/calendar-widget';
|
|
import { setComponentTemplate } from '@ember/component';
|
|
import { action } from '@ember/object';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
/**
|
|
* @module CalendarWidget
|
|
* CalendarWidget components are used in the client counts metrics. It helps users understand the ranges they can select.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <CalendarWidget
|
|
* @param {array} arrayOfMonths - An array of all the months that the calendar widget iterates through.
|
|
* @param {string} endTimeDisplay - The formatted display value of the endTime. Ex: January 2022.
|
|
* @param {array} endTimeFromResponse - The value returned on the counters/activity endpoint, which shows the true endTime not the selected one, which can be different. Ex: ['2022', 0]
|
|
* @param {function} handleClientActivityQuery - a function passed from parent. This component sends the month and year to the parent via this method which then calculates the new data.
|
|
* @param {function} handleCurrentBillingPeriod - a function passed from parent. This component makes the parent aware that the user selected Current billing period and it handles resetting the data.
|
|
* @param {string} startTimeDisplay - The formatted display value of the endTime. Ex: January 2022. This component is only responsible for modifying the endTime which is sends to the parent to make the network request.
|
|
* />
|
|
*
|
|
* ```
|
|
*/
|
|
class CalendarWidget extends Component {
|
|
currentDate = new Date();
|
|
currentYear = this.currentDate.getFullYear(); // integer
|
|
currentMonth = parseInt(this.currentDate.getMonth()); // integer and zero index
|
|
|
|
@tracked allMonthsNodeList = [];
|
|
@tracked displayYear = this.currentYear; // init to currentYear and then changes as a user clicks on the chevrons
|
|
@tracked showCalendar = false;
|
|
@tracked tooltipTarget = null;
|
|
@tracked tooltipText = null;
|
|
|
|
get selectedMonthId() {
|
|
if (!this.args.endTimeFromResponse) return '';
|
|
const [year, monthIndex] = this.args.endTimeFromResponse;
|
|
return `${monthIndex}-${year}`;
|
|
}
|
|
get disableFutureYear() {
|
|
return this.displayYear === this.currentYear;
|
|
}
|
|
get disablePastYear() {
|
|
let startYear = parseInt(this.args.startTimeDisplay.split(' ')[1]);
|
|
return this.displayYear === startYear; // if on startYear then don't let them click back to the year prior
|
|
}
|
|
get widgetMonths() {
|
|
const displayYear = this.displayYear;
|
|
const currentYear = this.currentYear;
|
|
const currentMonthIdx = this.currentMonth;
|
|
const [startMonth, startYear] = this.args.startTimeDisplay.split(' ');
|
|
const startMonthIdx = this.args.arrayOfMonths.indexOf(startMonth);
|
|
return this.args.arrayOfMonths.map((month, idx) => {
|
|
const monthId = `${idx}-${displayYear}`;
|
|
let readonly = false;
|
|
|
|
// if widget is showing billing start year, disable if month is before start month
|
|
if (parseInt(startYear) === displayYear && idx < startMonthIdx) {
|
|
readonly = true;
|
|
}
|
|
|
|
// if widget showing current year, disable if month is current or later
|
|
if (displayYear === currentYear && idx >= currentMonthIdx) {
|
|
readonly = true;
|
|
}
|
|
return {
|
|
id: monthId,
|
|
month,
|
|
readonly,
|
|
current: monthId === `${currentMonthIdx}-${currentYear}`,
|
|
};
|
|
});
|
|
}
|
|
|
|
// HELPER FUNCTIONS (alphabetically) //
|
|
addClass(element, classString) {
|
|
element.classList.add(classString);
|
|
}
|
|
|
|
removeClass(element, classString) {
|
|
element.classList.remove(classString);
|
|
}
|
|
|
|
resetDisplayYear() {
|
|
let setYear = this.currentYear;
|
|
if (this.args.endTimeDisplay) {
|
|
try {
|
|
const year = this.args.endTimeDisplay.split(' ')[1];
|
|
setYear = parseInt(year);
|
|
} catch (e) {
|
|
console.debug('Error resetting display year', e); // eslint-disable-line
|
|
}
|
|
}
|
|
this.displayYear = setYear;
|
|
}
|
|
|
|
// ACTIONS (alphabetically) //
|
|
@action
|
|
addTooltip() {
|
|
if (this.disablePastYear) {
|
|
let previousYear = Number(this.displayYear) - 1;
|
|
this.tooltipText = `${previousYear} is unavailable because it is before your billing start month. Change your billing start month to a date in ${previousYear} to see data for this year.`; // set tooltip text
|
|
this.tooltipTarget = '#previous-year';
|
|
}
|
|
}
|
|
|
|
@action
|
|
addYear() {
|
|
this.displayYear = this.displayYear + 1;
|
|
}
|
|
|
|
@action removeTooltip() {
|
|
this.tooltipTarget = null;
|
|
}
|
|
|
|
@action
|
|
selectCurrentBillingPeriod(D) {
|
|
this.args.handleCurrentBillingPeriod(); // resets the billing startTime and endTime to what it is on init via the parent.
|
|
this.showCalendar = false;
|
|
D.actions.close(); // close the dropdown.
|
|
}
|
|
@action
|
|
selectEndMonth(monthId, D) {
|
|
const [monthIdx, year] = monthId.split('-');
|
|
this.toggleShowCalendar();
|
|
this.args.handleClientActivityQuery(parseInt(monthIdx), parseInt(year), 'endTime');
|
|
D.actions.close(); // close the dropdown.
|
|
}
|
|
|
|
@action
|
|
subYear() {
|
|
this.displayYear = this.displayYear - 1;
|
|
}
|
|
|
|
@action
|
|
toggleShowCalendar() {
|
|
this.showCalendar = !this.showCalendar;
|
|
this.resetDisplayYear();
|
|
}
|
|
}
|
|
export default setComponentTemplate(layout, CalendarWidget);
|