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

Rewrite and restyle reaction selector and enable no-sizzle eslint rule #30453

Merged
merged 20 commits into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
4 changes: 2 additions & 2 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ rules:
jquery/no-serialize: [2]
jquery/no-show: [2]
jquery/no-size: [2]
jquery/no-sizzle: [0]
jquery/no-sizzle: [2]
jquery/no-slide: [0]
jquery/no-submit: [0]
jquery/no-text: [0]
Expand Down Expand Up @@ -470,7 +470,7 @@ rules:
no-jquery/no-selector-prop: [2]
no-jquery/no-serialize: [2]
no-jquery/no-size: [2]
no-jquery/no-sizzle: [0]
no-jquery/no-sizzle: [2]
no-jquery/no-slide: [2]
no-jquery/no-sub: [2]
no-jquery/no-support: [2]
Expand Down
63 changes: 35 additions & 28 deletions web_src/js/features/comp/ReactionSelector.js
Original file line number Diff line number Diff line change
@@ -1,38 +1,45 @@
import $ from 'jquery';
import {POST} from '../../modules/fetch.js';

export function initCompReactionSelector($parent) {
$parent.find(`.select-reaction .item.reaction, .comment-reaction-button`).on('click', async function (e) {
e.preventDefault();
export function initCompReactionSelector() {
const containers = document.querySelectorAll('.comment-container, .code-comment');
if (!containers.length) return;
silverwind marked this conversation as resolved.
Show resolved Hide resolved

if (this.classList.contains('disabled')) return;
for (const container of containers) {
container.addEventListener('click', async (e) => {
const item = e.target.matches('.item.reaction') ? e.target : e.target.closest('.item.reaction');
const button = e.target.matches('.comment-reaction-button') ? e.target : e.target.closest('.comment-reaction-button');
if (!item && !button) return;
e.preventDefault();

const actionUrl = this.closest('[data-action-url]')?.getAttribute('data-action-url');
const reactionContent = this.getAttribute('data-reaction-content');
const hasReacted = this.closest('.ui.segment.reactions')?.querySelector(`a[data-reaction-content="${reactionContent}"]`)?.getAttribute('data-has-reacted') === 'true';
const target = item || button;
if (target.classList.contains('disabled')) return;

const res = await POST(`${actionUrl}/${hasReacted ? 'unreact' : 'react'}`, {
data: new URLSearchParams({content: reactionContent}),
});
const actionUrl = target.closest('[data-action-url]')?.getAttribute('data-action-url');
silverwind marked this conversation as resolved.
Show resolved Hide resolved
const reactionContent = target.getAttribute('data-reaction-content');
const hasReacted = target.closest('.segment.reactions')?.querySelector(`a[data-reaction-content="${CSS.escape(reactionContent)}"]`)?.getAttribute('data-has-reacted') === 'true';
const content = target.closest('.content');

const data = await res.json();
if (data && (data.html || data.empty)) {
const $content = $(this).closest('.content');
let $react = $content.find('.segment.reactions');
if ((!data.empty || data.html === '') && $react.length > 0) {
$react.remove();
}
if (!data.empty) {
const $attachments = $content.find('.segment.bottom:first');
$react = $(data.html);
if ($attachments.length > 0) {
$react.insertBefore($attachments);
} else {
$react.appendTo($content);
const res = await POST(`${actionUrl}/${hasReacted ? 'unreact' : 'react'}`, {
data: new URLSearchParams({content: reactionContent}),
});

const data = await res.json();
if (data && (data.html || data.empty)) {
const reactions = content.querySelector('.segment.reactions');
if ((!data.empty || data.html === '') && reactions) {
reactions.remove();
}
if (!data.empty) {
const attachments = content.querySelector('.segment.bottom');
if (attachments) {
attachments.insertAdjacentHTML('beforebegin', data.html);
} else {
content.insertAdjacentHTML('beforeend', data.html);
}
$(content.querySelectorAll('.segment.reactions .dropdown')).dropdown();
}
$react.find('.dropdown').dropdown();
initCompReactionSelector($react);
}
}
});
});
}
}
2 changes: 1 addition & 1 deletion web_src/js/features/repo-diff.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function initRepoDiffConversationForm() {
el.classList.add('tw-invisible');
}
$newConversationHolder.find('.dropdown').dropdown();
initCompReactionSelector($newConversationHolder);
initCompReactionSelector();
silverwind marked this conversation as resolved.
Show resolved Hide resolved
} catch (error) {
console.error('Error:', error);
showErrorToast(i18n.network_error);
Expand Down
2 changes: 1 addition & 1 deletion web_src/js/features/repo-legacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export function initRepository() {
initRepoIssueDependencyDelete();
initRepoIssueCodeCommentCancel();
initRepoPullRequestUpdate();
initCompReactionSelector($(document));
initCompReactionSelector();

initRepoPullRequestMergeForm();
initRepoPullRequestCommitStatus();
Expand Down