Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #76 from ckeditor/t/ckeditor5-engine/1207
Browse files Browse the repository at this point in the history
Other: Use post-fixer API.
  • Loading branch information
Piotr Jasiun committed Jan 11, 2018
2 parents 3ccb56a + 3e68779 commit 08e9d09
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 37 deletions.
51 changes: 28 additions & 23 deletions src/imageuploadengine.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,29 +75,34 @@ export default class ImageUploadEngine extends Plugin {
data.preventDefault();
} );

doc.on( 'change', ( evt, type, data ) => {
// Listen on document changes and:
// * start upload process when image with `uploadId` attribute is inserted,
// * abort upload process when image `uploadId` attribute is removed.
if ( type === 'insert' || type === 'reinsert' || type === 'remove' ) {
for ( const value of data.range ) {
if ( value.type === 'elementStart' && value.item.name === 'image' ) {
const imageElement = value.item;
const uploadId = imageElement.getAttribute( 'uploadId' );

if ( uploadId ) {
const loader = fileRepository.loaders.get( uploadId );

if ( loader ) {
if ( type === 'insert' && loader.status == 'idle' ) {
this.load( loader, imageElement );
}

if ( type === 'remove' ) {
loader.abort();
}
}
}
doc.on( 'change', () => {
const changes = doc.differ.getChanges( { includeChangesInGraveyard: true } );

for ( const entry of changes ) {
if ( entry.type == 'insert' && entry.name == 'image' ) {
const item = entry.position.nodeAfter;
const isInGraveyard = entry.position.root.rootName == '$graveyard';

// Check if the image element still has upload id.
const uploadId = item.getAttribute( 'uploadId' );

if ( !uploadId ) {
continue;
}

// Check if the image is loaded on this client.
const loader = fileRepository.loaders.get( uploadId );

if ( !loader ) {
continue;
}

if ( isInGraveyard ) {
// If the image was inserted to the graveyard - abort the loading process.
loader.abort();
} else if ( loader.status == 'idle' ) {
// If the image was inserted into content and has not been loaded, start loading it.
this.load( loader, item );
}
}
}
Expand Down
41 changes: 31 additions & 10 deletions tests/imageuploadengine.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { setData as setModelData, getData as getModelData } from '@ckeditor/cked
import { getData as getViewData } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
import { eventNameToConsumableType } from '@ckeditor/ckeditor5-engine/src/conversion/model-to-view-converters';
import Range from '@ckeditor/ckeditor5-engine/src/model/range';
import Position from '@ckeditor/ckeditor5-engine/src/model/position';

import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
import Notification from '@ckeditor/ckeditor5-ui/src/notification/notification';
Expand Down Expand Up @@ -214,7 +215,7 @@ describe( 'ImageUploadEngine', () => {
setModelData( model, '<paragraph>{}foo bar</paragraph>' );
editor.execute( 'imageUpload', { file } );

doc.once( 'changesDone', () => {
model.once( '_change', () => {
expect( getViewData( viewDocument ) ).to.equal(
'[<figure class="ck-widget image" contenteditable="false">' +
`<img src="${ base64Sample }"></img>` +
Expand All @@ -234,8 +235,8 @@ describe( 'ImageUploadEngine', () => {
setModelData( model, '<paragraph>{}foo bar</paragraph>' );
editor.execute( 'imageUpload', { file } );

doc.once( 'changesDone', () => {
doc.once( 'changesDone', () => {
model.document.once( 'change', () => {
model.document.once( 'change', () => {
expect( getViewData( viewDocument ) ).to.equal(
'[<figure class="ck-widget image" contenteditable="false"><img src="image.png"></img></figure>]<p>foo bar</p>'
);
Expand Down Expand Up @@ -309,8 +310,8 @@ describe( 'ImageUploadEngine', () => {

editor.execute( 'imageUpload', { file } );

doc.once( 'changesDone', () => {
doc.once( 'changesDone', () => {
model.document.once( 'change', () => {
model.document.once( 'change', () => {
expect( getModelData( model ) ).to.equal( '<paragraph>[]foo bar</paragraph>' );
sinon.assert.calledOnce( spy );

Expand All @@ -325,6 +326,7 @@ describe( 'ImageUploadEngine', () => {
const file = createNativeFileMock();
setModelData( model, '<paragraph>{}foo bar</paragraph>' );
editor.execute( 'imageUpload', { file } );

const abortSpy = testUtils.sinon.spy( loader, 'abort' );

expect( loader.status ).to.equal( 'reading' );
Expand All @@ -339,6 +341,24 @@ describe( 'ImageUploadEngine', () => {
sinon.assert.calledOnce( abortSpy );
} );

it( 'should not abort and not restart upload when image is moved', () => {
const file = createNativeFileMock();
setModelData( model, '<paragraph>{}foo bar</paragraph>' );
editor.execute( 'imageUpload', { file } );

const abortSpy = testUtils.sinon.spy( loader, 'abort' );
const loadSpy = testUtils.sinon.spy( loader, 'read' );

const image = doc.getRoot().getChild( 0 );

model.change( writer => {
writer.move( Range.createOn( image ), Position.createAt( doc.getRoot(), 2 ) );
} );

expect( abortSpy.called ).to.be.false;
expect( loadSpy.called ).to.be.false;
} );

it( 'image should be permanently removed if it is removed by user during upload', done => {
const file = createNativeFileMock();
const notification = editor.plugins.get( Notification );
Expand All @@ -351,13 +371,13 @@ describe( 'ImageUploadEngine', () => {

editor.execute( 'imageUpload', { file } );

doc.once( 'changesDone', () => {
model.document.once( 'change', () => {
// This is called after "manual" remove.
doc.once( 'changesDone', () => {
model.document.once( 'change', () => {
// This is called after attributes are removed.
let undone = false;

doc.once( 'changesDone', () => {
model.document.once( 'change', () => {
if ( !undone ) {
undone = true;

Expand All @@ -376,6 +396,7 @@ describe( 'ImageUploadEngine', () => {
} );

const image = doc.getRoot().getChild( 0 );

model.change( writer => {
writer.remove( image );
} );
Expand All @@ -386,8 +407,8 @@ describe( 'ImageUploadEngine', () => {
setModelData( model, '<paragraph>{}foo bar</paragraph>' );
editor.execute( 'imageUpload', { file } );

doc.once( 'changesDone', () => {
doc.once( 'changesDone', () => {
model.document.once( 'change', () => {
model.document.once( 'change', () => {
expect( getViewData( viewDocument ) ).to.equal(
'[<figure class="ck-widget image" contenteditable="false">' +
'<img sizes="100vw" src="image.png" srcset="image-500.png 500w, image-800.png 800w" width="800"></img>' +
Expand Down
8 changes: 4 additions & 4 deletions tests/imageuploadprogress.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ describe( 'ImageUploadProgress', () => {
setModelData( model, '<paragraph>[]foo</paragraph>' );
editor.execute( 'imageUpload', { file: createNativeFileMock() } );

document.once( 'changesDone', () => {
model.document.once( 'change', () => {
expect( getViewData( viewDocument ) ).to.equal(
'[<figure class="ck-appear ck-widget image" contenteditable="false">' +
`<img src="${ base64Sample }"></img>` +
Expand All @@ -106,7 +106,7 @@ describe( 'ImageUploadProgress', () => {
setModelData( model, '<paragraph>[]foo</paragraph>' );
editor.execute( 'imageUpload', { file: createNativeFileMock() } );

document.once( 'changesDone', () => {
model.document.once( 'change', () => {
adapterMock.mockProgress( 40, 100 );

expect( getViewData( viewDocument ) ).to.equal(
Expand All @@ -126,8 +126,8 @@ describe( 'ImageUploadProgress', () => {
setModelData( model, '<paragraph>[]foo</paragraph>' );
editor.execute( 'imageUpload', { file: createNativeFileMock() } );

document.once( 'changesDone', () => {
document.once( 'changesDone', () => {
model.document.once( 'change', () => {
model.document.once( 'change', () => {
expect( getViewData( viewDocument ) ).to.equal(
'[<figure class="ck-widget image" contenteditable="false">' +
'<img src="image.png"></img>' +
Expand Down

0 comments on commit 08e9d09

Please sign in to comment.