(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:
- User selects one or more files
- The files get asynchronously uploaded directly to S3 and a progress bar is displayed
- The cached file data gets written to the hidden fields
- Once the form is submitted, background jobs are kicked off to process the images
- The records are saved with cached files, which are shown as fallback
- Once background jobs are finished, records are updated with processed attachment data
Deleting:
- User marks photos for deletion and submits
- Deletion starts in background, and form submits instantly
- 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.
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:
- assets/js/app.js
- app.rb
- config/shrine.rb
- jobs/attachment/promote_job.rb
- jobs/attachment/destroy_job.rb
- uploaders/image_uploader.rb
- db/migrations/001_create_albums.rb
- db/migrations/002_create_photos.rb
- models/album.rb
- models/photo.rb
- routes/albums.rb
- routes/direct_upload.rb
- views/*
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