import { Component, linkEvent } from 'inferno'; import { ListingType } from '../interfaces'; import { UserService } from '../services'; import { i18n } from '../i18next'; interface ListingTypeSelectProps { type_: ListingType; onChange?(val: ListingType): any; } interface ListingTypeSelectState { type_: ListingType; } export class ListingTypeSelect extends Component< ListingTypeSelectProps, ListingTypeSelectState > { private emptyState: ListingTypeSelectState = { type_: this.props.type_, }; constructor(props: any, context: any) { super(props, context); this.state = this.emptyState; } static getDerivedStateFromProps(props) { return { type_: props.type_, }; } render() { return (
); } handleTypeChange(i: ListingTypeSelect, event: any) { i.props.onChange(Number(event.target.value)); } }