mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-05 06:00:31 +00:00
Adding similar post searching before creating post.
- Fixes #185. - Offsetting create post and community columns.
This commit is contained in:
parent
ccc350ff18
commit
08d7695ef5
@ -18,7 +18,7 @@ export class CreateCommunity extends Component<any, any> {
|
|||||||
return (
|
return (
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-lg-6 mb-4">
|
<div class="col-12 col-lg-6 offset-lg-3 mb-4">
|
||||||
<h5>Create Community</h5>
|
<h5>Create Community</h5>
|
||||||
<CommunityForm onCreate={this.handleCommunityCreate}/>
|
<CommunityForm onCreate={this.handleCommunityCreate}/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -17,7 +17,7 @@ export class CreatePost extends Component<any, any> {
|
|||||||
return (
|
return (
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-lg-6 mb-4">
|
<div class="col-12 col-lg-6 offset-lg-3 mb-4">
|
||||||
<h5>Create a Post</h5>
|
<h5>Create a Post</h5>
|
||||||
<PostForm onCreate={this.handlePostCreate} prevCommunityName={this.prevCommunityName} />
|
<PostForm onCreate={this.handlePostCreate} prevCommunityName={this.prevCommunityName} />
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import { Component, linkEvent } from 'inferno';
|
import { Component, linkEvent } from 'inferno';
|
||||||
|
import { PostListings } from './post-listings';
|
||||||
import { Subscription } from "rxjs";
|
import { Subscription } from "rxjs";
|
||||||
import { retryWhen, delay, take } from 'rxjs/operators';
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
||||||
import { PostForm as PostFormI, Post, PostResponse, UserOperation, Community, ListCommunitiesResponse, ListCommunitiesForm, SortType } from '../interfaces';
|
import { PostForm as PostFormI, Post, PostResponse, UserOperation, Community, ListCommunitiesResponse, ListCommunitiesForm, SortType, SearchForm, SearchType, SearchResponse } from '../interfaces';
|
||||||
import { WebSocketService, UserService } from '../services';
|
import { WebSocketService, UserService } from '../services';
|
||||||
import { msgOp, getPageTitle } from '../utils';
|
import { msgOp, getPageTitle } from '../utils';
|
||||||
import * as autosize from 'autosize';
|
import * as autosize from 'autosize';
|
||||||
@ -19,6 +20,7 @@ interface PostFormState {
|
|||||||
communities: Array<Community>;
|
communities: Array<Community>;
|
||||||
loading: boolean;
|
loading: boolean;
|
||||||
suggestedTitle: string;
|
suggestedTitle: string;
|
||||||
|
suggestedPosts: Array<Post>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class PostForm extends Component<PostFormProps, PostFormState> {
|
export class PostForm extends Component<PostFormProps, PostFormState> {
|
||||||
@ -34,6 +36,7 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
|||||||
communities: [],
|
communities: [],
|
||||||
loading: false,
|
loading: false,
|
||||||
suggestedTitle: undefined,
|
suggestedTitle: undefined,
|
||||||
|
suggestedPosts: [],
|
||||||
}
|
}
|
||||||
|
|
||||||
constructor(props: any, context: any) {
|
constructor(props: any, context: any) {
|
||||||
@ -86,7 +89,7 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
|||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<input type="url" class="form-control" value={this.state.postForm.url} onInput={linkEvent(this, this.handlePostUrlChange)} />
|
<input type="url" class="form-control" value={this.state.postForm.url} onInput={linkEvent(this, this.handlePostUrlChange)} />
|
||||||
{this.state.suggestedTitle &&
|
{this.state.suggestedTitle &&
|
||||||
<span class="text-muted small font-weight-bold pointer" onClick={linkEvent(this, this.copySuggestedTitle)}>copy suggested title: {this.state.suggestedTitle}</span>
|
<div class="mt-1 text-muted small font-weight-bold pointer" onClick={linkEvent(this, this.copySuggestedTitle)}>copy suggested title: {this.state.suggestedTitle}</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -94,6 +97,12 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
|||||||
<label class="col-sm-2 col-form-label">Title</label>
|
<label class="col-sm-2 col-form-label">Title</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<textarea value={this.state.postForm.name} onInput={linkEvent(this, this.handlePostNameChange)} class="form-control" required rows={2} minLength={3} maxLength={100} />
|
<textarea value={this.state.postForm.name} onInput={linkEvent(this, this.handlePostNameChange)} class="form-control" required rows={2} minLength={3} maxLength={100} />
|
||||||
|
{this.state.suggestedPosts.length > 0 &&
|
||||||
|
<>
|
||||||
|
<div class="my-1 text-muted small font-weight-bold">These posts might be related</div>
|
||||||
|
<PostListings posts={this.state.suggestedPosts} />
|
||||||
|
</>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
@ -157,6 +166,22 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
|||||||
|
|
||||||
handlePostNameChange(i: PostForm, event: any) {
|
handlePostNameChange(i: PostForm, event: any) {
|
||||||
i.state.postForm.name = event.target.value;
|
i.state.postForm.name = event.target.value;
|
||||||
|
|
||||||
|
let form: SearchForm = {
|
||||||
|
q: i.state.postForm.name,
|
||||||
|
type_: SearchType[SearchType.Posts],
|
||||||
|
sort: SortType[SortType.TopAll],
|
||||||
|
community_id: i.state.postForm.community_id,
|
||||||
|
page: 1,
|
||||||
|
limit: 6,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (i.state.postForm.name !== '') {
|
||||||
|
WebSocketService.Instance.search(form);
|
||||||
|
} else {
|
||||||
|
i.state.suggestedPosts = [];
|
||||||
|
}
|
||||||
|
|
||||||
i.setState(i.state);
|
i.setState(i.state);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -201,6 +226,10 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
|||||||
this.state.loading = false;
|
this.state.loading = false;
|
||||||
let res: PostResponse = msg;
|
let res: PostResponse = msg;
|
||||||
this.props.onEdit(res.post);
|
this.props.onEdit(res.post);
|
||||||
|
} else if (op == UserOperation.Search) {
|
||||||
|
let res: SearchResponse = msg;
|
||||||
|
this.state.suggestedPosts = res.posts;
|
||||||
|
this.setState(this.state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -253,7 +253,6 @@ export class Search extends Component<any, SearchState> {
|
|||||||
document.title = `Search - ${this.state.q} - ${WebSocketService.Instance.site.name}`;
|
document.title = `Search - ${this.state.q} - ${WebSocketService.Instance.site.name}`;
|
||||||
window.scrollTo(0,0);
|
window.scrollTo(0,0);
|
||||||
this.setState(this.state);
|
this.setState(this.state);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user