| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import { AsyncTypeahead } from 'react-bootstrap-typeahead';
- import { debounce } from 'throttle-debounce';
- import { createSubscribedElement } from '../../UnstatedUtils';
- import AppContainer from '../../../services/AppContainer';
- import UserGroupDetailContainer from '../../../services/UserGroupDetailContainer';
- import { toastSuccess, toastError } from '../../../util/apiNotification';
- class UserGroupUserFormByInput extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- input: '',
- applicableUsers: [],
- isLoading: false,
- searchError: null,
- };
- this.xss = window.xss;
- this.onInputChange = this.onInputChange.bind(this);
- this.addUserBySubmit = this.addUserBySubmit.bind(this);
- this.validateForm = this.validateForm.bind(this);
- this.handleChange = this.handleChange.bind(this);
- this.handleSearch = this.handleSearch.bind(this);
- this.onKeyDown = this.onKeyDown.bind(this);
- this.renderMenuItemChildren = this.renderMenuItemChildren.bind(this);
- this.searhApplicableUsersDebounce = debounce(1000, this.searhApplicableUsers);
- }
- /**
- * input user name to add to the group
- * @param {string} input
- */
- onInputChange(input) {
- this.setState({ input });
- if (input === '') {
- this.setState({ applicableUsers: [] });
- }
- }
- async addUserBySubmit(e) {
- e.preventDefault();
- const { input } = this.state;
- try {
- await this.props.userGroupDetailContainer.addUserByUsername(input);
- toastSuccess(`Added "${this.xss.process(input)}" to "${this.xss.process(this.props.userGroupDetailContainer.state.userGroup.name)}"`);
- this.setState({ input: '' });
- }
- catch (err) {
- toastError(new Error(`Unable to add "${this.xss.process(input)}" to "${this.xss.process(this.props.userGroupDetailContainer.state.userGroup.name)}"`));
- }
- }
- validateForm() {
- return this.state.input !== '';
- }
- searhApplicableUsers() {
- this.props.userGroupDetailContainer.searhApplicableUsers();
- }
- /**
- * Reflect when forecast is clicked
- * @param {string} input
- */
- handleChange(input) {
- this.setState({ input });
- }
- handleSearch(keyword) {
- if (keyword === '') {
- return;
- }
- this.setState({ isLoading: true });
- this.searhApplicableUsersDebounce();
- }
- onKeyDown(event) {
- // 13 is Enter key
- if (event.keyCode === 13) {
- this.addUserBySubmit();
- }
- }
- getEmptyLabel() {
- return (this.state.searchError !== null) && 'Error on searching.';
- }
- renderMenuItemChildren(option, props, index) {
- const user = option;
- return (
- <span>
- {user}
- </span>
- );
- }
- render() {
- const { t } = this.props;
- const inputProps = { autoComplete: 'off' };
- return (
- <form className="form-inline" onSubmit={this.addUserBySubmit}>
- <div className="form-group">
- <AsyncTypeahead
- {...this.props}
- id="name-typeahead-asynctypeahead"
- ref={(c) => { this.typeahead = c }}
- inputProps={inputProps}
- isLoading={this.state.isLoading}
- labelKey="name"
- minLength={0}
- options={this.state.applicableUsers} // Search result
- emptyLabel={this.getEmptyLabel()}
- searchText={(this.state.isLoading ? 'Searching...' : this.getEmptyLabel())}
- align="left"
- onChange={this.handleChange}
- onSearch={this.handleSearch}
- onInputChange={this.onInputChange}
- onKeyDown={this.onKeyDown}
- renderMenuItemChildren={this.renderMenuItemChildren}
- caseSensitive={false}
- />
- </div>
- <button type="submit" className="btn btn-sm btn-success" disabled={!this.validateForm()}>{t('add')}</button>
- </form>
- );
- }
- }
- UserGroupUserFormByInput.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- userGroupDetailContainer: PropTypes.instanceOf(UserGroupDetailContainer).isRequired,
- };
- /**
- * Wrapper component for using unstated
- */
- const UserGroupUserFormByInputWrapper = (props) => {
- return createSubscribedElement(UserGroupUserFormByInput, props, [AppContainer, UserGroupDetailContainer]);
- };
- export default withTranslation()(UserGroupUserFormByInputWrapper);
|