Grabbed dndbeyond's source code

```
~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js
```
This commit is contained in:
2025-05-28 11:50:03 -07:00
commit 8df9031d27
3592 changed files with 319051 additions and 0 deletions
@@ -0,0 +1,79 @@
import React from "react";
import { connect, DispatchProp } from "react-redux";
import {
CharacterConfiguration,
rulesEngineSelectors,
} from "@dndbeyond/character-rules-engine/es";
import { builderActions } from "../../actions";
import { BuilderAppState } from "../../typings";
interface Props extends DispatchProp {
configuration: CharacterConfiguration;
}
interface State {
enabled: boolean;
}
class HelpTextManager extends React.PureComponent<Props, State> {
constructor(props: Props) {
super(props);
const { configuration } = props;
this.state = {
enabled:
configuration.showHelpText === null
? false
: configuration.showHelpText,
};
}
componentDidUpdate(prevProps: Props, prevState: State) {
const { configuration } = this.props;
this.setState({
enabled:
configuration.showHelpText === null
? false
: configuration.showHelpText,
});
}
handleHelpTextChange = (evt: React.MouseEvent): void => {
const { dispatch } = this.props;
const { enabled } = this.state;
const isEnabled = !enabled;
this.setState({
enabled: isEnabled,
});
dispatch(builderActions.showHelpTextSet(isEnabled));
};
render() {
const { enabled } = this.state;
let classNames: Array<string> = ["help-text-manager"];
if (enabled) {
classNames.push("help-text-manager-enabled");
} else {
classNames.push("help-text-manager-disabled");
}
return (
<div className={classNames.join(" ")} onClick={this.handleHelpTextChange}>
<div className="help-text-manager-icon" />
</div>
);
}
}
function mapStateToProps(state: BuilderAppState) {
return {
configuration: rulesEngineSelectors.getCharacterConfiguration(state),
};
}
export default connect(mapStateToProps)(HelpTextManager);