mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 08:32:02 +00:00
Better tribute.
This commit is contained in:
parent
6c84c3b971
commit
ce9c0b4aa7
3 changed files with 5 additions and 8 deletions
2
ui/assets/libs/tribute.min.js
vendored
2
ui/assets/libs/tribute.min.js
vendored
File diff suppressed because one or more lines are too long
10
ui/src/components/comment-form.tsx
vendored
10
ui/src/components/comment-form.tsx
vendored
|
@ -6,7 +6,7 @@ import { WebSocketService, UserService } from '../services';
|
|||
import * as autosize from 'autosize';
|
||||
import { i18n } from '../i18next';
|
||||
import { T } from 'inferno-i18next';
|
||||
declare var Tribute: any;
|
||||
import Tribute from 'tributejs/src/Tribute.js';
|
||||
|
||||
interface CommentFormProps {
|
||||
postId?: number;
|
||||
|
@ -50,7 +50,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
|
|||
return `[/u/${item.original.key}](/u/${item.original.key})`;
|
||||
},
|
||||
values: (text: string, cb: any) => {
|
||||
this.userSearch(text, users => cb(users));
|
||||
this.userSearch(text, (users: any) => cb(users));
|
||||
},
|
||||
autocompleteMode: true,
|
||||
},
|
||||
|
@ -62,7 +62,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
|
|||
return `[/c/${item.original.key}](/c/${item.original.key})`;
|
||||
},
|
||||
values: (text: string, cb: any) => {
|
||||
this.communitySearch(text, communities => cb(communities));
|
||||
this.communitySearch(text, (communities: any) => cb(communities));
|
||||
},
|
||||
autocompleteMode: true,
|
||||
}
|
||||
|
@ -149,7 +149,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
|
|||
type_: SearchType[SearchType.Users],
|
||||
sort: SortType[SortType.TopAll],
|
||||
page: 1,
|
||||
limit: fetchLimit,
|
||||
limit: 6,
|
||||
};
|
||||
|
||||
WebSocketService.Instance.search(form);
|
||||
|
@ -180,7 +180,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
|
|||
type_: SearchType[SearchType.Communities],
|
||||
sort: SortType[SortType.TopAll],
|
||||
page: 1,
|
||||
limit: fetchLimit,
|
||||
limit: 6,
|
||||
};
|
||||
|
||||
WebSocketService.Instance.search(form);
|
||||
|
|
1
ui/src/index.html
vendored
1
ui/src/index.html
vendored
|
@ -9,7 +9,6 @@
|
|||
<link rel="shortcut icon" type="image/svg+xml" href="/static/assets/favicon.svg" />
|
||||
<link rel="apple-touch-icon" href="/static/assets/apple-touch-icon.png" />
|
||||
<script async src="/static/assets/libs/sortable/sortable.min.js"></script>
|
||||
<script async src="/static/assets/libs/tribute.min.js"></script>
|
||||
<script src="/static/assets/libs/markdown-it-emoji/markdown-it-emoji.min.js" type="text/javascript"></script>
|
||||
</head>
|
||||
|
||||
|
|
Loading…
Reference in a new issue