import React, { FC } from 'react'; import PropTypes from 'prop-types'; import SearchPageForm from './SearchPageForm'; import AppContainer from '../../client/services/AppContainer'; type page = { status: string, grant: number, grantedUsers: string[], liker: string[], seenUsers: string[], commentCount: number, _id: string, createdAt: string, updatedAt: string, path: string, creator: string, lastUpdateUser: { isGravatarEnabled: boolean, isEmailPublished: boolean, lang: string, status: number, admin: boolean, isInvitationEmailSended: boolean, _id: string, createdAt: string, name: string, username: string, email: string, imageUrlCached: string, lastLoginAt: string, }, redirecTo: string, grantedGroup: string[], _v : string, revision: string, id: string } type Props = { searchingKeyword: string, appContainer: AppContainer, t: (str: string) => string, onSearchInvoked: (data : page[]) => boolean, } const SearchControl: FC = (props: Props) => { // Temporaly workaround for lint error // later needs to be fixed: SearchControl to typescript componet const SearchPageFormTypeAny : any = SearchPageForm; return (
{/* TODO: place deleteAll button , relevance button , include specificPath button */}
); }; SearchControl.propTypes = { t: PropTypes.func.isRequired, searchingKeyword: PropTypes.string.isRequired, appContainer: PropTypes.instanceOf(AppContainer).isRequired, onSearchInvoked: PropTypes.func.isRequired, }; export default SearchControl;