Skip to content

Latest commit

 

History

History
 
 

demo

Shrine demo using Roda & Sequel

(Looking for the Rails version - see the Rails demo. Before you head over there, give this demo a try. Roda is just as capable as Rails without the bloat and super flexible on a per route basis because you only add on what you need! One thing to note - Roda places Rails controller-like code in routes because it's route centric, the rest is pretty similar to Rails.)

This is a Roda & Sequel demo for Shrine. It allows the user to create albums and attach images. The demo shows an advanced workflow:

Uploading:

  1. User selects one or more files
  2. The files get asynchronously uploaded directly to S3 and a progress bar is displayed
  3. The cached file data gets written to the hidden fields
  4. Once the form is submitted, background jobs are kicked off to process the images
  5. The records are saved with cached files, which are shown as fallback
  6. Once background jobs are finished, records are updated with processed attachment data

Deleting:

  1. User marks photos for deletion and submits
  2. Deletion starts in background, and form submits instantly
  3. Background job finishes deleting

This asynchronicity generally provides an ideal user experience, because the user doesn't have to wait for processing or deleting, and due to fallbacks they can be unaware of background jobs.

Direct uploads and backgrounding also have performance advantages, since your app doesn't have to receive file uploads (as files are uploaded directly to S3), and the web workers aren't blocked by processing, storing or deleting.

Implementation

On the client side Uppy is used for handling file uploads. In production environment files are uploaded directly to S3 (using the AwsS3 Uppy plugin), while in development and test environment they are uploaded to the app (using the XHRUpload Uppy plugin) and stored on disk. The demo features both single uploads (using the FileInput Uppy plugin) and multiple uploads (using the Dashboard Uppy plugin). The complete JavaScript implementation for the demo can be found in assets/js/app.js.

Files of interest:

Requirements

To run the app you need to setup the following things:

  • Install ImageMagick:

    $ brew install imagemagick
    
  • Install the gems:

    $ bundle install
    
  • Have SQLite on your machine, and run

    $ bundle exec sequel -m db/migrations sqlite://database.sqlite3
    
  • Put your Amazon S3 credentials in .env and setup CORS.

    S3_ACCESS_KEY_ID="..."
    S3_SECRET_ACCESS_KEY="..."
    S3_REGION="..."
    S3_BUCKET="..."

Once you have all of these things set up, you can run the app:

$ bundle exec rackup