mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 13:51:13 +00:00
Moving comment link to top bar. Fixes #307
This commit is contained in:
parent
a0d9e5c672
commit
18d1e8e181
1 changed files with 5 additions and 5 deletions
|
@ -202,8 +202,9 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
<Icon icon="minus-square" classes="icon-inline" />
|
<Icon icon="minus-square" classes="icon-inline" />
|
||||||
)}
|
)}
|
||||||
</button>
|
</button>
|
||||||
|
{this.linkBtn(true)}
|
||||||
{/* This is an expanding spacer for mobile */}
|
{/* This is an expanding spacer for mobile */}
|
||||||
<div className="mr-lg-4 flex-grow-1 flex-lg-grow-0 unselectable pointer mx-2"></div>
|
<div className="mr-lg-5 flex-grow-1 flex-lg-grow-0 unselectable pointer mx-2"></div>
|
||||||
{showScores() && (
|
{showScores() && (
|
||||||
<>
|
<>
|
||||||
<a
|
<a
|
||||||
|
@ -250,7 +251,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
<div class="d-flex justify-content-between justify-content-lg-start flex-wrap text-muted font-weight-bold">
|
<div class="d-flex justify-content-between justify-content-lg-start flex-wrap text-muted font-weight-bold">
|
||||||
{this.props.showContext && this.linkBtn}
|
{this.props.showContext && this.linkBtn()}
|
||||||
{this.props.markable && (
|
{this.props.markable && (
|
||||||
<button
|
<button
|
||||||
class="btn btn-link btn-animate text-muted"
|
class="btn btn-link btn-animate text-muted"
|
||||||
|
@ -342,7 +343,6 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
</Link>
|
</Link>
|
||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
{!this.props.showContext && this.linkBtn}
|
|
||||||
<button
|
<button
|
||||||
class="btn btn-link btn-animate text-muted"
|
class="btn btn-link btn-animate text-muted"
|
||||||
onClick={linkEvent(
|
onClick={linkEvent(
|
||||||
|
@ -805,11 +805,11 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
: cv.comment.read;
|
: cv.comment.read;
|
||||||
}
|
}
|
||||||
|
|
||||||
get linkBtn() {
|
linkBtn(small = false) {
|
||||||
let cv = this.props.node.comment_view;
|
let cv = this.props.node.comment_view;
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
className="btn btn-link btn-animate text-muted"
|
className={`btn ${small && "btn-sm"} btn-link btn-animate text-muted`}
|
||||||
to={`/post/${cv.post.id}/comment/${cv.comment.id}`}
|
to={`/post/${cv.post.id}/comment/${cv.comment.id}`}
|
||||||
title={this.props.showContext ? i18n.t("show_context") : i18n.t("link")}
|
title={this.props.showContext ? i18n.t("show_context") : i18n.t("link")}
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue