PDF Previews and Reading

A lot of explorations concerning PDF previewing and reading have been provided in the community. Here’s a little snippet showing how I approach this challenge and a document that shows it in action.

User Expectations

When we think of including PDF documents in a Coda app, the typical reaction is — … this user experience is not helpful.

What would be better?

Well, this is the requirements bar we set at Stream It:

  1. Must provide full in-line PDF document preview with scrolling.
  2. Must support expanded larger view with one click.
  3. Dynamic preview sizing in tables.
  4. Drag-and-drop additions; no custom or document-dependent formula edits.

The number-one requirement from users I’ve spoken with is the ability to scroll (or swipe) in the preview thumbnail because that’s how users find specific passages. Lacking the ability to perform a full text search, this is obviously the next best thing.

Coda checks all of these boxes if you know how to extract the URL of a Coda-bound file and embed it in a Canvas field. This document exposes these details.

Extracting the Coda URL for PDF Files

This is achieved with a formula in the hidden field PDF URL. It’s a little tricky but highly useful.

ParseJson(_Merge(thisRow.[PDF File]) + "", "#/publicUrl")

Embedding in a Canvas

With the URL for each file, it’s now possible to embed the document into a canvas field.

Embed(thisRow.[PDF URL])

In the example document, I’ve embedded the formula in each canvas item for demonstration purposes, but at Stream It, we tend to use canvas templates in cases like this. There’s a good discussion of templating canvasses here and here

11 Likes

That’s pretty neat work-around :slight_smile: Thanks for sharing it

This is amazing - thank you so much for sharing! SO useful!

2 Likes

thanks @Bill_French for sharing this

it is EXTREMELY useful
but not self evident

max

2 Likes

How did you hide the other columns from the canvas view?

Simple. Edit the layout of the Canvas field and remove all fields but Canvas itself.

2 Likes

Thank you! I appreciate it :slight_smile:

Hey @Bill_French, thanks so much for this tip. I’ve almost got it working but am encountering an error when uploading new files.

The PDF Formula doesn’t calculate until I change the formula (e.g., delete it and then replace it with the same formula). Then the PDF shows up as readable.

In the attached image, you can see the result I get when I upload a new article - just . The error in the “Reader” column is: “invalid embed URL”

Any ideas of where I’ve gone wrong?

Yeah - you haven’t done anything wrong. :wink:

As I mentioned in the article, this demo doc was prepared with the formulas for each record embedded in the canvas itself. I went on to say this is probably not the most ideal approach and you are seeing this first-hand.

I suspect there’s a way to remove the individual embeds and replace with a column formula, or follow those links to fabricate a more templated approach, one we use at Stream It but which I have no authority to share openly.

I’m struggling to see why the formula doesn’t work after upload, when it clearly does work, but only after re-loading the formula. I’m not familiar with the ParseJSON formula…

Yeah - all this does is extract the publicly-hosted address of the attached (uploaded) document.

ParseJson(_Merge(thisRow.[PDF File]) + "", "#/publicUrl")

I wonder if there’s a refresh issue that causing this to fail to produce the URL.

Solved this using the RefreshColumn() action.

User has to perform the extra step of clicking a refresh button after uploading the doc, but then the embed picks up the public URL and displays the PDF.

Thanks for your help @Bill_French

3 Likes