-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancements #240, #233 Comments reply and other actions #253
Enhancements #240, #233 Comments reply and other actions #253
Conversation
…y and other actions This commit implements Podcastindex-org#240 and initial support for Podcastindex-org#233. A menu is added to comments that support initiating the following actions: - Reply to post - currently just navigates to the post in it is original system - Copy link to post - Open in original site - opens the post in its original system at another tab - Follow author of the post - currently just navigates to the profile of the author on its original system This commit is based on nathangathright/comment-thread-mockup@6b2f716 Related issues: - Podcastindex-org#240 - Podcastindex-org#233 Co-authored-by: Nathan Gathright <[email protected]>
This commit implements one next step to automate the remote interactions with comments and commenters. This uses the WebFinger protocol and API and also the OStatus Subscribe mechanism. There are very little guardrails, so some might need to be implemented later (e.g. verifying the input for the interactor account). Known issues: When the user is first prompted to enter their account, the opening of a new tab for interaction will be blocked as a pop-up. Related issues: - Podcastindex-org#233 - Podcastindex-org#240 Related links: - https://socialhub.activitypub.rocks/t/represent-endpoint-for-remote-interaction/480
Demoeither open the pop up, or interact again. |
@daveajones , ready for review, if you can live with the known issues. |
10-4. Will review! |
After rebasing on the current master (b7d2b76), make the changes mentioned below. Change Menu Background Add Change Show/Hide Comments to use button style Use the custom button used throughout the site in Change: {!this.state.showComments && <button disabled={this.state.loadingComments} onClick={() => this.onClickShowComments()}>Show comments</button>}
{this.state.showComments && <button onClick={() => this.onClickHideComments()}>Hide comments</button>} To: {!this.state.showComments && <Button disabled={this.state.loadingComments} onClick={() => this.onClickShowComments()}>Show comments</Button>}
{this.state.showComments && <Button onClick={() => this.onClickHideComments()}>Hide comments</Button>} |
References: - Podcastindex-org#253 (comment) Co-authored-by: Steven Crader <[email protected]>
Reference: - Podcastindex-org#253 (comment) Co-authored-by: Steven Crader <[email protected]>
@stevencrader I adopted the change to the menu background with a0bd277 and sent a separate pull request for the Thanks a lot for the suggestions! |
To solve this, you could look at the fix I added for the top bar menu on mobile. See web-ui/ui/src/components/TopBar/index.tsx Lines 57 to 66 in b7d2b76
Since your menu will be removed when navigating unlike the top bar, you could get away with a much shorter timeout value. I found a value of 10 works. |
References: - Podcastindex-org#253 (comment) Co-authored-by: Steven Crader <[email protected]>
Hello @stevencrader , thanks for tip with #253 (comment). |
This commit implements the feature of closing the comment menu when the user clicks outside of it. It is based on a similar implementation on the class/component TopBar. References: - Podcastindex-org#253 (comment) Co-authored-by: Steven Crader <[email protected]>
@daveajones I added some fixed to the known issues with the help of @stevencrader . |
I don't see any reason to keep the timeout if it isn't needed. |
This commit implements #240 and initial support for #233.
A menu is added to comments that support initiating the following actions:
This commit is based on
nathangathright/comment-thread-mockup@6b2f716
Known issues
When using the dark mode, the text in the menu does not appear (it is the same color as the background)- fixed with a0bd277 and Fix dark mode and other issues #251When you click outside of the menu, it does not disappear, it only disappear when you click a menu item or the menu button- fixed with 851afe1Open Questions
Which fediverse software (e.g. Mastodon, Pleroma) supports the remote interaction flow we are using here? At least Mastodon and Pleroma (actually Akkoma) were tested.
Related issues
Related links and references
Implementation Details
The remote interaction is implemented using the WebFinger protocol/API and also the OStatus Subscribe mechanism.
In summary, it gets to remote interact URL template using WebFinger with a call to
https://<follower instance host>/.well-known/webfinger?resource=acct:<follower account>
, and inspect the response for the link with rel equals tohttp://ostatus.org/schema/1.0/subscribe
, then builds the remote interact URL and opens it in a new tab.