A jQuery Integration for Transloadit's file uploading and encoding service
Transloadit is a service that helps you handle file uploads, resize, crop and watermark your images, make GIFs, transcode your videos, extract thumbnails, generate audio waveforms, and so much more. In short, Transloadit is the Swiss Army Knife for your files.
This is a jQuery SDK to make it easy to talk to the Transloadit REST API.
Note You may also be interested in checking out Uppy, Transloadit's next-gen file uploader for the web.
Simply include the JavaScript asset in your HTML page like so:
<script src="//assets.transloadit.com/js/jquery.transloadit2-v3-latest.js"></script>
To install the deprecated version 2 of the SDK, use the following script tag instead:
<script src="//assets.transloadit.com/js/jquery.transloadit2-v2-latest.js"></script>
This plugin requires jQuery >= 1.9, so be sure to have jQuery loaded on your page before loading this:
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
Changes from version 2 to version 3:
- The onExecuting() callback does not have the array of
uploads
anymore. Please use theonUpload
callback to track received uploads. - The onUpload() and onResult() callbacks no longer receive the assembly object as a parameter.
- The formData parameter has been removed, because all uploads use XHR now. This will only break BC for you if you used formData: customFormDataObj. In that case you should add the contents of your custom form data as hidden input fields to the form now.
- Several new translations have been added for which you would need to add a translation in case you run on a custom locale. Please check "How to add your own localization / other language strings" at the bottom of this page for details.
- There is a new
translations
parameter now that must be used to get your custom locale working.
- There is now support for resumable file uploads! It works out of the box, you do not need to change anything for it.
- Performance has been improved in all areas of the plugin.
- Drag and Drop support has been added.
- Support for file preview lists has been added.
- All options related to polling have been removed.
- There is now a lot less network traffic for assembly status updates.
- There is now the ability to not wait for file upload meta data anymore, which is a big speed improvement. This change was also backported to the last version in the 2.x series.
- There is now a new parameter "maxNumberOfUploadedFiles", with which you can set a limit to the number of uploaded files.
- There are two new callbacks implemented: onDisconnect() and onReconnect()
Version 2 of the plugin is DEPRECATED and will CEASE TO EXIST on September 30, 2017. Please upgrade to version 3 as soon as possible.
The Transloadit jQuery plugin allows you to
- show file upload progress,
- get uploaded results directly without further API queries, and
- wait for upload processing to complete before redirecting to the result page or calling a callback function.
Assuming a form with the ID "upload-form"
(from the minimal integration),
the jQuery plugin can be used like this:
<script src="//assets.transloadit.com/js/jquery.transloadit2-v3-latest.js"></script>
<script type="text/javascript">
// We call .transloadit() after the DOM is initialized:
$(function() {
$('#upload-form').transloadit({
wait : true,
fields: true,
triggerUploadOnFileSelection: true,
params : {
auth : { key : 'YOUR_TRANSLOADIT_KEY' },
steps : {
resize_to_75: {
robot : '/image/resize',
use : ':original',
width : 75,
height : 75
},
// more Steps here
}
}
});
});
</script>
By default, this will display an overlay with a progress bar.
Important Your file input fields must each have a proper name
attribute for our jQuery SDK to work properly.
An example use of this plugin can be found in the examples directory.
To run it, simply replace YOUR_TRANSLOADIT_KEY
(on the HTML file) with your actual Transloadit key and load the html file on your browser.
We have two magic releases:
-
jquery.transloadit-v3-latest.js
This is always the latest version of the v3 branch and is the recommended version to use. https://assets.transloadit.com/js/jquery.transloadit2-v3-latest.js -
jquery.transloadit2-v2-latest.js
This is always the latest version of the deprecated v2 branch. https://assets.transloadit.com/js/jquery.transloadit2-v2-latest.js -
You can also pin specific versions via: https://assets.transloadit.com/js/jquery.transloadit2-v3.0.0.js. Remember that it then becomes your responsibility to keep track of security and performance upgrades in our releases.
-
jquery.transloadit2-latest.js
This is the latest version across majors and is not recommended to use. We do not want to auto-upgrade users between major versions to allow us to make BC breaking changes. Note: This version requires jQuery < 1.9 to work.On September 30, 2017 we will remove this version. https://assets.transloadit.com/js/jquery.transloadit2-latest.js
These can be added as parameters to the .transloadit()
call like so:
<script src="//assets.transloadit.com/js/jquery.transloadit2-v3-latest.js"></script>
<script type="text/javascript">
// We call .transloadit() after the DOM is initialized:
$(function() {
$('#upload-form').transloadit({
onStart: function(assembly) {
console.log('>> Uploading has started!');
},
onExecuting: function(assembly) {
console.log('>> Transcoding has started!');
},
});
});
Parameter | Description |
---|---|
onStart(assemblyObj) | This is fired whenever uploading begins. The assemblyObj contains useful data like the assembly's id. |
onExecuting(assemblyObj) | This is fired whenever uploading is fully finished and transcoding begins. The assemblyObj contains useful data like the assembly's id. |
onFileSelect( fileObject, $fileInputField ) |
This is fired whenever a user selects a file in file input field. |
onProgress( bytesReceived, bytesExpected ) |
This is fired whenever the upload progress is updated, allowing you to render your own upload progress bar. |
onUpload(upload) |
This is fired once for each uploaded file. This is useful for custom renderings of multiple file uploads.
Each upload here has an ID field. You can map that back to the Please set |
onResult(step, result) |
This is fired each time a result becomes available for a given Step, and is only available when wait is set to true . This can be used
to show thumbnails for videos or images once they are uploaded.
Results here contain a key |
onCancel() | This is fired after an upload has been canceled by the user. |
onError(assembly) | This is fired when upload errors occur. |
onSuccess(assembly) |
This is fired when the plugin has completed an upload. If wait is set to false , this is fired after the upload finishes. If wait is true , this is fired once all files have been transcoded.
|
onDisconnect() | This is called whenever the internet connection goes down. Useful in the context of resumable uploads. Transloadit will display a default error message in this case, though, asking the user to keep their browser tab open and wait for the resume. |
onReconnect() | This is called whenever the internet connection becomes available again after it had been down previously. |
These can be added as parameters to the .transloadit()
call like so:
<script src="//assets.transloadit.com/js/jquery.transloadit2-v3-latest.js"></script>
<script type="text/javascript">
// We call .transloadit() after the DOM is initialized:
$(function() {
$('#upload-form').transloadit({
wait : true,
region: 'eu-west-1'
});
});
Parameter | Description |
---|---|
service |
The service URL to use. By default this is "https://api2.transloadit.com/" , which makes use of our entire api and route traffic based on the geolocation of your users.
Setting this parameter overrules the region parameter, which you should also check out.
|
region |
If you want to temporarily switch to a particular region only, because we are down in the other region, you can set this parameter to either "us-east-1" or "eu-west-1" . The SDK will then build the proper service endpoint for you. Make sure to not set a custom service endpoint yourself in this case, as this would overrule the region parameter.
|
wait |
Specifies whether the plugin should wait for files to be transcoded before submitting the form. This is false by default.
|
requireUploadMetaData |
Specifies whether the plugin should wait for meta data of uploaded files to first be extracted before it calls the onSuccess callback.
If you set wait to true , this option does not have any effect, because extracting meta of uploaded files is a prerequisite for the files to be transcoded.
However, if you set This option is |
params |
An object of Assembly instructions that should be executed. For examples please check the minimal integration. This is Here is an example:
|
signature |
Specifies the signature string, which is required if signature authentication is enabled in your account. This is null by default. The old way of providing this in a hidden input field named signature is still valid and will not be deprecated.
Please make sure the signature is calculated in your back-end code, so that your Transloadit Auth Secret is not exposed in your public JavaScript code! |
modal |
Specifies whether to render the Transloadit overlay and progress bar automatically. This is true by default.
|
autoSubmit
|
Specifies whether to submit the original form automatically once the upload and processing have completed. This is true by default.
|
processZeroFiles |
Specifies whether to perform processing when the form is submitted with no files selected using the form inputs. This is true by default.
|
triggerUploadOnFileSelection |
When set to true this triggers the upload to Transloadit as soon as the user has selected a file in any of the form's file input fields. This is false by default.
|
maxNumberOfUploadedFiles |
When set to an integer value, this is the maximum number of files users can upload. If they exceed this number, then an error will occur. By default this is null , which means no limit.
|
locale |
The locale to use. The default value is "en" . If you use a custom locale, please provide your own localized strings. Please check the bottom of this page for further instructions.
|
exclude |
Specifies a selector for which any matching input[type=file] elements in the current form will not be uploaded through Transloadit. This is "" by default.
|
fields |
A CSS selector that specifies the form fields to be sent to Transloadit. This is For example:
If you would like to only send some fields, set this parameter to a CSS selector string matching the fields to be sent:
If you would like to send all form fields, set this to true:
You can also set this to an object of key/value pairs:
The fields that you send here will be available as |
translations | An object of i18n translation strings. Please check below to get the list of all available strings to translate. |
debug |
Specifies whether Transloadit errors are displayed to end users. If this is set to false , no Transloadit errors will be displayed. Use the onError callback to perform your own logging or presentation. This is true by default.
|
Important For very specific use-cases it may help to take a look at the plugin's source code. You can also always ask us to clarify something or help you with integration.
To enable drag and drop please add a div to your form like as follows:
<div class="transloadit-drop-area" data-name="files">Please drag and drop files here</div>
You can change the text of course and also the value of the data-name attribute. If you do not have the data-name attribute set, we will default it to "files".
This will create a drag and drop area with some default CSS in your form. This is the default CSS for it - feel free to overwrite it in your own CSS files:
.transloadit-drop-area {
padding: 5px;
width: 200px;
height: 75px;
border: 2px dashed #ccc;
}
.transloadit-drop-area.hover {
border: 2px dashed #0af;
}
File preview areas are lists that are automatically populated with the files that will be part of the upload. The user can then review the list prior to the upload and remove some files again if he or she so wishes.
To enable file preview areas, please add a div to your form like as follows:
<div class="transloadit-file-preview-area"></div>
This will create a file preview area with some default CSS in your form. This is the default CSS for it - feel free to overwrite it in your own CSS files:
.transloadit-file-preview-area {
margin: 10px 0;
padding: 5px;
width: 300px;
height: 100px;
overflow-y: auto;
border: 1px solid #ccc;
}
.transloadit-file-preview-area ul {
margin: 0!important;
padding: 0!important;
}
.transloadit-file-preview-area li {
border-top: 1px solid #ddd;
list-style-type: none;
display: inline-block;
width: 100%;
height: 12px;
padding: 1px 3px 3px 3px;
font-size: 11px;
}
.transloadit-file-preview-area li:first-child {
border-top: none;
}
If you don't like the Transloadit progress bar, you can render your own, like this:
$('#upload-form').transloadit({
modal: false,
onProgress: function(bytesReceived, bytesExpected) {
// render your own progress bar!
$('#progress')
.text((bytesReceived / bytesExpected * 100).toFixed(2) + '%');
},
onError: function(assembly) {
alert(assembly.error + ': ' + assembly.message);
}
});
If you like the default Transloadit progress bar but just want to change a few colors, customize these css selectors in your own css.
You can unbind the plugin by calling
$('#upload-form').unbind('submit.transloadit');
You can add your own language strings like so:
var $el = $('#upload-form');
$el.transloadit({
translations: {
'errors.SERVER_CONNECTION_ERROR' : 'Your internet connection seems to be down. Retrying ...',
'errors.SERVER_CONNECTION_ERROR.retries_exhausted' : 'Your internet connection seems to be down. Once it is up and running again please reload your browser window and try again.',
'errors.ASSEMBLY_NOT_FOUND' : 'There was a server problem finding the proper upload. Please reload your browser window and try again.',
'errors.INTERNET_CONNECTION_ERROR_UPLOAD_IN_PROGRESS' : 'Your internet connection seems to be offline. We will automatically retry the upload until the connection works again. Please leave the browser window open.',
'errors.INTERNET_CONNECTION_ERROR_UPLOAD_NOT_IN_PROGRESS': 'Your internet connection seems to be offline. Please leave the browser window open, so that we can retry fetching the status of your upload.',
'errors.MAX_FILES_EXCEEDED' : 'Please select at most %s files.',
'errors.unknown' : 'There was an unknown error.',
'errors.tryAgain' : 'Please reload your browser page and try again.',
'errors.troubleshootDetails' : 'If you would like our help to troubleshoot this, ' + 'please email us this information:',
'cancel' : 'Cancel',
'cancelling' : 'Cancelling ...',
'details' : 'Details',
'startingUpload' : 'Starting upload ...',
'processingFiles' : 'Upload done, now processing files ...',
'uploadProgress' : '%s / %s MB at %s kB/s | %s left',
}
});
Then just replace the English strings with your custom language strings.
You can access the internal uploader object to call methods directly on it like so:
var $el = $('#upload-form');
$el.transloadit({
wait: true
});
var uploader = $el.data('transloadit.uploader');
// then call some methods on the uploader object
uploader.start();
uploader.stop();
// hide the modal if it exists
uploader.hideModal();
// alternatively you could also do it like this
$el.transloadit('start');
$el.transloadit('stop');
Please consult the plugin's source code to see all available methods.
Feel free to fork this project. We will happily merge bug fixes or other small improvements. For bigger changes you should probably get in touch with us before you start to avoid not seeing them merged.
This plugin includes the following dependencies:
- jquery.jsonp.js by Julian Aubourg (MIT License)
- toolbox.expose.js by Tero Piirainen (Public domain)
- json2.js by Douglas Crockford (Public domain)
- socket.io by Guillermo Rauch (MIT License)
A big thanks goes to the authors of these fantastic projects!
The Transloadit jQuery SDK is licensed under the MIT license. The dependencies have their own licenses (MIT, BSD, PUBLIC DOMAIN).