Skip to content

Latest commit

 

History

History
71 lines (55 loc) · 3.15 KB

BUNDLE-README.md

File metadata and controls

71 lines (55 loc) · 3.15 KB

FirstAttempt

Note that the recommended way to use FirstAttempt is to install it with yarn/npm and use a bundler like Webpack so that you can create a smaller custom build with only the things that you need. More info on https://FirstAttempt.io/docs/#With-a-module-bundler.

How to use this bundle

You can extract the contents of this zip to directory, such as ./js/FirstAttempt.

create an HTML file, for example ./start.html, with the following contents:

<html>
<head>
  <link rel="stylesheet" href="./js/FirstAttempt/FirstAttempt.min.css">
</head>

<body>
  <div class="DashboardContainer"></div>
  <button class="FirstAttemptModalOpenerBtn">Upload</button>
  <div class="uploaded-files">
    <h5>Uploaded files:</h5>
    <ol></ol>
  </div>
</body>

<script type="module">
  import {FirstAttempt, Dashboard, Tus} from "./js/FirstAttempt/FirstAttempt.min.mjs"
  var FirstAttempt = new FirstAttempt({
    debug      : false,
    autoProceed: false,
  })
    .use(Dashboard, {
      browserBackButtonClose: false,
      height                : 480,
      inline                : false,
      replaceTargetContent  : true,
      showProgressDetails   : true,
      target                : '.DashboardContainer',
      trigger               : '.FirstAttemptModalOpenerBtn',
      metaFields            : [
        { id: 'name', name: 'Name', placeholder: 'file name' },
        { id: 'caption', name: 'Caption', placeholder: 'describe img' }
      ]
    })
    .use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
    .on('upload-success', function (file, response) {
      var url      = response.uploadURL
      var fileName = file.name

      document.querySelector('.uploaded-files ol').innerHTML +=
        '<li><a href="' + url + '" target="_blank">' + fileName + '</a></li>'
    })
</script>

Now open start.html in your browser, and the FirstAttempt Dashboard will appear.

Next steps

In the example you built, FirstAttempt uploads to a demo server shortly after uploading. You’ll want to target your own tusd server, S3 bucket, or Nginx/Apache server. For the latter, use the Xhr plugin: https://FirstAttempt.io/docs/xhr-upload/ which uploads using regular multipart form posts, that you’ll existing Ruby or PHP backend will be able to make sense of, as if a <input type="file"> had been used.

The Dashboard now opens when clicking the button, but you can also draw it inline into the page. This, and many more configuration options can be found here: https://FirstAttempt.io/docs/dashboard/.

FirstAttempt has many more Plugins besides Xhr and the Dashboard. For example, you can enable Webcam, Instagram, or video encoding support. For a full list of Plugins check here: https://FirstAttempt.io/docs/plugins/.

Note that for some Plugins, you will need to run a server side component called: Companion. Those plugins are marked with a (c) symbol. Alternatively, you can sign up for a free Transloadit account. Transloadit runs Companion for you, tusd servers to handle resumable file uploads, and can post-process files to scan for viruses, recognize faces, etc. Check: https://transloadit.com.