Skip to content
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

537 react to comments #1255

Merged
merged 29 commits into from
Apr 20, 2021
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b1214d1
feat: dropdown ready for adding emoji's into it
squigglybob Mar 26, 2021
a9da12b
feat: add filterable emojis to reaction dropdown
squigglybob Mar 26, 2021
fc98fbb
feat: added unsecured comment reaction api endpoint
squigglybob Mar 26, 2021
22dddd3
refactor: move default reaction options to config-site-defaults
squigglybob Apr 12, 2021
66d9503
feat: save reaction meta with lowercase key and user id as value
squigglybob Apr 12, 2021
45a7a4d
feat: get comment reactions and usernames and deliver to front end
squigglybob Apr 12, 2021
435bf24
feat: move add reaction button into comment-control section
squigglybob Apr 12, 2021
27999fb
feat: display reactions on front end
squigglybob Apr 14, 2021
c599892
fix: styling issues with reaction dropdown
squigglybob Apr 14, 2021
a223046
feat: add translateable title with users who have reacted
squigglybob Apr 14, 2021
a8ac262
fix: post reaction with ajax request
squigglybob Apr 14, 2021
15eb46e
feat: move comment reactions inline with reaction button
squigglybob Apr 14, 2021
c0114e0
fix: multiple user title now renders correctly
squigglybob Apr 14, 2021
d8cd891
feat: add styling for reactions which you have reacted with
squigglybob Apr 14, 2021
915b5af
feat: add ability to click on current reactions to toggle reactions
squigglybob Apr 14, 2021
d6e789a
fix: tidy up styling of emojis
squigglybob Apr 14, 2021
36f790e
Merge remote-tracking branch 'upstream/master' into 537-react-to-comm…
squigglybob Apr 14, 2021
f37a949
security: add permission check whether user can update post
squigglybob Apr 14, 2021
a6de066
fix: add flex-wrap to wrap reactions and edit/delete on smaller screens
squigglybob Apr 15, 2021
cebb89c
feat: add option to use UTF-8 emoji's instead of an image/gif path
squigglybob Apr 15, 2021
684694f
fix: add default object for comment reactions, fixes cannot convert u…
squigglybob Apr 15, 2021
df9323a
fix: change absolute position of reaction dropdown to bottom
squigglybob Apr 15, 2021
57f9b2a
Conform to endpoint pattern set by #1287
corsacca Apr 15, 2021
02584ce
fix: change translation keys to be standardised like %1
squigglybob Apr 15, 2021
5ce8f92
fix: add a height to reaction pills
squigglybob Apr 15, 2021
7d5338c
Merge branch '537-react-to-comments' of github.nathinabob:squigglybob…
squigglybob Apr 15, 2021
8b650ef
remove old translation context
corsacca Apr 16, 2021
6d84e28
fix: escape translateable strings in emoji images
squigglybob Apr 19, 2021
dc3cef4
Merge branch '537-react-to-comments' of github.nathinabob:squigglybob…
squigglybob Apr 19, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dt-posts/dt-posts-endpoints.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ public function add_api_routes() {
"post_type" => $arg_schemas["post_type"],
"id" => $arg_schemas["id"],
"comment_id" => $arg_schemas["comment_id"],
]
],
"permission_callback" => '__return_true',
]
]
);
Expand Down