@hashicorp/design-system-components
Version:
Helios Design System Components
70 lines (61 loc) • 3.02 kB
JavaScript
import Component from '@glimmer/component';
import { assert } from '@ember/debug';
import { HdsTextSizeValues, HdsTextWeightValues } 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<Hds::Text\n @group=\"display\"\n @size={{this.size}}\n @weight={{this.weight}}\n @align={{@align}}\n @color={{@color}}\n @tag={{@tag}}\n ...attributes\n>{{yield}}</Hds::Text>");
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
// notice: only some combinations of size + font-weight are allowed (per design specs)
// see: https://www.figma.com/file/oQsMzMMnynfPWpMEt91OpH/HDS-Product---Foundations?node-id=1262%3A9192
const DEFAULT_SIZE = HdsTextSizeValues.TwoHundred;
// Filter out reverse mappings from enum
// https://www.typescriptlang.org/docs/handbook/enums.html#reverse-mappings
const SIZES = Object.values(HdsTextSizeValues).filter(v => typeof v === 'number');
const DEFAULT_WEIGHTS_PER_SIZE = {
[]: HdsTextWeightValues.Bold,
[]: HdsTextWeightValues.Semibold,
[]: HdsTextWeightValues.Semibold,
[]: HdsTextWeightValues.Semibold,
[]: HdsTextWeightValues.Medium
};
const WEIGHTS_PER_SIZE = {
[]: [HdsTextWeightValues.Bold],
[]: [HdsTextWeightValues.Medium, HdsTextWeightValues.Semibold, HdsTextWeightValues.Bold],
[]: [HdsTextWeightValues.Medium, HdsTextWeightValues.Semibold, HdsTextWeightValues.Bold],
[]: [HdsTextWeightValues.Semibold],
[]: [HdsTextWeightValues.Medium]
};
class HdsTextDisplay extends Component {
// Sets the "size" for the text
get size() {
let {
size = DEFAULT_SIZE
} = this.args;
// let's be a bit forgiving with the consumers
if (typeof size === 'string') {
size = parseInt(size, 10);
}
assert(`@size for "Hds::Text::Display" must be one of the following: ${SIZES.join(', ')}; received: ${size}`, SIZES.includes(size));
return size;
}
// Sets the "weight" for the text
get weight() {
let {
weight
} = this.args;
if (weight) {
const weights = WEIGHTS_PER_SIZE[this.size];
assert(`@weight for "Hds::Text::Display" with @size=${this.size} must be one of the following: ${weights.join(', ')}; received: ${weight}`, weights.includes(weight));
} else {
// use the default (first item in the array)
weight = DEFAULT_WEIGHTS_PER_SIZE[this.size];
}
return weight;
}
}
setComponentTemplate(TEMPLATE, HdsTextDisplay);
export { DEFAULT_SIZE, DEFAULT_WEIGHTS_PER_SIZE, SIZES, WEIGHTS_PER_SIZE, HdsTextDisplay as default };
//# sourceMappingURL=display.js.map