Files
dndbeyond_src/ddb_main/tools/js/CharacterSheet/components/ProficiencyBonusBox/ProficiencyBonusBox.tsx
T

66 lines
1.8 KiB
TypeScript

import React from "react";
import {
BeveledBoxSvg94x89,
BoxBackground,
} from "@dndbeyond/character-components/es";
import { CharacterTheme } from "@dndbeyond/character-rules-engine/es";
import { NumberDisplay } from "~/components/NumberDisplay";
import a11yStyles from "~/styles/accessibility.module.css";
interface Props {
proficiencyBonus: number;
onClick?: () => void;
theme: CharacterTheme;
}
export default class ProficiencyBonusBox extends React.PureComponent<Props> {
handleClick = (evt: React.MouseEvent): void => {
const { onClick } = this.props;
if (onClick) {
evt.stopPropagation();
evt.nativeEvent.stopImmediatePropagation();
onClick();
}
};
render() {
const { proficiencyBonus, theme } = this.props;
return (
<section className="ct-proficiency-bonus-box" onClick={this.handleClick}>
<BoxBackground StyleComponent={BeveledBoxSvg94x89} theme={theme} />
<h2 className={a11yStyles.screenreaderOnly}>Proficiency Bonus</h2>
<div
className={`ct-proficiency-bonus-box__heading ${
theme.isDarkMode
? "ct-proficiency-bonus-box__heading--dark-mode"
: ""
}`}
>
Proficiency
</div>
<div
className={`ct-proficiency-bonus-box__value ${
theme.isDarkMode ? "ct-proficiency-bonus-box__value--dark-mode" : ""
}`}
>
<NumberDisplay
type="signed"
number={proficiencyBonus}
size={"large"}
/>
</div>
<div
className={`ct-proficiency-bonus-box__label ${
theme.isDarkMode ? "ct-proficiency-bonus-box__label--dark-mode" : ""
}`}
>
Bonus
</div>
</section>
);
}
}