houdini/app/javascript/legacy_react/src/components/registration_page/UserInfoPanel.tsx

54 lines
1.2 KiB
TypeScript
Raw Normal View History

// License: LGPL-3.0-or-later
import * as React from 'react';
import {observer} from 'mobx-react';
import { injectIntl} from 'react-intl';
import {Field} from "mobx-react-form";
import {computed} from 'mobx';
import {WizardPanel, WizardTabPanelProps} from "../common/wizard/WizardPanel";
import {WizardTabPanelState} from "../common/wizard/wizard_state";
import UserInfoForm from "./UserInfoForm";
export interface UserInfoPanelProps extends WizardTabPanelProps {
buttonText: string
2018-06-21 10:54:35 -05:00
buttonTextOnProgress?:string
}
class UserInfoPanel extends React.Component<UserInfoPanelProps & {}> {
@computed
get wizardTab(): WizardTabPanelState {
return this.props.tab
}
@computed
get form():Field{
return this.wizardTab.form
}
@computed
get submit() {
return this.form.onSubmit
}
@computed
get tabName() {
return this.wizardTab.tabName;
}
render() {
return <WizardPanel
tab={this.wizardTab} key={this.tabName}
>
2018-06-21 10:54:35 -05:00
<UserInfoForm form={this.form} buttonText={this.props.buttonText} buttonTextOnProgress={this.props.buttonTextOnProgress}/>
</WizardPanel>;
}
}
export default injectIntl(observer(UserInfoPanel))