{ "version": 3, "sources": ["../../card/default_file_card.tsx", "../../misc/print.tsx", "../../../lib.shared.board_to_html/board_to_react.tsx"], "sourcesContent": ["import * as React from \"react\"\nimport {observer} from \"mobx-react\"\nimport {i18n} from \"@cling/lib.web.i18n\"\nimport {\n Blob,\n BlobUID,\n Card,\n EngagementType,\n FileCard as FileCardModel,\n GetDownloadBlobURLRequest,\n GetDownloadBlobURLResponse,\n is_video,\n may_have_thumbnail,\n MediaTranscodeStatus,\n} from \"@cling/lib.shared.model\"\nimport {download_url} from \"../misc/download\"\nimport {ui_actions, ui_state} from \"../state/index\"\nimport {register_auth_listener} from \"@cling/lib.web.auth\"\nimport {cancel_event, trap_browser_back} from \"@cling/lib.web.utils\"\nimport {not_null} from \"@cling/lib.shared.utils\"\nimport {CondensedThumbnail, CondensedThumbnailNoImage} from \"./condensed_thumbnail\"\nimport {Lightbox} from \"./lightbox\"\nimport {decorate_emojis} from \"@cling/lib.web.utils/decorate_emojis\"\nimport {video_player_state, is_playable_media} from \"./video_player\"\nimport {title_tag} from \"./utils\"\nimport {report_user_engagement} from \"@cling/lib.web.analytics\"\nimport {media_info_resource} from \"@cling/lib.web.resources\"\nimport {simple_tooltip_event_handlers} from \"@cling/lib.web.mdc/simple_tooltip\"\nimport {call_function} from \"@cling/lib.shared.faas\"\nimport {report_error} from \"@cling/lib.shared.debug\"\nimport {LoadingIndicator} from \"@cling/lib.web.lazy_load/loading_indicator\"\nimport ReactDOM from \"react-dom\"\nimport {IconButton, Snackbar} from \"@cling/lib.web.mdc\"\nimport {classNames} from \"@cling/lib.web.utils\"\n\nconst PDF_VIEWER_VERSION = \"2.14.305_29\"\n\nexport const DefaultFileCard = observer(({card}: {card: FileCardModel}) => {\n const [pdf_viewer_shown, set_pdf_viewer_shown] = React.useState(false)\n const pdf_preview = React.useCallback(\n (e: React.MouseEvent) => {\n if (card.file.blob.mime_type === \"application/pdf\") {\n set_pdf_viewer_shown(true)\n e.preventDefault()\n e.stopPropagation()\n return true\n }\n return false\n },\n [card],\n )\n const on_download_file = React.useCallback(\n (e: React.MouseEvent) => {\n if (pdf_preview(e)) {\n return\n }\n report_user_engagement(EngagementType.download_file)\n },\n [pdf_preview],\n )\n const open_lightbox_or_play = React.useCallback(\n (e: React.MouseEvent<HTMLDivElement>) => {\n e.stopPropagation()\n e.preventDefault()\n if (pdf_preview(e)) {\n return\n }\n if (is_playable_media(card)) {\n video_player_state.play({\n blob_uid: card.file!.blob.uid,\n mime_type: card.file!.blob.mime_type,\n file_name: card.file!.file_name,\n })\n return\n }\n ui_actions.open_lightbox(card)\n },\n [card, pdf_preview],\n )\n const lightbox_shown = ui_state.lightbox_shown(card)\n const {file_name, title, blob} = card.file\n const matches = ui_state.search_state.search_matches(card)\n const file_name_html = ui_state.search_state.highlight_match(card, \"file_name\", matches)\n const title_html = ui_state.search_state.highlight_match(card, \"title\", matches)\n const playable_media = is_playable_media(card)\n return (\n <>\n <DefaultFileCardPresentation\n onClick={on_download_file}\n file_name={file_name}\n file_name_html={file_name_html}\n file_size={blob.size}\n title={title}\n title_html={title_html}\n blob={blob}\n card={card}\n icon_on_click={open_lightbox_or_play}\n playable_media={playable_media}\n />\n {lightbox_shown && <Lightbox initial_card={card} />}\n {pdf_viewer_shown && (\n <PDFViewer card={card} on_close={() => set_pdf_viewer_shown(false)} />\n )}\n </>\n )\n})\n\nexport const DefaultFileCardPresentation = observer(\n ({\n blob,\n card,\n file_name,\n file_name_html,\n file_size,\n title,\n title_html,\n icon_on_click,\n playable_media,\n onClick,\n }: {\n onClick?: React.MouseEventHandler<any>\n file_name: string\n file_name_html?: string\n file_size: number\n title?: string\n title_html?: string\n playable_media?: boolean\n icon_on_click?: React.MouseEventHandler<HTMLElement>\n } & (\n | {\n blob: Blob\n card: Card\n }\n | {\n blob?: never\n card?: never\n }\n )) => {\n const file_name_parts = (file_name || \"\").split(\".\")\n // TODO: (2017-05) (SEC) Server-side should check that mime-type and file-extension match.\n // If not then file-extension should be set to the appropriate one.\n let icon = file_name_parts[file_name_parts.length - 1]\n if (file_name_parts.length < 2 || icon.length > 4) {\n icon = \"bin\"\n }\n const headline_html =\n title_html || file_name_html\n ? {\n dangerouslySetInnerHTML: {\n __html: decorate_emojis(not_null(title_html || file_name_html)),\n },\n }\n : {children: decorate_emojis(title || file_name)}\n let additional_filename\n if (title || title_html) {\n additional_filename = file_name_html\n ? {dangerouslySetInnerHTML: {__html: file_name_html}}\n : {children: file_name}\n }\n let thumbnail_blob_uid: BlobUID | undefined\n if (card?.file?.preview_image_blob) {\n thumbnail_blob_uid = card.file.preview_image_blob.uid\n } else if (\n !!blob &&\n may_have_thumbnail(blob) &&\n (!is_video(blob) ||\n media_info_resource.read(blob.uid)?.transcode_status !== MediaTranscodeStatus.error)\n ) {\n thumbnail_blob_uid = blob.uid\n }\n const HeadlineTag = card ? title_tag(card) : \"div\"\n return (\n <DefaultFileCardAnchor\n blob_uid={blob?.uid}\n file_name={file_name}\n className=\"card-details file-card card-with-icon\"\n classNameFallback=\"card-details file-card card-with-icon\"\n onClick={onClick}\n onClickFallback={cancel_event}\n >\n <div className=\"card-with-icon__icon-outline\">\n {!!thumbnail_blob_uid && (\n <CondensedThumbnail\n className=\"cursor--zoom-in\"\n playable_media={playable_media}\n blob_uid_or_style={thumbnail_blob_uid}\n onClick={icon_on_click}\n />\n )}\n {!thumbnail_blob_uid && playable_media && (\n <CondensedThumbnailNoImage\n className=\"cursor--zoom-in\"\n playable_media\n onClick={icon_on_click}\n />\n )}\n {!(thumbnail_blob_uid || playable_media) && (\n <div\n className=\"card-with-icon__icon file-card__icon\"\n onClick={cancel_event}\n >\n {icon}\n </div>\n )}\n </div>\n <div className=\"card-with-icon__content\">\n <HeadlineTag\n className=\"card-with-icon__title\"\n data-test-id={\n title_html ? \"DefaultFileCard_title\" : \"DefaultFileCard_file_name\"\n }\n aria-label={file_name}\n {...headline_html}\n {...simple_tooltip_event_handlers}\n />\n <div className=\"card-with-icon__caption\">\n {i18n.format_file_size(file_size)}\n {!!additional_filename && (\n <>\n <div> - </div>\n <div\n data-test-id=\"DefaultFileCard_file_name\"\n {...additional_filename}\n />\n </>\n )}\n </div>\n </div>\n </DefaultFileCardAnchor>\n )\n },\n)\n\nexport const DefaultFileCardAnchor = ({\n blob_uid,\n file_name,\n children,\n className,\n classNameFallback,\n onClick,\n onClickFallback,\n}: {\n blob_uid?: BlobUID\n file_name: string\n children: any\n className?: string\n classNameFallback?: string\n onClick?: React.MouseEventHandler<any>\n onClickFallback?: React.MouseEventHandler<any>\n}) => {\n const [url, set_url] = React.useState<string | undefined>(undefined)\n React.useEffect(() => {\n if (!blob_uid) {\n return\n }\n const doit = () => {\n set_url(\n download_url({\n blob_uid,\n file_name: file_name,\n attachment: false,\n }),\n )\n }\n if (process.env.F_PUBLIC) {\n doit()\n } else {\n return register_auth_listener(doit)\n }\n }, [blob_uid, file_name])\n if (!url) {\n return (\n <div className={classNameFallback} onClick={onClickFallback}>\n {children}\n </div>\n )\n }\n return (\n // We need to use an anchor element here to fully support browser previews (mostly PDF)\n // across all platforms. Furthermore we want to give (desktop) users the ability to\n // use the browser's context menu for actions like `Save As ...`.\n <a\n data-test-id=\"DefaultFileCardAnchor\"\n className={className}\n onClick={onClick}\n // This is important if users choose to use `Save As ...` from the browser's\n // context menu.\n download={file_name}\n // We need to open a new window:\n // - on iOS because otherwise the download will happen in the background and the\n // user is abruptly confronted with the result.\n // - on desktop browsers, because we would *navigate* to the download and leave\n // the current page.\n target=\"_blank\"\n href={url}\n draggable={false}\n rel=\"nofollow noreferrer\"\n >\n {children}\n </a>\n )\n}\n\nconst PDFViewer = ({card, on_close}: {card: FileCardModel; on_close: () => void}) => {\n const [iframe_url, set_iframe_url] = React.useState(\"\")\n const [fade_out, set_fade_out] = React.useState(false)\n const close = React.useCallback(() => {\n set_fade_out(true)\n setTimeout(on_close, 300)\n }, [on_close])\n React.useEffect(() => {\n call_function(\n new GetDownloadBlobURLRequest({blob_uid: card.file.blob.uid}),\n GetDownloadBlobURLResponse,\n )\n .then((res) => {\n set_iframe_url(\n `/c/dist/pdfjs_${PDF_VIEWER_VERSION}/web/viewer.html?file=${encodeURIComponent(\n res.download_url + \"#\" + card.file.file_name,\n )}`,\n )\n })\n .catch((error) => {\n Snackbar.show_message(i18n.failed_to_preview_pdf)\n report_error(\"Failed to preview pdf\", error)\n on_close()\n })\n }, [card, on_close])\n React.useEffect(() => {\n return trap_browser_back(\"video_player\", on_close)\n }, [on_close])\n if (!iframe_url) {\n return ReactDOM.createPortal(\n <div className=\"pdf-viewer pdf-viewer--show\" data-test-id=\"PDFViewer_loading\">\n <LoadingIndicator />\n </div>,\n document.body,\n )\n }\n return ReactDOM.createPortal(\n <div\n className={classNames(\"pdf-viewer\", {\n \"pdf-viewer--show\": !fade_out,\n \"pdf-viewer--hide\": fade_out,\n })}\n data-test-id=\"PDFViewer\"\n >\n <div className=\"pdf-viewer__close\">\n <IconButton data-test-id=\"PDFViewer_close\" icon=\"arrow_back\" onClick={close} />\n </div>\n <iframe\n data-test-id=\"PDFViewer_iframe\"\n className=\"pdf-viewer__iframe\"\n name=\"pdf-viewer\"\n src={iframe_url}\n ></iframe>\n </div>,\n document.body,\n )\n}\n", "import * as React from \"preact\"\nimport {BlobUID, Board, Card, EngagementType, FileCard, is_image} from \"@cling/lib.shared.model\"\nimport {board_info_resource} from \"@cling/lib.web.resources\"\nimport {board_to_react} from \"@cling/lib.shared.board_to_html/board_to_react\"\nimport {with_timeout} from \"@cling/lib.shared.utils\"\nimport {i18n} from \"@cling/lib.web.i18n\"\nimport {ui_state} from \"../state/index\"\nimport {download_url} from \"./download\"\nimport {report_error} from \"@cling/lib.shared.debug\"\nimport {report_user_engagement} from \"@cling/lib.web.analytics\"\nimport {render as preact_render} from \"preact\"\nimport {useEffect} from \"preact/hooks\"\nimport {thumbnail_url} from \"@cling/lib.web.resources/thumbnails\"\n\n/**\n * Open a new window, render a printable version and call `window.print()`.\n *\n * If the given board is the currently displayed board then only the visible cards will be\n * rendered and printed.\n */\nexport function print_board(board: Board, card?: Card) {\n report_user_engagement(EngagementType.print)\n const print_window = window.open(\"/c/static/print.html\", \"_blank\")!\n let interval_id: any\n let num_errors_to_ignore = 15\n const run = async () => {\n try {\n // Make sure that `run` is only executed once, but not\n // before `print_window.document.documentElement` is defined ...\n if (!(interval_id && print_window.document && print_window.document.documentElement)) {\n return\n }\n clearInterval(interval_id)\n interval_id = 0\n const progress_div = (\n <div\n id=\"progress\"\n style={{\n fontFamily: \"'Proxima', Arial, sans-serif\",\n position: \"fixed\",\n fontSize: \"14px\",\n backgroundColor: \"#ffd180\",\n borderRadius: \"6px\",\n border: \"1px solid #333\",\n top: \"0\",\n left: \"0\",\n bottom: \"0\",\n right: \"0\",\n margin: \"auto\",\n height: \"50px\",\n width: \"300px\",\n justifyContent: \"center\",\n alignItems: \"center\",\n display: \"flex\",\n }}\n role=\"dialog\"\n >\n {i18n.preparing_content_to_print}\n </div>\n )\n const PrintApp = () => {\n useEffect(() => {\n print_window.document.head.querySelector(\"title\")!.innerText = i18n.print\n })\n return (\n <>\n <head>\n <title>{i18n.preparing_content_to_print}</title>\n </head>\n <body>{progress_div}</body>\n </>\n )\n }\n const root = print_window.document.documentElement\n preact_render(<PrintApp />, root)\n const is_card_visible = (x: Card) => {\n if (x === card) {\n return true\n }\n if (ui_state.current_board_uid === board.uid) {\n return ui_state.search_state.visible_children(x.parent).includes(x)\n } else {\n return ui_state.search_state.archived_cards_shown || !x.archived\n }\n }\n const file_cards = (card || board.root).deep_children.filter(\n (x) => x.file && is_card_visible(x),\n ) as FileCard[]\n if (card?.file) {\n file_cards.push(card as FileCard)\n }\n const blob_uris = new Map<BlobUID, string>()\n for (const {file} of file_cards) {\n if (is_image(file.blob)) {\n const url = thumbnail_url({blob_uid: file.blob.uid, width: 512, height: 512})\n blob_uris.set(file.blob.uid, url)\n } else {\n try {\n blob_uris.set(\n file.blob.uid,\n download_url({\n file_name: file.file_name,\n blob_uid: file.blob.uid,\n attachment: true,\n }),\n )\n } catch {\n blob_uris.set(file.blob.uid, \"/404\")\n }\n }\n }\n const render = () => {\n preact_render(\n board_to_react({\n board,\n blob_uris,\n card,\n print: true,\n board_names: new Map(\n board_info_resource.read_all().map((x) => [x.uid, x.name]),\n ),\n is_card_visible,\n body_children: [progress_div],\n }),\n root,\n )\n }\n // Render the board (even if there are missing thumbnails) ...\n render()\n // Wait until the board has been rendered and mounted ...\n await with_timeout(\n 30000,\n new Promise<void>((resolve) => {\n const interval_id_2 = setInterval(() => {\n if (print_window.document.querySelector(\"main\")) {\n clearInterval(interval_id_2)\n resolve()\n }\n }, 113)\n }),\n {\n description: \"Board not rendered within 30 seconds\",\n },\n )\n // Wait until all images are loaded ...\n await with_timeout(\n 60000,\n new Promise<void>((resolve) => {\n let num_images_loaded = 0\n const img_elements = print_window.document.querySelectorAll(\"img\")\n if (img_elements.length === 0) {\n resolve()\n } else {\n const image_urls = Array.from(img_elements).map((x) => x.src)\n const f = () => {\n num_images_loaded += 1\n if (num_images_loaded === img_elements.length) {\n resolve()\n }\n }\n image_urls.forEach((image_url) => {\n const img = new Image()\n img.onload = f\n // We also want to resolve if an image could not be loaded ...\n img.onerror = f\n img.src = image_url\n })\n }\n }),\n {\n description: \"Images not loaded within 30 seconds\",\n },\n )\n print_window.addEventListener(\"afterprint\", () => {\n // We have to wait a bit (at least on Safari/OSX) before closing the window ...\n setTimeout(() => {\n print_window.close()\n }, 500)\n })\n print_window.document.querySelector(\"#progress\")?.remove()\n // For testing ...\n if (window._under_test) {\n ;(window as any).__ready_to_print = true\n } else {\n print_window.print()\n }\n } catch (error) {\n if (\n num_errors_to_ignore > 0 &&\n error.message?.includes(\"Blocked a frame with origin\")\n ) {\n // This is to be expected a few times ...\n num_errors_to_ignore -= 1\n return\n }\n report_error(\"Failed to print board\", error)\n }\n }\n print_window.onload = run\n // Boah, I hate the cross-browser hazzle. Some browsers (Edge 18) won't always invoke\n // `print_window.onload` so we use a fallback ...\n interval_id = setInterval(run, 137)\n}\n", "import * as React from \"preact\"\nimport {\n BlobUID,\n Board,\n BoardStyle,\n BoardUID,\n Card,\n extract_linked_board_and_card_uid,\n File,\n is_image,\n Link,\n Note,\n} from \"@cling/lib.shared.model\"\nimport {not_null} from \"@cling/lib.shared.utils\"\n\nexport function board_to_react(props: {\n board: Board\n blob_uris: Map<BlobUID, string>\n is_card_visible: (card: Card) => boolean\n card?: Card\n print?: boolean\n board_names?: Map<BoardUID, string>\n body_children?: any[]\n}) {\n const elms = React.createElement(RBoard, props)\n if (props.print) {\n return elms\n }\n return <html>{elms}</html>\n}\n\nconst RBoard = (props: {\n board: Board\n blob_uris: Map<BlobUID, string>\n card?: Card\n print?: boolean\n board_names?: Map<BoardUID, string>\n is_card_visible: (card: Card) => boolean\n body_children?: any[]\n}) => {\n const {board, body_children, card, print, is_card_visible, blob_uris} = props\n const inbox = board.inbox.children.filter((x) => is_card_visible(x)).length > 0 && (\n <RColumn {...props} key=\"inbox\" column={board.inbox} />\n )\n return (\n <>\n <head>\n <title>Cling - {board.name}</title>\n <link rel=\"icon\" href=\"https://cling.com/c/static/icon_512.png\" type=\"image/png\" />\n <meta charSet=\"UTF-8\" />\n <meta name=\"theme-color\" content=\"#222222\" />\n <style\n type=\"text/css\"\n dangerouslySetInnerHTML={{\n __html: style(\n print\n ? new BoardStyle({background_color: \"#ffffff\"})\n : board.board_style,\n blob_uris,\n ),\n }}\n />\n </head>\n <body className=\"mdc-typography\">\n <header role=\"banner\">Cling - {board.name}</header>\n <main>\n {card && (\n <section>\n <RCard {...props} card={card} />\n </section>\n )}\n {!card && (\n <>\n {!print && inbox}\n {board.columns\n .filter(\n (x) => x.children.filter((y) => is_card_visible(y)).length > 0,\n )\n .map((x) => (\n <RColumn {...props} key={x.uid} column={x} />\n ))}\n {print && inbox}\n </>\n )}\n </main>\n {!print && (\n <footer>\n This is only a quick preview. The complete data can be found in the file\n board.json.\n <br />\n <br />\n <a href={`https://cling.com/c/${board.uid}`}>See this board in Cling</a>\n </footer>\n )}\n {body_children}\n </body>\n </>\n )\n}\n\nconst RColumn = (props: {\n column: Card\n blob_uris: Map<BlobUID, string>\n board_names?: Map<BoardUID, string>\n is_card_visible: (card: Card) => boolean\n}) => {\n const {column, is_card_visible} = props\n return (\n <section key={column.uid}>\n {!!column.inbox && <header>Inbox</header>}\n {column.children\n .filter((x) => is_card_visible(x))\n .map((x) => (\n <RCard {...props} key={x.uid} card={x} />\n ))}\n </section>\n )\n}\n\nconst RCard = (props: {\n card: Card\n blob_uris: Map<BlobUID, string>\n board_names?: Map<BoardUID, string>\n is_card_visible: (card: Card) => boolean\n}) => {\n const {card, blob_uris, board_names, is_card_visible} = props\n return (\n <article key={card.uid}>\n {card.note && <RNote note={card.note} />}\n {card.link && <RLink link={card.link} board_names={board_names} />}\n {card.file && (\n <RFile\n file={card.file}\n blob_uri={not_null(blob_uris.get(card.file.blob.uid), card.file.blob.uid)}\n />\n )}\n {card.children\n .filter((x) => is_card_visible(x))\n .map((x) => (\n <RCard {...props} key={x.uid} card={x} />\n ))}\n </article>\n )\n}\n\nconst RNote = ({note}: {note: Note}) => (\n <div className=\"note\">\n {note.title && <header>{note.title}</header>}\n {note.safe_html && (\n <div className=\"safe_html\" dangerouslySetInnerHTML={{__html: note.safe_html}} />\n )}\n </div>\n)\n\nconst RLink = ({link, board_names}: {link: Link; board_names?: Map<BoardUID, string>}) => {\n const target_board_uid = extract_linked_board_and_card_uid(link.url)?.board_uid\n if (target_board_uid) {\n // Special handling for board-link-cards.\n const board_name = board_names?.get(target_board_uid)\n return <div>Board {board_name || target_board_uid}</div>\n }\n return (\n <div className=\"link\">\n <a href={link.url}>{link.title || link.url}</a>\n </div>\n )\n}\n\nconst RFile = ({file, blob_uri}: {file: File; blob_uri: string}) => (\n <div className={`file${is_image(file.blob) ? \" file--image\" : \"\"}`}>\n {file.title && <header>{file.title}</header>}\n <a href={blob_uri}>\n {is_image(file.blob) && (\n <img\n src={blob_uri}\n alt={file.file_name}\n style={{\n backgroundColor: file.display.background_color,\n }}\n />\n )}\n {!is_image(file.blob) && file.file_name}\n </a>\n </div>\n)\n\nconst style = (board_style: BoardStyle, blob_uris: Map<BlobUID, string>) => {\n const space = 16\n let {background_color: color, background_image_url: image_url} = board_style\n const {background_image_blob: image_blob} = board_style\n if (!color) {\n color = \"#607d8b\"\n }\n if (image_blob) {\n image_url = not_null(blob_uris.get(image_blob.uid), image_blob.uid)\n }\n const is_background_pattern =\n board_style.background_is_pattern || image_url.includes(\"/patterns/\")\n // language=CSS\n return `\n body {\n font-family: Arial, sans-serif;\n font-size: 13px;\n margin: 0;\n padding: 0;\n }\n @media print {\n body {\n font-size: 11px;\n } \n }\n @media screen {\n body {\n ${image_url ? `background-image: url(${image_url});` : \"\"}\n background-color: ${color};\n ${is_background_pattern ? \"\" : \"background-size: cover;\"}\n background-position: center;\n }\n }\n a, a:visited {\n color: #1976d2;\n }\n body > header {\n font-size: larger;\n font-weight: bolder;\n } \n @media print {\n body > header {\n padding-bottom: ${space}px;\n }\n }\n @media screen {\n body > header {\n padding: ${space}px ${2 * space}px;\n background-color: rgba(0,0,0,0.62);\n color: white;\n } \n }\n @media screen {\n main {\n display: flex;\n flex-direction: row;\n }\n main > section {\n margin: ${space}px ${space}px 80px;\n flex: 1;\n width: 400px;\n }\n }\n @media print {\n main > section {\n break-after: page; \n }\n }\n article, section > header {\n background-color: white;\n border: 1px solid #999;\n border-radius: 4px;\n padding: ${space}px;\n }\n article {\n margin-bottom: ${space}px;\n overflow: hidden;\n overflow-wrap: anywhere;\n }\n main > section > header {\n margin-bottom: ${space}px;\n }\n @media print {\n main > section > header {\n font-weight: bolder; \n }\n }\n @media screen {\n main > section > header {\n background-color: rgba(0,0,0,0.62);\n color: white;\n }\n }\n article > article {\n margin-right: ${-space}px;\n margin-top: ${space}px;\n border-right: none;\n margin-top: ${space}px;\n } \n @media print {\n article > article {\n break-inside: avoid;\n }\n }\n .note > header {\n font-weight: bolder; \n }\n .note > header + .safe_html {\n margin-top: ${space}px;\n }\n .note > .safe_html p {\n margin-top: 0;\n margin-bottom: 0;\n }\n @media screen {\n .note > .safe_html em {\n background-color: #69f0ae; /* $material-color-light-green-a200; */\n font-style: inherit;\n }\n }\n @media print {\n .note > .safe_html em {\n font-weight: bolder;\n color: #69f0ae; /* $material-color-light-green-a200; */\n font-style: inherit;\n }\n }\n .note > .safe_html ul {\n list-style: circle;\n }\n .note > .safe_html ol {\n list-style: decimal;\n }\n .note > .safe_html ul[role=\"listbox\"] {\n padding-left: 24px;\n position: relative;\n list-style: none;\n margin: 12px 0;\n }\n .note > .safe_html li[role=\"option\"] {\n margin-bottom: 2px;\n min-height: 24px;\n padding-left: 6px;\n }\n .note > .safe_html li[role=\"option\"]:before {\n display: block;\n position: absolute;\n content: \" \";\n background-size: 24px 24px;\n height: 26px;\n width: 24px;\n left: 0;\n margin-top: -2px;\n }\n .note > .safe_html li[aria-checked=\"true\"] {\n color: #757575; /* $material-color-grey-600; */\n }\n @media screen {\n .note > .safe_html li[aria-checked=\"true\"]:before {\n background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\"><path d=\"M0 0h24v24H0V0z\" fill=\"none\"/><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z\" fill=\"rgb(158,158,158)\"/></svg>');\n }\n .note > .safe_html li[aria-checked=\"false\"]:before {\n background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\"><path d=\"M0 0h24v24H0V0z\" fill=\"none\"/><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\" fill=\"rgb(97,97,97)\"/></svg>');\n }\n }\n @media print {\n .note > .safe_html li[aria-checked=\"true\"]:before {\n content: \"[x]\";\n line-height: 24px;\n font-family: \"Courier New\", monospace;\n }\n .note > .safe_html li[aria-checked=\"false\"]:before {\n content: \"[ ]\";\n line-height: 24px;\n font-family: \"Courier New\", monospace;\n }\n }\n .note > .safe_html pre {\n background-color: rgba(0, 0, 0, 0.05);\n }\n .note > .safe_html code {\n background-color: rgba(0, 0, 0, 0.05);\n font-family: \"Courier New\", monospace;\n padding: 2px;\n border-radius: 3px;\n white-space: normal;\n }\n .note > .safe_html pre code {\n background-color: unset;\n }\n .file {\n display: flex;\n flex-direction: column;\n }\n .file > header {\n font-weight: bolder; \n margin-bottom: ${space}px;\n }\n .file.file--image {\n align-items: center;\n }\n .file img {\n border-radius: 4px;\n max-width: 250px;\n max-height: 250px;\n }\n body > footer {\n padding: ${space}px ${2 * space}px;\n background-color: rgba(0,0,0,0.62);\n color: white;\n font-size: smaller;\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n } \n /* Style and force the scrollbar to be visible on all platforms. */\n *::-webkit-scrollbar {\n -webkit-appearance: none;\n }\n *::-webkit-scrollbar:vertical {\n width: 12px;\n }\n *::-webkit-scrollbar:horizontal {\n height: 12px;\n }\n *::-webkit-scrollbar-thumb {\n border-radius: 8px;\n border: 1px solid white; /* Should match background, can't be transparent. */\n background-color: rgba(0, 0, 0, .5);\n }\n `\n}\n"], "mappings": "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", "names": ["init_compat_module", "init_compat_module", "PDF_VIEWER_VERSION", "DefaultFileCard", "observer", "card", "pdf_viewer_shown", "set_pdf_viewer_shown", "d", "pdf_preview", "q", "e", "on_download_file", "report_user_engagement", "open_lightbox_or_play", "is_playable_media", "video_player_state", "ui_actions", "lightbox_shown", "ui_state", "file_name", "title", "blob", "matches", "file_name_html", "title_html", "playable_media", "_", "k", "DefaultFileCardPresentation", "Lightbox", "PDFViewer", "file_size", "icon_on_click", "onClick", "file_name_parts", "icon", "headline_html", "decorate_emojis", "not_null", "additional_filename", "thumbnail_blob_uid", "may_have_thumbnail", "is_video", "media_info_resource", "HeadlineTag", "title_tag", "DefaultFileCardAnchor", "cancel_event", "CondensedThumbnail", "CondensedThumbnailNoImage", "simple_tooltip_event_handlers", "i18n", "__name", "blob_uid", "children", "className", "classNameFallback", "onClickFallback", "url", "set_url", "y", "register_auth_listener", "download_url", "on_close", "iframe_url", "set_iframe_url", "fade_out", "set_fade_out", "close", "call_function", "GetDownloadBlobURLRequest", "GetDownloadBlobURLResponse", "res", "error", "Snackbar", "report_error", "trap_browser_back", "Rn", "classNames", "IconButton", "LoadingIndicator", "init_preact_module", "init_preact_module", "board_to_react", "props", "elms", "_", "RBoard", "__name", "board", "body_children", "card", "print", "is_card_visible", "blob_uris", "inbox", "x", "RColumn", "k", "style", "BoardStyle", "RCard", "y", "column", "board_names", "RNote", "RLink", "RFile", "not_null", "note", "link", "target_board_uid", "extract_linked_board_and_card_uid", "board_name", "file", "blob_uri", "is_image", "board_style", "color", "image_url", "image_blob", "is_background_pattern", "init_preact_module", "init_hooks_module", "print_board", "board", "card", "report_user_engagement", "print_window", "interval_id", "num_errors_to_ignore", "run", "__name", "progress_div", "_", "i18n", "PrintApp", "y", "k", "root", "D", "is_card_visible", "x", "ui_state", "file_cards", "blob_uris", "file", "is_image", "url", "thumbnail_url", "download_url", "board_to_react", "board_info_resource", "with_timeout", "resolve", "interval_id_2", "num_images_loaded", "img_elements", "image_urls", "f", "image_url", "img", "error", "report_error"] }