FileUploader
FileUploader class used to upload single file.
Properties
-
file : Blob
readonlymodule:cloud-services/uploadgateway/fileuploader~FileUploader#file
A file that is being uploaded.
-
xhr : XMLHttpRequest | undefined
module:cloud-services/uploadgateway/fileuploader~FileUploader#xhr
-
_apiAddress : string
privatereadonlymodule:cloud-services/uploadgateway/fileuploader~FileUploader#_apiAddress
CKEditor Cloud Services API address.
-
_token : InitializedToken
privatereadonlymodule:cloud-services/uploadgateway/fileuploader~FileUploader#_token
CKEditor Cloud Services access token.
Methods
-
constructor( fileOrData, token, apiAddress )
module:cloud-services/uploadgateway/fileuploader~FileUploader#constructor
Creates
FileUploader
instance.Parameters
fileOrData : string | Blob
A blob object or a data string encoded with Base64.
token : InitializedToken
Token used for authentication.
apiAddress : string
API address.
-
abort() → void
module:cloud-services/uploadgateway/fileuploader~FileUploader#abort
-
delegate( events ) → EmitterMixinDelegateChain
inheritedmodule:cloud-services/uploadgateway/fileuploader~FileUploader#delegate
Delegates selected events to another
Emitter
. For instance:emitterA.delegate( 'eventX' ).to( emitterB ); emitterA.delegate( 'eventX', 'eventY' ).to( emitterC );
then
eventX
is delegated (fired by)emitterB
andemitterC
along withdata
:emitterA.fire( 'eventX', data );
and
eventY
is delegated (fired by)emitterC
along withdata
:emitterA.fire( 'eventY', data );
Parameters
events : Array<string>
Event names that will be delegated to another emitter.
Returns
-
fire( eventOrInfo, args ) → GetEventInfo<TEvent>[ 'return' ]
inheritedmodule:cloud-services/uploadgateway/fileuploader~FileUploader#fire
Fires an event, executing all callbacks registered for it.
The first parameter passed to callbacks is an
EventInfo
object, followed by the optionalargs
provided in thefire()
method call.Type parameters
Parameters
eventOrInfo : GetNameOrEventInfo<TEvent>
The name of the event or
EventInfo
object if event is delegated.args : TEvent[ 'args' ]
Additional arguments to be passed to the callbacks.
Returns
GetEventInfo<TEvent>[ 'return' ]
By default the method returns
undefined
. However, the return value can be changed by listeners through modification of theevt.return
's property (the event info is the first param of every callback).
-
listenTo( emitter, event, callback, [ options ] ) → void
inheritedmodule:cloud-services/uploadgateway/fileuploader~FileUploader#listenTo:BASE_EMITTER
Registers a callback function to be executed when an event is fired in a specific (emitter) object.
Events can be grouped in namespaces using
:
. When namespaced event is fired, it additionally fires all callbacks for that namespace.// myEmitter.on( ... ) is a shorthand for myEmitter.listenTo( myEmitter, ... ). myEmitter.on( 'myGroup', genericCallback ); myEmitter.on( 'myGroup:myEvent', specificCallback ); // genericCallback is fired. myEmitter.fire( 'myGroup' ); // both genericCallback and specificCallback are fired. myEmitter.fire( 'myGroup:myEvent' ); // genericCallback is fired even though there are no callbacks for "foo". myEmitter.fire( 'myGroup:foo' );
An event callback can stop the event and set the return value of the
fire
method.Type parameters
Parameters
emitter : Emitter
The object that fires the event.
event : TEvent[ 'name' ]
The name of the event.
callback : GetCallback<TEvent>
The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>
Additional options.
Returns
void
-
off( event, callback ) → void
inheritedmodule:cloud-services/uploadgateway/fileuploader~FileUploader#off
Stops executing the callback on the given event. Shorthand for
this.stopListening( this, event, callback )
.Parameters
event : string
The name of the event.
callback : Function
The function to stop being called.
Returns
void
-
on( event, callback, [ options ] ) → void
inheritedmodule:cloud-services/uploadgateway/fileuploader~FileUploader#on
Registers a callback function to be executed when an event is fired.
Shorthand for
this.listenTo( this, event, callback, options )
(it makes the emitter listen on itself).Type parameters
Parameters
event : TEvent[ 'name' ]
The name of the event.
callback : GetCallback<TEvent>
The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>
Additional options.
Returns
void
-
onError( callback ) → this
module:cloud-services/uploadgateway/fileuploader~FileUploader#onError
Registers callback on
error
event. Event is called once when error occurs.Parameters
callback : ( error: string ) => void
Returns
this
-
onProgress( callback ) → this
module:cloud-services/uploadgateway/fileuploader~FileUploader#onProgress
Registers callback on
progress
event.Parameters
callback : ( status: object ) => void
Returns
this
-
once( event, callback, [ options ] ) → void
inheritedmodule:cloud-services/uploadgateway/fileuploader~FileUploader#once
Registers a callback function to be executed on the next time the event is fired only. This is similar to calling
on
followed byoff
in the callback.Type parameters
Parameters
event : TEvent[ 'name' ]
The name of the event.
callback : GetCallback<TEvent>
The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>
Additional options.
Returns
void
-
send() → Promise<UploadResponse>
module:cloud-services/uploadgateway/fileuploader~FileUploader#send
-
stopDelegating( [ event ], [ emitter ] ) → void
inheritedmodule:cloud-services/uploadgateway/fileuploader~FileUploader#stopDelegating
Stops delegating events. It can be used at different levels:
- To stop delegating all events.
- To stop delegating a specific event to all emitters.
- To stop delegating a specific event to a specific emitter.
Parameters
[ event ] : string
The name of the event to stop delegating. If omitted, stops it all delegations.
[ emitter ] : Emitter
(requires
event
) The object to stop delegating a particular event to. If omitted, stops delegation ofevent
to all emitters.
Returns
void
-
stopListening( [ emitter ], [ event ], [ callback ] ) → void
inheritedmodule:cloud-services/uploadgateway/fileuploader~FileUploader#stopListening:BASE_STOP
Stops listening for events. It can be used at different levels:
- To stop listening to a specific callback.
- To stop listening to a specific event.
- To stop listening to all events fired by a specific object.
- To stop listening to all events fired by all objects.
Parameters
[ emitter ] : Emitter
The object to stop listening to. If omitted, stops it for all objects.
[ event ] : string
(Requires the
emitter
) The name of the event to stop listening to. If omitted, stops it for all events fromemitter
.[ callback ] : Function
(Requires the
event
) The function to be removed from the call list for the givenevent
.
Returns
void
-
_attachXHRListeners() → void
privatemodule:cloud-services/uploadgateway/fileuploader~FileUploader#_attachXHRListeners
-
_prepareRequest() → void
privatemodule:cloud-services/uploadgateway/fileuploader~FileUploader#_prepareRequest
-
_sendRequest() → Promise<UploadResponse>
privatemodule:cloud-services/uploadgateway/fileuploader~FileUploader#_sendRequest
Events
-
error( eventInfo, error )
module:cloud-services/uploadgateway/fileuploader~FileUploader#event:error
Fired when error occurs.
Parameters
eventInfo : EventInfo
An object containing information about the fired event.
error : string
Error message
-
progress( eventInfo, status )
module:cloud-services/uploadgateway/fileuploader~FileUploader#event:progress
Fired on upload progress.
Parameters
eventInfo : EventInfo
An object containing information about the fired event.
status : object
Total and uploaded status