mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 16:09:41 +00:00
User details ui fix (#1032)
* User details ui fix * User details ui fix
This commit is contained in:
parent
5ada39f39c
commit
aaa4361158
3 changed files with 41 additions and 29 deletions
7
ui/src/components/comment-node.tsx
vendored
7
ui/src/components/comment-node.tsx
vendored
|
@ -64,6 +64,7 @@ interface CommentNodeState {
|
||||||
|
|
||||||
interface CommentNodeProps {
|
interface CommentNodeProps {
|
||||||
node: CommentNodeI;
|
node: CommentNodeI;
|
||||||
|
noBorder?: boolean;
|
||||||
noIndent?: boolean;
|
noIndent?: boolean;
|
||||||
viewOnly?: boolean;
|
viewOnly?: boolean;
|
||||||
locked?: boolean;
|
locked?: boolean;
|
||||||
|
@ -136,9 +137,9 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
id={`comment-${node.comment.id}`}
|
id={`comment-${node.comment.id}`}
|
||||||
className={`details comment-node border-top border-light py-2 ${
|
className={`details comment-node py-2 ${
|
||||||
this.isCommentNew ? 'mark' : ''
|
!this.props.noBorder ? 'border-top border-light' : ''
|
||||||
}`}
|
} ${this.isCommentNew ? 'mark' : ''}`}
|
||||||
style={
|
style={
|
||||||
!this.props.noIndent &&
|
!this.props.noIndent &&
|
||||||
this.props.node.comment.parent_id &&
|
this.props.node.comment.parent_id &&
|
||||||
|
|
2
ui/src/components/comment-nodes.tsx
vendored
2
ui/src/components/comment-nodes.tsx
vendored
|
@ -16,6 +16,7 @@ interface CommentNodesProps {
|
||||||
moderators?: Array<CommunityUser>;
|
moderators?: Array<CommunityUser>;
|
||||||
admins?: Array<UserView>;
|
admins?: Array<UserView>;
|
||||||
postCreatorId?: number;
|
postCreatorId?: number;
|
||||||
|
noBorder?: boolean;
|
||||||
noIndent?: boolean;
|
noIndent?: boolean;
|
||||||
viewOnly?: boolean;
|
viewOnly?: boolean;
|
||||||
locked?: boolean;
|
locked?: boolean;
|
||||||
|
@ -42,6 +43,7 @@ export class CommentNodes extends Component<
|
||||||
<CommentNode
|
<CommentNode
|
||||||
key={node.comment.id}
|
key={node.comment.id}
|
||||||
node={node}
|
node={node}
|
||||||
|
noBorder={this.props.noBorder}
|
||||||
noIndent={this.props.noIndent}
|
noIndent={this.props.noIndent}
|
||||||
viewOnly={this.props.viewOnly}
|
viewOnly={this.props.viewOnly}
|
||||||
locked={this.props.locked}
|
locked={this.props.locked}
|
||||||
|
|
9
ui/src/components/user-details.tsx
vendored
9
ui/src/components/user-details.tsx
vendored
|
@ -146,6 +146,7 @@ export class UserDetails extends Component<UserDetailsProps, UserDetailsState> {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{combined.map(i => (
|
{combined.map(i => (
|
||||||
|
<>
|
||||||
<div>
|
<div>
|
||||||
{i.type === 'posts' ? (
|
{i.type === 'posts' ? (
|
||||||
<PostListing
|
<PostListing
|
||||||
|
@ -159,12 +160,16 @@ export class UserDetails extends Component<UserDetailsProps, UserDetailsState> {
|
||||||
<CommentNodes
|
<CommentNodes
|
||||||
nodes={[{ comment: i.data as Comment }]}
|
nodes={[{ comment: i.data as Comment }]}
|
||||||
admins={this.props.admins}
|
admins={this.props.admins}
|
||||||
|
noBorder
|
||||||
noIndent
|
noIndent
|
||||||
|
showCommunity
|
||||||
showContext
|
showContext
|
||||||
enableDownvotes={this.props.enableDownvotes}
|
enableDownvotes={this.props.enableDownvotes}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
<hr class="my-3" />
|
||||||
|
</>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -177,6 +182,7 @@ export class UserDetails extends Component<UserDetailsProps, UserDetailsState> {
|
||||||
nodes={commentsToFlatNodes(this.state.comments)}
|
nodes={commentsToFlatNodes(this.state.comments)}
|
||||||
admins={this.props.admins}
|
admins={this.props.admins}
|
||||||
noIndent
|
noIndent
|
||||||
|
showCommunity
|
||||||
showContext
|
showContext
|
||||||
enableDownvotes={this.props.enableDownvotes}
|
enableDownvotes={this.props.enableDownvotes}
|
||||||
/>
|
/>
|
||||||
|
@ -188,6 +194,7 @@ export class UserDetails extends Component<UserDetailsProps, UserDetailsState> {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{this.state.posts.map(post => (
|
{this.state.posts.map(post => (
|
||||||
|
<>
|
||||||
<PostListing
|
<PostListing
|
||||||
post={post}
|
post={post}
|
||||||
admins={this.props.admins}
|
admins={this.props.admins}
|
||||||
|
@ -195,6 +202,8 @@ export class UserDetails extends Component<UserDetailsProps, UserDetailsState> {
|
||||||
enableDownvotes={this.props.enableDownvotes}
|
enableDownvotes={this.props.enableDownvotes}
|
||||||
enableNsfw={this.props.enableNsfw}
|
enableNsfw={this.props.enableNsfw}
|
||||||
/>
|
/>
|
||||||
|
<hr class="my-3" />
|
||||||
|
</>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue