discard propTypes some more
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
598cf21684
commit
65b3adfbe3
1 changed files with 6 additions and 17 deletions
|
@ -15,9 +15,8 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import * as React from 'react';
|
import React from 'react';
|
||||||
import * as ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
import * as PropTypes from 'prop-types';
|
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import flatMap from 'lodash/flatMap';
|
import flatMap from 'lodash/flatMap';
|
||||||
import {ICompletion, ISelectionRange, IProviderCompletions} from '../../../autocomplete/Autocompleter';
|
import {ICompletion, ISelectionRange, IProviderCompletions} from '../../../autocomplete/Autocompleter';
|
||||||
|
@ -31,10 +30,14 @@ const COMPOSER_SELECTED = 0;
|
||||||
export const generateCompletionDomId = (number) => `mx_Autocomplete_Completion_${number}`;
|
export const generateCompletionDomId = (number) => `mx_Autocomplete_Completion_${number}`;
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
|
// the query string for which to show autocomplete suggestions
|
||||||
query: string;
|
query: string;
|
||||||
|
// method invoked with range and text content when completion is confirmed
|
||||||
onConfirm: (ICompletion) => void;
|
onConfirm: (ICompletion) => void;
|
||||||
|
// method invoked when selected (if any) completion changes
|
||||||
onSelectionChange?: (ICompletion, number) => void;
|
onSelectionChange?: (ICompletion, number) => void;
|
||||||
selection: ISelectionRange;
|
selection: ISelectionRange;
|
||||||
|
// The room in which we're autocompleting
|
||||||
room: Room;
|
room: Room;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,20 +51,6 @@ interface IState {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class Autocomplete extends React.PureComponent<IProps, IState> {
|
export default class Autocomplete extends React.PureComponent<IProps, IState> {
|
||||||
static propTypes = {
|
|
||||||
// the query string for which to show autocomplete suggestions
|
|
||||||
query: PropTypes.string.isRequired,
|
|
||||||
|
|
||||||
// method invoked with range and text content when completion is confirmed
|
|
||||||
onConfirm: PropTypes.func.isRequired,
|
|
||||||
|
|
||||||
// method invoked when selected (if any) completion changes
|
|
||||||
onSelectionChange: PropTypes.func,
|
|
||||||
|
|
||||||
// The room in which we're autocompleting
|
|
||||||
room: PropTypes.instanceOf(Room),
|
|
||||||
};
|
|
||||||
|
|
||||||
autocompleter: Autocompleter;
|
autocompleter: Autocompleter;
|
||||||
queryRequested: string;
|
queryRequested: string;
|
||||||
debounceCompletionsRequest: NodeJS.Timeout;
|
debounceCompletionsRequest: NodeJS.Timeout;
|
||||||
|
|
Loading…
Reference in a new issue