2019-04-23 22:05:50 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
2019-08-10 17:32:06 +00:00
|
|
|
import { Link } from 'inferno-router';
|
2019-10-19 00:20:27 +00:00
|
|
|
import { Subscription } from 'rxjs';
|
2019-04-23 22:05:50 +00:00
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-10-19 00:20:27 +00:00
|
|
|
import {
|
|
|
|
UserOperation,
|
|
|
|
Post,
|
|
|
|
Comment,
|
|
|
|
Community,
|
|
|
|
UserView,
|
|
|
|
SortType,
|
|
|
|
SearchForm,
|
|
|
|
SearchResponse,
|
|
|
|
SearchType,
|
2020-02-02 18:50:44 +00:00
|
|
|
PostResponse,
|
2020-01-20 23:39:45 +00:00
|
|
|
CommentResponse,
|
2020-01-19 05:38:45 +00:00
|
|
|
WebSocketJsonResponse,
|
2019-10-19 00:20:27 +00:00
|
|
|
} from '../interfaces';
|
2019-04-23 22:05:50 +00:00
|
|
|
import { WebSocketService } from '../services';
|
2019-10-19 00:20:27 +00:00
|
|
|
import {
|
2020-01-19 04:54:10 +00:00
|
|
|
wsJsonToRes,
|
2019-10-19 00:20:27 +00:00
|
|
|
fetchLimit,
|
|
|
|
routeSearchTypeToEnum,
|
|
|
|
routeSortTypeToEnum,
|
2019-12-29 20:39:48 +00:00
|
|
|
pictshareAvatarThumbnail,
|
2020-01-02 21:55:54 +00:00
|
|
|
showAvatars,
|
2020-01-23 03:29:11 +00:00
|
|
|
toast,
|
2020-02-09 04:20:11 +00:00
|
|
|
createCommentLikeRes,
|
|
|
|
createPostLikeFindRes,
|
|
|
|
commentsToFlatNodes,
|
2019-10-19 00:20:27 +00:00
|
|
|
} from '../utils';
|
2019-04-23 22:05:50 +00:00
|
|
|
import { PostListing } from './post-listing';
|
2020-04-10 20:55:57 +00:00
|
|
|
import { UserListing } from './user-listing';
|
2019-10-21 00:49:13 +00:00
|
|
|
import { SortSelect } from './sort-select';
|
2019-04-23 22:05:50 +00:00
|
|
|
import { CommentNodes } from './comment-nodes';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
2019-04-23 22:05:50 +00:00
|
|
|
|
|
|
|
interface SearchState {
|
2019-10-19 00:20:27 +00:00
|
|
|
q: string;
|
|
|
|
type_: SearchType;
|
|
|
|
sort: SortType;
|
|
|
|
page: number;
|
2019-04-23 22:05:50 +00:00
|
|
|
searchResponse: SearchResponse;
|
|
|
|
loading: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Search extends Component<any, SearchState> {
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: SearchState = {
|
2019-09-06 01:34:10 +00:00
|
|
|
q: this.getSearchQueryFromProps(this.props),
|
|
|
|
type_: this.getSearchTypeFromProps(this.props),
|
|
|
|
sort: this.getSortTypeFromProps(this.props),
|
|
|
|
page: this.getPageFromProps(this.props),
|
2019-04-23 22:05:50 +00:00
|
|
|
searchResponse: {
|
2019-08-22 05:17:15 +00:00
|
|
|
type_: null,
|
2019-04-23 22:05:50 +00:00
|
|
|
posts: [],
|
|
|
|
comments: [],
|
2019-08-10 17:32:06 +00:00
|
|
|
communities: [],
|
|
|
|
users: [],
|
2019-04-23 22:05:50 +00:00
|
|
|
},
|
|
|
|
loading: false,
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
2019-04-23 22:05:50 +00:00
|
|
|
|
2019-09-06 01:34:10 +00:00
|
|
|
getSearchQueryFromProps(props: any): string {
|
2019-10-19 00:20:27 +00:00
|
|
|
return props.match.params.q ? props.match.params.q : '';
|
2019-09-06 01:34:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getSearchTypeFromProps(props: any): SearchType {
|
2019-10-19 00:20:27 +00:00
|
|
|
return props.match.params.type
|
|
|
|
? routeSearchTypeToEnum(props.match.params.type)
|
|
|
|
: SearchType.All;
|
2019-09-06 01:34:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getSortTypeFromProps(props: any): SortType {
|
2019-10-19 00:20:27 +00:00
|
|
|
return props.match.params.sort
|
|
|
|
? routeSortTypeToEnum(props.match.params.sort)
|
|
|
|
: SortType.TopAll;
|
2019-09-06 01:34:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getPageFromProps(props: any): number {
|
2019-10-19 00:20:27 +00:00
|
|
|
return props.match.params.page ? Number(props.match.params.page) : 1;
|
2019-09-06 01:34:10 +00:00
|
|
|
}
|
|
|
|
|
2019-04-23 22:05:50 +00:00
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
2019-10-21 00:49:13 +00:00
|
|
|
this.handleSortChange = this.handleSortChange.bind(this);
|
2019-04-23 22:05:50 +00:00
|
|
|
|
|
|
|
this.subscription = WebSocketService.Instance.subject
|
2020-01-14 04:04:47 +00:00
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
2019-10-19 00:20:27 +00:00
|
|
|
.subscribe(
|
|
|
|
msg => this.parseMessage(msg),
|
|
|
|
err => console.error(err),
|
2019-04-23 22:05:50 +00:00
|
|
|
() => console.log('complete')
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
|
|
|
|
2019-09-06 01:34:10 +00:00
|
|
|
if (this.state.q) {
|
|
|
|
this.search();
|
|
|
|
}
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
2019-09-06 01:34:10 +00:00
|
|
|
// Necessary for back button for some reason
|
|
|
|
componentWillReceiveProps(nextProps: any) {
|
2019-10-19 00:20:27 +00:00
|
|
|
if (
|
|
|
|
nextProps.history.action == 'POP' ||
|
|
|
|
nextProps.history.action == 'PUSH'
|
|
|
|
) {
|
2019-09-06 01:34:10 +00:00
|
|
|
this.state = this.emptyState;
|
|
|
|
this.state.q = this.getSearchQueryFromProps(nextProps);
|
|
|
|
this.state.type_ = this.getSearchTypeFromProps(nextProps);
|
|
|
|
this.state.sort = this.getSortTypeFromProps(nextProps);
|
|
|
|
this.state.page = this.getPageFromProps(nextProps);
|
|
|
|
this.setState(this.state);
|
|
|
|
this.search();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-23 22:05:50 +00:00
|
|
|
componentDidMount() {
|
2019-10-19 00:20:27 +00:00
|
|
|
document.title = `${i18n.t('search')} - ${
|
|
|
|
WebSocketService.Instance.site.name
|
|
|
|
}`;
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
2020-02-02 18:50:44 +00:00
|
|
|
<h5>{i18n.t('search')}</h5>
|
2020-01-20 23:39:45 +00:00
|
|
|
{this.selects()}
|
|
|
|
{this.searchForm()}
|
|
|
|
{this.state.type_ == SearchType.All && this.all()}
|
|
|
|
{this.state.type_ == SearchType.Comments && this.comments()}
|
|
|
|
{this.state.type_ == SearchType.Posts && this.posts()}
|
|
|
|
{this.state.type_ == SearchType.Communities && this.communities()}
|
|
|
|
{this.state.type_ == SearchType.Users && this.users()}
|
|
|
|
{this.noResults()}
|
|
|
|
{this.paginator()}
|
2019-04-23 22:05:50 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
searchForm() {
|
|
|
|
return (
|
2019-10-19 00:20:27 +00:00
|
|
|
<form
|
|
|
|
class="form-inline"
|
|
|
|
onSubmit={linkEvent(this, this.handleSearchSubmit)}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
class="form-control mr-2"
|
|
|
|
value={this.state.q}
|
|
|
|
placeholder={`${i18n.t('search')}...`}
|
|
|
|
onInput={linkEvent(this, this.handleQChange)}
|
|
|
|
required
|
|
|
|
minLength={3}
|
|
|
|
/>
|
2019-04-23 22:05:50 +00:00
|
|
|
<button type="submit" class="btn btn-secondary mr-2">
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.loading ? (
|
|
|
|
<svg class="icon icon-spinner spin">
|
|
|
|
<use xlinkHref="#icon-spinner"></use>
|
|
|
|
</svg>
|
|
|
|
) : (
|
2020-02-02 18:50:44 +00:00
|
|
|
<span>{i18n.t('search')}</span>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-23 22:05:50 +00:00
|
|
|
</button>
|
|
|
|
</form>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
selects() {
|
|
|
|
return (
|
|
|
|
<div className="mb-2">
|
2019-10-19 00:20:27 +00:00
|
|
|
<select
|
|
|
|
value={this.state.type_}
|
|
|
|
onChange={linkEvent(this, this.handleTypeChange)}
|
|
|
|
class="custom-select custom-select-sm w-auto"
|
|
|
|
>
|
2020-02-02 18:50:44 +00:00
|
|
|
<option disabled>{i18n.t('type')}</option>
|
|
|
|
<option value={SearchType.All}>{i18n.t('all')}</option>
|
|
|
|
<option value={SearchType.Comments}>{i18n.t('comments')}</option>
|
|
|
|
<option value={SearchType.Posts}>{i18n.t('posts')}</option>
|
2019-10-19 00:20:27 +00:00
|
|
|
<option value={SearchType.Communities}>
|
2020-02-02 18:50:44 +00:00
|
|
|
{i18n.t('communities')}
|
2019-10-19 00:20:27 +00:00
|
|
|
</option>
|
2020-02-02 18:50:44 +00:00
|
|
|
<option value={SearchType.Users}>{i18n.t('users')}</option>
|
2019-04-23 22:05:50 +00:00
|
|
|
</select>
|
2019-10-21 00:49:13 +00:00
|
|
|
<span class="ml-2">
|
|
|
|
<SortSelect
|
|
|
|
sort={this.state.sort}
|
|
|
|
onChange={this.handleSortChange}
|
|
|
|
hideHot
|
|
|
|
/>
|
|
|
|
</span>
|
2019-04-23 22:05:50 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
2019-08-10 17:32:06 +00:00
|
|
|
all() {
|
2019-10-19 00:20:27 +00:00
|
|
|
let combined: Array<{
|
|
|
|
type_: string;
|
|
|
|
data: Comment | Post | Community | UserView;
|
|
|
|
}> = [];
|
|
|
|
let comments = this.state.searchResponse.comments.map(e => {
|
|
|
|
return { type_: 'comments', data: e };
|
|
|
|
});
|
|
|
|
let posts = this.state.searchResponse.posts.map(e => {
|
|
|
|
return { type_: 'posts', data: e };
|
|
|
|
});
|
|
|
|
let communities = this.state.searchResponse.communities.map(e => {
|
|
|
|
return { type_: 'communities', data: e };
|
|
|
|
});
|
|
|
|
let users = this.state.searchResponse.users.map(e => {
|
|
|
|
return { type_: 'users', data: e };
|
|
|
|
});
|
2019-04-23 22:05:50 +00:00
|
|
|
|
|
|
|
combined.push(...comments);
|
|
|
|
combined.push(...posts);
|
2019-08-10 17:32:06 +00:00
|
|
|
combined.push(...communities);
|
|
|
|
combined.push(...users);
|
2019-04-23 22:05:50 +00:00
|
|
|
|
|
|
|
// Sort it
|
|
|
|
if (this.state.sort == SortType.New) {
|
|
|
|
combined.sort((a, b) => b.data.published.localeCompare(a.data.published));
|
|
|
|
} else {
|
2019-10-19 00:20:27 +00:00
|
|
|
combined.sort(
|
|
|
|
(a, b) =>
|
|
|
|
((b.data as Comment | Post).score |
|
|
|
|
(b.data as Community).number_of_subscribers |
|
|
|
|
(b.data as UserView).comment_score) -
|
|
|
|
((a.data as Comment | Post).score |
|
|
|
|
(a.data as Community).number_of_subscribers |
|
|
|
|
(a.data as UserView).comment_score)
|
|
|
|
);
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2019-10-19 00:20:27 +00:00
|
|
|
{combined.map(i => (
|
2020-01-20 23:39:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
{i.type_ == 'posts' && (
|
|
|
|
<PostListing post={i.data as Post} showCommunity />
|
|
|
|
)}
|
|
|
|
{i.type_ == 'comments' && (
|
|
|
|
<CommentNodes
|
|
|
|
nodes={[{ comment: i.data as Comment }]}
|
|
|
|
locked
|
|
|
|
noIndent
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{i.type_ == 'communities' && (
|
|
|
|
<div>
|
|
|
|
<span>
|
|
|
|
<Link to={`/c/${(i.data as Community).name}`}>{`/c/${
|
|
|
|
(i.data as Community).name
|
|
|
|
}`}</Link>
|
|
|
|
</span>
|
|
|
|
<span>{` - ${(i.data as Community).title} - ${
|
|
|
|
(i.data as Community).number_of_subscribers
|
|
|
|
} subscribers`}</span>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{i.type_ == 'users' && (
|
|
|
|
<div>
|
|
|
|
<span>
|
2020-04-10 20:55:57 +00:00
|
|
|
<UserListing
|
|
|
|
user={{
|
|
|
|
name: (i.data as UserView).name,
|
|
|
|
avatar: (i.data as UserView).avatar,
|
|
|
|
}}
|
|
|
|
/>
|
2020-01-20 23:39:45 +00:00
|
|
|
</span>
|
|
|
|
<span>{` - ${
|
|
|
|
(i.data as UserView).comment_score
|
|
|
|
} comment karma`}</span>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
2019-04-23 22:05:50 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
))}
|
2019-04-23 22:05:50 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
comments() {
|
|
|
|
return (
|
2020-02-09 04:20:11 +00:00
|
|
|
<CommentNodes
|
|
|
|
nodes={commentsToFlatNodes(this.state.searchResponse.comments)}
|
|
|
|
locked
|
|
|
|
noIndent
|
|
|
|
/>
|
2019-04-23 22:05:50 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
posts() {
|
|
|
|
return (
|
2020-01-20 23:39:45 +00:00
|
|
|
<>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.searchResponse.posts.map(post => (
|
2020-01-20 23:39:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<PostListing post={post} showCommunity />
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
))}
|
2020-01-20 23:39:45 +00:00
|
|
|
</>
|
2019-04-23 22:05:50 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-08-10 17:32:06 +00:00
|
|
|
// Todo possibly create UserListing and CommunityListing
|
|
|
|
communities() {
|
|
|
|
return (
|
2020-01-20 23:39:45 +00:00
|
|
|
<>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.searchResponse.communities.map(community => (
|
2020-01-20 23:39:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<span>
|
|
|
|
<Link
|
|
|
|
to={`/c/${community.name}`}
|
|
|
|
>{`/c/${community.name}`}</Link>
|
|
|
|
</span>
|
|
|
|
<span>{` - ${community.title} - ${community.number_of_subscribers} subscribers`}</span>
|
|
|
|
</div>
|
2019-08-10 17:32:06 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
))}
|
2020-01-20 23:39:45 +00:00
|
|
|
</>
|
2019-08-10 17:32:06 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
users() {
|
|
|
|
return (
|
2020-01-20 23:39:45 +00:00
|
|
|
<>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.searchResponse.users.map(user => (
|
2020-01-20 23:39:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<span>
|
|
|
|
<Link
|
|
|
|
className="text-info"
|
|
|
|
to={`/u/${user.name}`}
|
|
|
|
>{`/u/${user.name}`}</Link>
|
|
|
|
</span>
|
|
|
|
<span>{` - ${user.comment_score} comment karma`}</span>
|
|
|
|
</div>
|
2019-08-10 17:32:06 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
))}
|
2020-01-20 23:39:45 +00:00
|
|
|
</>
|
2019-08-10 17:32:06 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-23 22:05:50 +00:00
|
|
|
paginator() {
|
|
|
|
return (
|
|
|
|
<div class="mt-2">
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.page > 1 && (
|
|
|
|
<button
|
|
|
|
class="btn btn-sm btn-secondary mr-1"
|
|
|
|
onClick={linkEvent(this, this.prevPage)}
|
|
|
|
>
|
2020-02-02 18:50:44 +00:00
|
|
|
{i18n.t('prev')}
|
2019-10-19 00:20:27 +00:00
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
<button
|
|
|
|
class="btn btn-sm btn-secondary"
|
|
|
|
onClick={linkEvent(this, this.nextPage)}
|
|
|
|
>
|
2020-02-02 18:50:44 +00:00
|
|
|
{i18n.t('next')}
|
2019-10-19 00:20:27 +00:00
|
|
|
</button>
|
2019-04-23 22:05:50 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
noResults() {
|
|
|
|
let res = this.state.searchResponse;
|
|
|
|
return (
|
|
|
|
<div>
|
2019-10-20 00:46:29 +00:00
|
|
|
{res &&
|
|
|
|
res.posts.length == 0 &&
|
|
|
|
res.comments.length == 0 &&
|
|
|
|
res.communities.length == 0 &&
|
2020-02-02 18:50:44 +00:00
|
|
|
res.users.length == 0 && <span>{i18n.t('no_results')}</span>}
|
2019-04-23 22:05:50 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
nextPage(i: Search) {
|
2019-04-23 22:05:50 +00:00
|
|
|
i.state.page++;
|
|
|
|
i.setState(i.state);
|
2019-09-06 01:34:10 +00:00
|
|
|
i.updateUrl();
|
2019-04-23 22:05:50 +00:00
|
|
|
i.search();
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
prevPage(i: Search) {
|
2019-04-23 22:05:50 +00:00
|
|
|
i.state.page--;
|
|
|
|
i.setState(i.state);
|
2019-09-06 01:34:10 +00:00
|
|
|
i.updateUrl();
|
2019-04-23 22:05:50 +00:00
|
|
|
i.search();
|
|
|
|
}
|
|
|
|
|
|
|
|
search() {
|
|
|
|
let form: SearchForm = {
|
|
|
|
q: this.state.q,
|
|
|
|
type_: SearchType[this.state.type_],
|
|
|
|
sort: SortType[this.state.sort],
|
|
|
|
page: this.state.page,
|
|
|
|
limit: fetchLimit,
|
|
|
|
};
|
|
|
|
|
2019-09-06 01:34:10 +00:00
|
|
|
if (this.state.q != '') {
|
|
|
|
WebSocketService.Instance.search(form);
|
|
|
|
}
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
2019-10-21 00:49:13 +00:00
|
|
|
handleSortChange(val: SortType) {
|
|
|
|
this.state.sort = val;
|
|
|
|
this.state.page = 1;
|
|
|
|
this.setState(this.state);
|
|
|
|
this.updateUrl();
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleTypeChange(i: Search, event: any) {
|
|
|
|
i.state.type_ = Number(event.target.value);
|
|
|
|
i.state.page = 1;
|
|
|
|
i.setState(i.state);
|
2019-09-06 01:34:10 +00:00
|
|
|
i.updateUrl();
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleSearchSubmit(i: Search, event: any) {
|
|
|
|
event.preventDefault();
|
|
|
|
i.state.loading = true;
|
|
|
|
i.search();
|
|
|
|
i.setState(i.state);
|
2019-09-06 01:34:10 +00:00
|
|
|
i.updateUrl();
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleQChange(i: Search, event: any) {
|
|
|
|
i.state.q = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-09-06 01:34:10 +00:00
|
|
|
updateUrl() {
|
|
|
|
let typeStr = SearchType[this.state.type_].toLowerCase();
|
|
|
|
let sortStr = SortType[this.state.sort].toLowerCase();
|
2019-10-19 00:20:27 +00:00
|
|
|
this.props.history.push(
|
|
|
|
`/search/q/${this.state.q}/type/${typeStr}/sort/${sortStr}/page/${this.state.page}`
|
|
|
|
);
|
2019-09-06 01:34:10 +00:00
|
|
|
}
|
|
|
|
|
2020-01-19 05:38:45 +00:00
|
|
|
parseMessage(msg: WebSocketJsonResponse) {
|
2019-04-23 22:05:50 +00:00
|
|
|
console.log(msg);
|
2020-01-19 04:54:10 +00:00
|
|
|
let res = wsJsonToRes(msg);
|
2020-01-25 14:58:53 +00:00
|
|
|
if (msg.error) {
|
2020-01-23 03:29:11 +00:00
|
|
|
toast(i18n.t(msg.error), 'danger');
|
2019-04-23 22:05:50 +00:00
|
|
|
return;
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.Search) {
|
|
|
|
let data = res.data as SearchResponse;
|
|
|
|
this.state.searchResponse = data;
|
2019-04-23 22:05:50 +00:00
|
|
|
this.state.loading = false;
|
2019-10-19 00:20:27 +00:00
|
|
|
document.title = `${i18n.t('search')} - ${this.state.q} - ${
|
|
|
|
WebSocketService.Instance.site.name
|
|
|
|
}`;
|
|
|
|
window.scrollTo(0, 0);
|
2019-04-23 22:05:50 +00:00
|
|
|
this.setState(this.state);
|
2020-01-24 00:17:42 +00:00
|
|
|
} else if (res.op == UserOperation.CreateCommentLike) {
|
|
|
|
let data = res.data as CommentResponse;
|
2020-02-09 04:20:11 +00:00
|
|
|
createCommentLikeRes(data, this.state.searchResponse.comments);
|
2020-01-20 23:39:45 +00:00
|
|
|
this.setState(this.state);
|
2020-01-24 00:17:42 +00:00
|
|
|
} else if (res.op == UserOperation.CreatePostLike) {
|
2020-02-02 18:50:44 +00:00
|
|
|
let data = res.data as PostResponse;
|
2020-02-09 04:20:11 +00:00
|
|
|
createPostLikeFindRes(data, this.state.searchResponse.posts);
|
2020-01-20 23:39:45 +00:00
|
|
|
this.setState(this.state);
|
2019-04-23 22:05:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|