Search code examples
javascriptreactjstypescriptblueprintjs

Do I have to use TypeScript with the MultiSelect (labs) component in Blueprint.js


I'm busy experimenting with Blueprint.js and the MultiSelect component, which I undestand is still in active development: http://blueprintjs.com/docs/#labs.multiselect

I have never used TypeScript and it is stated that

// Select<T> is a generic component to work with your data types.
// In TypeScript, you must first obtain a non-generic reference:
const FilmSelect = Select.ofType<Film>();

So my question is, is it possible to use this component in Javascript without using TypeScript?

My react component is not rendering at present, with the following error:

multiSelect.js?64c9:37 Uncaught TypeError: Cannot read property 'map' of undefined

The component is defined as:

import React from 'react';
import Flexbox from 'flexbox-react';
import {Dialog, Button, Intent} from '@blueprintjs/core';
import {MultiSelect} from '@blueprintjs/labs';
import {inject, observer} from 'mobx-react';
import Avatar from 'react-avatar';

@inject('AccountRelationshipsStore', 'AccountUsersStore', 'ToastStore')@observer
export default class AccountRelationshipsNewRelationship extends React.Component {
constructor(props) {
    super(props);

    this.state = ({isSubmitting: false});
}

renderUser(handleClick, isActive, user) {
    return (
        <span>{user.fullName}</span>
    );
}

renderTag(user) {
    return user.fullName;
}

handleItemSelect(item) {
    console.log(item);
}

render() {
    return (
        <Dialog isOpen={this.props.dialogOpen} onClose={() => this.props.toggleDialog()} canOutsideClickClose={true} title={I18n.t('js.add_a_new_user_relationship', {
            type: this.props.AccountRelationshipsStore.activeRelationship.name.toLowerCase(),
            name: this.props.AccountRelationshipsStore.activeUser.fullName
        })} className='side-dialog' inline={true}>
            <form>
                <div className='pt-dialog-body'>
                    <Flexbox flexDirection='column' flexGrow={1}>
                        <Flexbox flexDirection='row' justifyContent='center' flexGrow={1}>
                            <Avatar src={this.props.AccountRelationshipsStore.activeUser.imageFileName} size={100} round={true} className=''/>
                        </Flexbox>
                        <Flexbox flexDirection='row' justifyContent='center' flexGrow={1} marginTop='10px'>
                            <p className='pt-text-muted'>{this.props.AccountRelationshipsStore.activeUser.fullName}</p>
                        </Flexbox>
                        <Flexbox>
                            <MultiSelect items={this.props.AccountUsersStore.users} itemRenderer={this.renderUser.bind(this)} onItemSelect={this.handleItemSelect.bind(this)} tagRenderer={this.renderTag.bind(this)}/>
                        </Flexbox>
                    </Flexbox>
                </div>
                <div className='pt-dialog-footer pt-dialog-footer-bottom'>
                    <div className='pt-dialog-footer-actions'>
                        <Button text={I18n.t('js.cancel')} onClick={() => this.props.toggleDialog()}/>
                        <Button intent={Intent.PRIMARY} type='submit' text={I18n.t('js.set_relationships')} loading={this.state.isSubmitting}/>
                    </div>
                </div>
            </form>
        </Dialog>
    );
  }
}

Solution

  • Yes, you can use the component with JS. Just omit the generic type param:

    const UserMultiSelect = MultiSelect.ofType();
    
    <UserMultiSelect items={this.props.AccountUsersStore.users} ... />
    

    I admit this is somewhat unintuitive, so it probably deserves a documentation update.