import Component from '@glimmer/component'; import { allFeatures } from 'vault/helpers/all-features'; /** * @module LicenseInfo * * @example * ```js * * * @param {string} startTime - RFC3339 formatted timestamp of when the license became active * @param {string} expirationTime - RFC3339 formatted timestamp of when the license will expire * @param {string} licenseId - unique ID of the license * @param {Array} features - Array of feature names active on license * @param {boolean} autoloaded - Whether the license is autoloaded * @param {number} performanceStandbyCount - Number of performance standbys active */ export default class LicenseInfoComponent extends Component { get featuresInfo() { return allFeatures().map(feature => { let active = this.args.features.includes(feature); if (active && feature === 'Performance Standby') { let count = this.args.performanceStandbyCount; return { name: feature, active: count ? active : false, count, }; } return { name: feature, active }; }); } }