mirror of
https://github.com/mattermost/focalboard.git
synced 2024-11-27 08:31:20 +02:00
Add author's userId to comment
This commit is contained in:
parent
b22d34057e
commit
dcba640427
@ -44,7 +44,7 @@ interface Board extends IBlock {
|
||||
duplicate(): MutableBoard
|
||||
}
|
||||
|
||||
class MutableBoard extends MutableBlock {
|
||||
class MutableBoard extends MutableBlock implements Board {
|
||||
get icon(): string {
|
||||
return this.fields.icon as string
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ interface Card extends IBlock {
|
||||
duplicate(): MutableCard
|
||||
}
|
||||
|
||||
class MutableCard extends MutableBlock {
|
||||
class MutableCard extends MutableBlock implements Card {
|
||||
get icon(): string {
|
||||
return this.fields.icon as string
|
||||
}
|
||||
|
@ -4,12 +4,23 @@ import {IBlock} from '../blocks/block'
|
||||
|
||||
import {MutableBlock} from './block'
|
||||
|
||||
type CommentBlock = IBlock
|
||||
interface CommentBlock extends IBlock {
|
||||
readonly userId: string
|
||||
}
|
||||
|
||||
class MutableCommentBlock extends MutableBlock implements CommentBlock {
|
||||
get userId(): string {
|
||||
return this.fields.userId as string
|
||||
}
|
||||
set userId(value: string) {
|
||||
this.fields.userId = value
|
||||
}
|
||||
|
||||
class MutableCommentBlock extends MutableBlock {
|
||||
constructor(block: any = {}) {
|
||||
super(block)
|
||||
this.type = 'comment'
|
||||
|
||||
this.userId = block.fields?.userId || ''
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -4,7 +4,7 @@ import {IContentBlock, MutableContentBlock} from './contentBlock'
|
||||
|
||||
type DividerBlock = IContentBlock
|
||||
|
||||
class MutableDividerBlock extends MutableContentBlock {
|
||||
class MutableDividerBlock extends MutableContentBlock implements DividerBlock {
|
||||
constructor(block: any = {}) {
|
||||
super(block)
|
||||
this.type = 'divider'
|
||||
|
@ -6,7 +6,7 @@ interface ImageBlock extends IContentBlock {
|
||||
readonly url: string
|
||||
}
|
||||
|
||||
class MutableImageBlock extends MutableContentBlock implements IContentBlock {
|
||||
class MutableImageBlock extends MutableContentBlock implements ImageBlock {
|
||||
get url(): string {
|
||||
return this.fields.url as string
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ import {IContentBlock, MutableContentBlock} from './contentBlock'
|
||||
|
||||
type TextBlock = IContentBlock
|
||||
|
||||
class MutableTextBlock extends MutableContentBlock {
|
||||
class MutableTextBlock extends MutableContentBlock implements TextBlock {
|
||||
constructor(block: any = {}) {
|
||||
super(block)
|
||||
this.type = 'text'
|
||||
|
@ -1,30 +1,29 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
import React from 'react'
|
||||
import {FormattedMessage, IntlShape, injectIntl} from 'react-intl'
|
||||
import {FormattedMessage, injectIntl, IntlShape} from 'react-intl'
|
||||
|
||||
import {BlockIcons} from '../blockIcons'
|
||||
import {MutableTextBlock} from '../blocks/textBlock'
|
||||
import {BoardTree} from '../viewModel/boardTree'
|
||||
import {PropertyType} from '../blocks/board'
|
||||
import {CardTree} from '../viewModel/cardTree'
|
||||
import {MutableTextBlock} from '../blocks/textBlock'
|
||||
import mutator from '../mutator'
|
||||
import {UserContext} from '../user'
|
||||
import {Utils} from '../utils'
|
||||
|
||||
import MenuWrapper from '../widgets/menuWrapper'
|
||||
import Menu from '../widgets/menu'
|
||||
import PropertyMenu from '../widgets/propertyMenu'
|
||||
import Editable from '../widgets/editable'
|
||||
import {BoardTree} from '../viewModel/boardTree'
|
||||
import {CardTree} from '../viewModel/cardTree'
|
||||
import Button from '../widgets/buttons/button'
|
||||
import Editable from '../widgets/editable'
|
||||
import EmojiIcon from '../widgets/icons/emoji'
|
||||
import Menu from '../widgets/menu'
|
||||
import MenuWrapper from '../widgets/menuWrapper'
|
||||
import PropertyMenu from '../widgets/propertyMenu'
|
||||
|
||||
import {MarkdownEditor} from './markdownEditor'
|
||||
import ContentBlock from './contentBlock'
|
||||
import CommentsList from './commentsList'
|
||||
import BlockIconSelector from './blockIconSelector'
|
||||
import PropertyValueElement from './propertyValueElement'
|
||||
|
||||
import './cardDetail.scss'
|
||||
import CommentsList from './commentsList'
|
||||
import ContentBlock from './contentBlock'
|
||||
import {MarkdownEditor} from './markdownEditor'
|
||||
import PropertyValueElement from './propertyValueElement'
|
||||
|
||||
type Props = {
|
||||
boardTree: BoardTree
|
||||
@ -196,11 +195,16 @@ class CardDetail extends React.Component<Props, State> {
|
||||
{!this.props.readonly &&
|
||||
<>
|
||||
<hr/>
|
||||
<CommentsList
|
||||
comments={comments}
|
||||
rootId={card.rootId}
|
||||
cardId={card.id}
|
||||
/>
|
||||
<UserContext.Consumer>
|
||||
{(user) => (user &&
|
||||
<CommentsList
|
||||
comments={comments}
|
||||
userId={user.id}
|
||||
rootId={card.rootId}
|
||||
cardId={card.id}
|
||||
/>
|
||||
)}
|
||||
</UserContext.Consumer>
|
||||
<hr/>
|
||||
</>
|
||||
}
|
||||
|
@ -3,8 +3,7 @@
|
||||
import React from 'react'
|
||||
import {FormattedMessage, injectIntl, IntlShape} from 'react-intl'
|
||||
|
||||
import {IBlock} from '../blocks/block'
|
||||
import {MutableCommentBlock} from '../blocks/commentBlock'
|
||||
import {CommentBlock, MutableCommentBlock} from '../blocks/commentBlock'
|
||||
import mutator from '../mutator'
|
||||
import {Utils} from '../utils'
|
||||
import Button from '../widgets/buttons/button'
|
||||
@ -14,7 +13,8 @@ import './commentsList.scss'
|
||||
import {MarkdownEditor} from './markdownEditor'
|
||||
|
||||
type Props = {
|
||||
comments: readonly IBlock[]
|
||||
comments: readonly CommentBlock[]
|
||||
userId: string
|
||||
rootId: string
|
||||
cardId: string
|
||||
intl: IntlShape
|
||||
@ -39,12 +39,16 @@ class CommentsList extends React.Component<Props, State> {
|
||||
}
|
||||
|
||||
private sendComment = () => {
|
||||
const {rootId, cardId} = this.props
|
||||
const {userId, rootId, cardId} = this.props
|
||||
|
||||
Utils.assertValue(cardId)
|
||||
|
||||
const block = new MutableCommentBlock({rootId, parentId: cardId, title: this.state.newComment})
|
||||
mutator.insertBlock(block, 'add comment')
|
||||
const comment = new MutableCommentBlock()
|
||||
comment.parentId = cardId
|
||||
comment.rootId = rootId
|
||||
comment.userId = userId
|
||||
comment.title = this.state.newComment
|
||||
mutator.insertBlock(comment, 'add comment')
|
||||
this.setState({newComment: ''})
|
||||
}
|
||||
|
||||
@ -52,7 +56,6 @@ class CommentsList extends React.Component<Props, State> {
|
||||
const {comments, intl} = this.props
|
||||
|
||||
// TODO: Replace this placeholder
|
||||
const username = 'John Smith'
|
||||
const userImageUrl = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" style="fill: rgb(192, 192, 192);"><rect width="100" height="100" /></svg>'
|
||||
|
||||
return (
|
||||
@ -62,7 +65,9 @@ class CommentsList extends React.Component<Props, State> {
|
||||
key={comment.id}
|
||||
comment={comment}
|
||||
userImageUrl={userImageUrl}
|
||||
username={username}
|
||||
|
||||
// TODO: Look up user name from userId
|
||||
username={comment.userId}
|
||||
/>
|
||||
))}
|
||||
|
||||
|
@ -2,20 +2,21 @@
|
||||
// See LICENSE.txt for license information.
|
||||
import {IBlock} from '../blocks/block'
|
||||
import {Card, MutableCard} from '../blocks/card'
|
||||
import {CommentBlock} from '../blocks/commentBlock'
|
||||
import {IContentBlock} from '../blocks/contentBlock'
|
||||
import octoClient from '../octoClient'
|
||||
import {OctoUtils} from '../octoUtils'
|
||||
|
||||
interface CardTree {
|
||||
readonly card: Card
|
||||
readonly comments: readonly IBlock[]
|
||||
readonly comments: readonly CommentBlock[]
|
||||
readonly contents: readonly IContentBlock[]
|
||||
readonly allBlocks: readonly IBlock[]
|
||||
}
|
||||
|
||||
class MutableCardTree implements CardTree {
|
||||
card: MutableCard
|
||||
comments: IBlock[] = []
|
||||
comments: CommentBlock[] = []
|
||||
contents: IContentBlock[] = []
|
||||
|
||||
get allBlocks(): IBlock[] {
|
||||
@ -53,7 +54,7 @@ class MutableCardTree implements CardTree {
|
||||
const cardTree = new MutableCardTree(card)
|
||||
cardTree.comments = blocks.
|
||||
filter((block) => block.type === 'comment').
|
||||
sort((a, b) => a.createAt - b.createAt)
|
||||
sort((a, b) => a.createAt - b.createAt) as CommentBlock[]
|
||||
|
||||
const contentBlocks = blocks.filter((block) => block.type === 'text' || block.type === 'image' || block.type === 'divider') as IContentBlock[]
|
||||
cardTree.contents = OctoUtils.getBlockOrder(card.contentOrder, contentBlocks)
|
||||
|
@ -13,7 +13,7 @@ interface WorkspaceTree {
|
||||
readonly allBlocks: readonly IBlock[]
|
||||
}
|
||||
|
||||
class MutableWorkspaceTree {
|
||||
class MutableWorkspaceTree implements WorkspaceTree {
|
||||
boards: Board[] = []
|
||||
boardTemplates: Board[] = []
|
||||
views: BoardView[] = []
|
||||
|
Loading…
Reference in New Issue
Block a user