-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Merge discussions card work into branch * Discussions panel view components * Discussion post and reply mutations * Basic discussion form * Fix line height within side panel * Display discussion and replies * Discussions list view * Threaded replies styling * Show/hide replies * DiscussionsList component * Add DiscussionsList to Discussion view * Add DiscussionsList to discussion board view * Create discussion and reply mutations * Discussion board list filtering * ViewDiscussions unit tests * Discussion component unit tests * Success and error messages * Feature branch merge conflict fix * MentionTextArea in DiscussionForm (#2898) * MentionTextArea in DiscussionForm * Mention area height-auto * Text * Rhf-like signature * .usa-textarea + overrides * Cleanup * MentionTextArea React.forwardRef * Cleanup * Fix render error when review has no discussions * Hide replies if array is empty --------- Co-authored-by: adamodd <97050498+adamodd@users.noreply.github.com>
- Loading branch information
1 parent
95efd7c
commit 820a81d
Showing
26 changed files
with
1,214 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/gql/apolloGQL/grbReview/CreateSystemIntakeGRBDiscussionPost.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export default gql(/* GraphQL */ ` | ||
mutation CreateSystemIntakeGRBDiscussionPost( | ||
$input: createSystemIntakeGRBDiscussionPostInput! | ||
) { | ||
createSystemIntakeGRBDiscussionPost(input: $input) { | ||
id | ||
} | ||
} | ||
`); |
11 changes: 11 additions & 0 deletions
11
src/gql/apolloGQL/grbReview/CreateSystemIntakeGRBDiscussionReply.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export default gql(/* GraphQL */ ` | ||
mutation CreateSystemIntakeGRBDiscussionReply( | ||
$input: createSystemIntakeGRBDiscussionReplyInput! | ||
) { | ||
createSystemIntakeGRBDiscussionReply(input: $input) { | ||
id | ||
} | ||
} | ||
`); |
Oops, something went wrong.