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

feat: add labels to preview when necessary #147

Merged
merged 7 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
36 changes: 29 additions & 7 deletions src/home/rendering/render-github-issues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ import { organizationImageCache } from "../fetch-github/fetch-issues-full";
import { GitHubIssue } from "../github-types";
import { taskManager } from "../home";
import { renderErrorInModal } from "./display-popup-modal";
import { closeModal, modal, modalBodyInner, titleAnchor, titleHeader } from "./render-preview-modal";
import { closeModal, modal, modalBodyInner, bottomBar, titleAnchor, titleHeader, bottomBarClearLabels } from "./render-preview-modal";
import { setupKeyboardNavigation } from "./setup-keyboard-navigation";
import { isProposalOnlyViewer } from "../fetch-github/fetch-and-display-previews";
import { waitForElement } from "./utils";

export function renderGitHubIssues(tasks: GitHubIssue[], skipAnimation: boolean) {
const container = taskManager.getContainer();
Expand Down Expand Up @@ -140,14 +141,37 @@ function parseAndGenerateLabels(task: GitHubIssue) {

// Function to update and show the preview
function previewIssue(gitHubIssue: GitHubIssue) {
viewIssueDetails(gitHubIssue);
void viewIssueDetails(gitHubIssue);
}

export function viewIssueDetails(full: GitHubIssue) {
// Loads the issue preview modal with the issue details
export async function viewIssueDetails(full: GitHubIssue) {
// Update the title and body for the new issue
titleHeader.textContent = full.title;
titleAnchor.href = full.html_url;
if (!full.body) return;

// Remove any existing cloned labels from the bottom bar
bottomBarClearLabels();

// Wait for the issue element to exist, useful when loading issue from URL
const issueElement = await waitForElement(`div[data-issue-id="${full.id}"]`);

const labelsDiv = issueElement.querySelector(".labels");
if (labelsDiv) {
// Clone the labels div and remove the img child if it exists
const clonedLabels = labelsDiv.cloneNode(true) as HTMLElement;
const imgElement = clonedLabels.querySelector("img");
if (imgElement) clonedLabels.removeChild(imgElement);

// Add an extra class and set padding
clonedLabels.classList.add("cloned-labels");

// Prepend the cloned labels to the modal body
bottomBar.prepend(clonedLabels);
}

// Set the issue body content using `marked`
modalBodyInner.innerHTML = marked(full.body) as string;

// Show the preview
Expand Down Expand Up @@ -184,18 +208,16 @@ export function loadIssueFromUrl() {

// If ID doesn't exist, don't load issue
const issue: GitHubIssue = taskManager.getGitHubIssueById(Number(issueID)) as GitHubIssue;
console.log(issue);
console.log(issueID);

if (!issue) {
console.log("deleting");
const newURL = new URL(window.location.href);
newURL.searchParams.delete("issue");
newURL.searchParams.delete("proposal");
window.history.pushState({}, "", newURL.toString());
return;
}

viewIssueDetails(issue);
void viewIssueDetails(issue);
}

export function applyAvatarsToIssues() {
Expand Down
9 changes: 9 additions & 0 deletions src/home/rendering/render-preview-modal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export const modal = document.getElementById("preview-modal") as HTMLDivElement;
export const titleAnchor = document.getElementById("preview-title-anchor") as HTMLAnchorElement;
export const titleHeader = document.getElementById("preview-title") as HTMLHeadingElement;
export const modalBodyInner = document.getElementById("preview-body-inner") as HTMLDivElement;
export const bottomBar = document.getElementById("bottom-bar") as HTMLDivElement;
export const issuesContainer = document.getElementById("issues-container");

const closeButton = modal.querySelector(".close-preview") as HTMLButtonElement;
Expand All @@ -17,9 +18,17 @@ export function closeModal() {
modal.classList.remove("active");
document.body.classList.remove("preview-active");
issuesContainer?.classList.remove("keyboard-selection");
bottomBarClearLabels();

const newURL = new URL(window.location.href);
newURL.searchParams.delete("issue");
newURL.searchParams.delete("proposal");
window.history.replaceState({}, "", newURL.toString());
}

export function bottomBarClearLabels() {
const existingClonedLabels = bottomBar.querySelector(".labels.cloned-labels");
if (existingClonedLabels) {
bottomBar.removeChild(existingClonedLabels);
}
}
2 changes: 1 addition & 1 deletion src/home/rendering/setup-keyboard-navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function keyDownHandler() {
if (issueId) {
const gitHubIssue = taskManager.getGitHubIssueById(parseInt(issueId, 10));
if (gitHubIssue) {
viewIssueDetails(gitHubIssue);
void viewIssueDetails(gitHubIssue);
}
}
}
Expand Down
22 changes: 22 additions & 0 deletions src/home/rendering/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// Utility function to wait for an element to appear
export function waitForElement(selector: string): Promise<Element> {
return new Promise((resolve) => {
const element = document.querySelector(selector);
if (element) {
resolve(element);
return;
}

const observer = new MutationObserver((mutations) => {
mutations.forEach(() => {
const element = document.querySelector(selector);
if (element) {
resolve(element);
observer.disconnect();
}
});
});

observer.observe(document.body, { childList: true, subtree: true });
});
}
30 changes: 21 additions & 9 deletions static/style/inverted-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,22 @@
justify-content: space-between;
}
#bottom-bar {
align-items: center;
justify-content: center;
display: flex;
height: 72px;
width: 100%;
overflow: hidden;
}
.preview-active #bottom-bar {
align-items: center;
}
.labels.cloned-labels {
display: none;
}
body.preview-active .labels.cloned-labels {
flex-grow: 1;
padding: 0px 6px;
display: flex;
width: 0%;
}
#filters-bottom {
flex-direction: column;
Expand Down Expand Up @@ -840,23 +853,22 @@
border: unset;
}
div#mobile-modal-scrub {
position: fixed;
display: none;
}
div#mobile-modal-scrub > button {
margin-right: 6px;
margin-right: 2px;
font-size: 24px;
padding: 0 48px;
padding: 0 27px;
border: unset;
}
#bottom-bar {
overflow: visible;
}
.preview-active #filters-bottom {
display: none;
}
.preview-active div#mobile-modal-scrub {
display: unset;
margin-left: auto;
display: flex;
padding-right: 6px;
align-items: right;
}
.preview {
position: fixed;
Expand Down
30 changes: 21 additions & 9 deletions static/style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,22 @@
justify-content: space-between;
}
#bottom-bar {
align-items: center;
justify-content: center;
display: flex;
height: 72px;
width: 100%;
overflow: hidden;
}
.preview-active #bottom-bar {
align-items: center;
}
.labels.cloned-labels {
display: none;
}
body.preview-active .labels.cloned-labels {
flex-grow: 1;
padding: 0px 6px;
display: flex;
width: 0%;
}
#filters-bottom {
flex-direction: column;
Expand Down Expand Up @@ -840,23 +853,22 @@
border: unset;
}
div#mobile-modal-scrub {
position: fixed;
display: none;
}
div#mobile-modal-scrub > button {
margin-right: 6px;
margin-right: 2px;
font-size: 24px;
padding: 0 48px;
padding: 0 27px;
border: unset;
}
#bottom-bar {
overflow: visible;
}
.preview-active #filters-bottom {
display: none;
}
.preview-active div#mobile-modal-scrub {
display: unset;
margin-left: auto;
display: flex;
padding-right: 6px;
align-items: right;
}
.preview {
position: fixed;
Expand Down
Loading