Aaron Pham
2024-02-23 96c7076fb5333882dd354c5f156232217d4fab13
feat(popover): add support for PDF (#913)

* feat(popover): add support for PDF

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>

* chore: split pdf by ';'

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>

* fix: remove unnecessary check

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>

---------

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
2 files modified
42 ■■■■ changed files
quartz/components/scripts/popover.inline.ts 17 ●●●● patch | view | raw | blame | history
quartz/components/styles/popover.scss 25 ●●●● patch | view | raw | blame | history
quartz/components/scripts/popover.inline.ts
@@ -47,8 +47,8 @@
  }
  if (!response) return
  const contentType = response.headers.get("Content-Type")
  const contentTypeCategory = contentType?.split("/")[0] ?? "text"
  const [contentType] = response.headers.get("Content-Type")!.split(";")
  const [contentTypeCategory, typeInfo] = contentType.split("/")
  const popoverElement = document.createElement("div")
  popoverElement.classList.add("popover")
@@ -56,7 +56,7 @@
  popoverInner.classList.add("popover-inner")
  popoverElement.appendChild(popoverInner)
  popoverInner.dataset.contentType = contentTypeCategory
  popoverInner.dataset.contentType = contentType ?? undefined
  switch (contentTypeCategory) {
    case "image":
@@ -69,6 +69,17 @@
      popoverInner.appendChild(img)
      break
    case "application":
      switch (typeInfo) {
        case "pdf":
          const pdf = document.createElement("iframe")
          pdf.src = targetUrl.toString()
          popoverInner.appendChild(pdf)
          break
        default:
          break
      }
      break
    default:
      const contents = await response.text()
      const html = p.parseFromString(contents, "text/html")
quartz/components/styles/popover.scss
@@ -38,14 +38,25 @@
    white-space: normal;
  }
  & > .popover-inner[data-content-type="image"] {
    padding: 0;
    max-height: 100%;
  & > .popover-inner[data-content-type] {
    &[data-content-type*="pdf"],
    &[data-content-type*="image"] {
      padding: 0;
      max-height: 100%;
    }
    img {
      margin: 0;
      border-radius: 0;
      display: block;
    &[data-content-type*="image"] {
      img {
        margin: 0;
        border-radius: 0;
        display: block;
      }
    }
    &[data-content-type*="pdf"] {
      iframe {
        width: 100%;
      }
    }
  }