@hashicorp/design-system-components
Version:
Helios Design System Components
118 lines (103 loc) • 4.55 kB
JavaScript
import Component from '@glimmer/component';
import { assert } from '@ember/debug';
import { guidFor } from '@ember/object/internals';
import { HdsDropdownToggleButtonSizeValues, HdsDropdownToggleButtonColorValues } from './types.js';
import { precompileTemplate } from '@ember/template-compilation';
import { setComponentTemplate } from '@ember/component';
var TEMPLATE = precompileTemplate("{{!\n Copyright (c) HashiCorp, Inc.\n SPDX-License-Identifier: MPL-2.0\n}}\n<button\n class={{this.classNames}}\n id={{this._toggleButtonId}}\n ...attributes\n type=\"button\"\n aria-expanded={{if @isOpen \"true\" \"false\"}}\n {{@setupPrimitiveToggle}}\n>\n {{#if @icon}}\n <div class=\"hds-dropdown-toggle-button__icon\">\n <Hds::Icon @name={{@icon}} @stretched={{true}} />\n </div>\n {{/if}}\n <div class=\"hds-dropdown-toggle-button__text\">\n {{this.text}}\n </div>\n {{#if @count}}\n <Hds::BadgeCount\n @text={{@count}}\n @size=\"small\"\n @type={{this.badgeType}}\n class=\"hds-dropdown-toggle-button__count\"\n />\n {{/if}}\n {{#if @badge}}\n <Hds::Badge\n @text={{@badge}}\n @icon={{@badgeIcon}}\n @size=\"small\"\n @type={{this.badgeType}}\n class=\"hds-dropdown-toggle-button__badge\"\n />\n {{/if}}\n <Hds::Dropdown::Toggle::Chevron />\n</button>");
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
const DEFAULT_SIZE = HdsDropdownToggleButtonSizeValues.Medium;
const DEFAULT_COLOR = HdsDropdownToggleButtonColorValues.Primary;
const SIZES = Object.values(HdsDropdownToggleButtonSizeValues);
const COLORS = Object.values(HdsDropdownToggleButtonColorValues);
class HdsDropdownToggleButton extends Component {
/**
* Generates a unique ID for the button
*
* @param _toggleButtonId
*/
_toggleButtonId = 'toggle-button-' + guidFor(this);
/**
* @param text
* @type {string}
* @description The text of the button. If no text value is defined an error will be thrown.
*/
get text() {
const {
text
} = this.args;
assert('@text for "Hds::Dropdown::Toggle::Button" must have a valid value', text !== undefined);
return text;
}
/**
* @param size
* @type {string}
* @default medium
* @description The size of the button; acceptable values are `small` and `medium`
*/
get size() {
const {
size = DEFAULT_SIZE
} = this.args;
assert(`@size for "Hds::Dropdown::Toggle::Button" must be one of the following: ${SIZES.join(', ')}; received: ${size}`, SIZES.includes(size));
return size;
}
/**
* @param color
* @type {string}
* @default primary
* @description Determines the color of button to be used; acceptable values are `primary` and `secondary`
*/
get color() {
const {
color = DEFAULT_COLOR
} = this.args;
assert(`@color for "Hds::Dropdown::Toggle::Button" must be one of the following: ${COLORS.join(', ')}; received: ${color}`, COLORS.includes(color));
return color;
}
/**
* @param isFullWidth
* @type {boolean}
* @default false
* @description Indicates that a button should take up the full width of the parent container. The default is false.
*/
get isFullWidth() {
return this.args.isFullWidth ?? false;
}
/**
* @param badgeType
* @type {string}
* @default 'filled'
* @description ensures that the correct Badge/BadgeCount type is used to meet contrast requirements
*/
get badgeType() {
return this.color !== 'primary' ? 'inverted' : 'filled';
}
/**
* Get the class names to apply to the component.
* @method ToggleButton#classNames
* @return {string} The "class" attribute to apply to the component.
*/
get classNames() {
const classes = ['hds-dropdown-toggle-button'];
// add a class based on the @size argument
classes.push(`hds-dropdown-toggle-button--size-${this.size}`);
// add a class based on the @color argument
classes.push(`hds-dropdown-toggle-button--color-${this.color}`);
// add a class based on the @isFullWidth argument
if (this.isFullWidth) {
classes.push('hds-dropdown-toggle-button--width-full');
}
// add a class based on the @isOpen argument
if (this.args.isOpen) {
classes.push('hds-dropdown-toggle-button--is-open');
}
return classes.join(' ');
}
}
setComponentTemplate(TEMPLATE, HdsDropdownToggleButton);
export { COLORS, DEFAULT_COLOR, DEFAULT_SIZE, SIZES, HdsDropdownToggleButton as default };
//# sourceMappingURL=button.js.map