35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
export function createImageBadge(noteId, { x, y }, classNames = []) {
|
|
const buttonEl = document.createElement('button');
|
|
const classList = classNames.concat(['js-image-badge']);
|
|
classList.forEach(className => buttonEl.classList.add(className));
|
|
buttonEl.setAttribute('type', 'button');
|
|
buttonEl.setAttribute('disabled', true);
|
|
buttonEl.dataset.noteId = noteId;
|
|
buttonEl.style.left = `${x}px`;
|
|
buttonEl.style.top = `${y}px`;
|
|
|
|
return buttonEl;
|
|
}
|
|
|
|
export function addImageBadge(containerEl, { coordinate, badgeText, noteId }) {
|
|
const buttonEl = createImageBadge(noteId, coordinate, ['badge', 'badge-pill']);
|
|
buttonEl.innerText = badgeText;
|
|
|
|
containerEl.appendChild(buttonEl);
|
|
}
|
|
|
|
export function addImageCommentBadge(containerEl, { coordinate, noteId }) {
|
|
const buttonEl = createImageBadge(noteId, coordinate, ['image-comment-badge']);
|
|
buttonEl.innerHTML = gl.utils.spriteIcon('image-comment-dark');
|
|
|
|
containerEl.appendChild(buttonEl);
|
|
}
|
|
|
|
export function addAvatarBadge(el, event) {
|
|
const { noteId, badgeNumber } = event.detail;
|
|
|
|
// Add badge to new comment
|
|
const avatarBadgeEl = el.querySelector(`#${noteId} .badge`);
|
|
avatarBadgeEl.innerText = badgeNumber;
|
|
avatarBadgeEl.classList.remove('hidden');
|
|
}
|