Revert "enhancement(media-library-uploadcare): update uploadcare plugin (#2029)"

This reverts commit ff7317524478cb051374dc10aa45d96478428122.
This commit is contained in:
Shawn Erquhart 2019-02-08 22:50:39 -05:00
parent 97c7d3efc2
commit 888ca8b28b
5 changed files with 87 additions and 96 deletions

View File

@ -1,26 +0,0 @@
{
"name": "netlify-cms-media-library-uploadcare",
"version": "0.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"jquery": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz",
"integrity": "sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg=="
},
"uploadcare-widget": {
"version": "3.6.2",
"resolved": "https://registry.npmjs.org/uploadcare-widget/-/uploadcare-widget-3.6.2.tgz",
"integrity": "sha512-M/nIb88eGgvD5ua28TA9v8pI7922HucOIkLlu8kDcepbG9Psw0EEBQnOgn0eW4lHAMNH1Hs8vg0T33zgsiN4bg==",
"requires": {
"jquery": ">=1.10.2"
}
},
"uploadcare-widget-tab-effects": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.3.0.tgz",
"integrity": "sha512-6ZJm96K8/fKySU7NU8YNG0ZxyEeSToeTu4+2Iz7YFf6qZgLw3sECn/XudGxN8jJIsHpilhy040pqDzu6A78Mig=="
}
}
}

View File

@ -26,8 +26,7 @@
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"uploadcare-widget": "^3.6.2",
"uploadcare-widget-tab-effects": "^1.3.0"
"peerDependencies": {
"netlify-cms-lib-util": "^2.0.4"
}
}

View File

@ -1,7 +1,6 @@
import { queryHelpers, waitForElement } from 'dom-testing-library';
import uuid from 'uuid/v4';
import uploadcareMediaLibrary from '../index';
import uploadcare from 'uploadcare-widget';
import uploadcareTabEffects from 'uploadcare-widget-tab-effects';
import uploadcare from '../index';
function generateMockUrl({ count = 1, cdnUrl } = {}) {
const baseUrl = 'https://ucarecdn.com';
@ -14,40 +13,54 @@ function generateMockUrl({ count = 1, cdnUrl } = {}) {
return result;
}
let openDialogCallback;
/**
* Mock of the uploadcare widget object itself.
*/
jest.mock('uploadcare-widget', () => ({
registerTab: jest.fn(),
openDialog: jest.fn(() => ({
done: jest.fn(cb => {
openDialogCallback = cb;
}),
})),
fileFrom: jest.fn((type, url) =>
Promise.resolve({
testFileUrl: url,
}),
),
loadFileGroup: () => ({
done: cb => cb(),
}),
}));
describe('uploadcare media library', () => {
let handleInsert;
let simulateCloseDialog;
let uploadcareScripts = [];
const TEST_PUBLIC_KEY = 123;
const defaultConfig = {
imagesOnly: false,
multiple: false,
previewStep: true,
integration: 'NetlifyCMS-Uploadcare-MediaLibrary',
};
beforeEach(() => {
/**
* We load the Uploadcare library by injecting script tags to the page
* head. Initialization waits for the scripts to load, so here we fake it.
* This also tests that the expected scripts are added to the DOM.
*/
[/uploadcare\.full\.js$/, /uploadcare\.tab-effects\.js$/].forEach(pattern => {
waitForElement(() => {
return queryHelpers.queryByAttribute('src', document, pattern);
}).then(script => {
uploadcareScripts.push(script);
script.onreadystatechange();
});
});
let openDialogCallback;
/**
* Mock of the uploadcare widget object itself.
*/
window.uploadcare = {
registerTab: jest.fn(),
openDialog: jest.fn(() => ({
done: jest.fn(cb => {
openDialogCallback = cb;
}),
})),
fileFrom: jest.fn((type, url) =>
Promise.resolve({
testFileUrl: url,
}),
),
loadFileGroup: () => ({
done: cb => cb(),
}),
};
/**
* Mock to manually call the close dialog registered callback.
*/
@ -62,8 +75,17 @@ describe('uploadcare media library', () => {
handleInsert = jest.fn();
});
afterEach(() => {
/**
* Remove the script elements from the dom after each test.
*/
const { head } = document;
uploadcareScripts.forEach(script => head.contains(script) && head.removeChild(script));
uploadcareScripts = [];
});
it('exports an object with expected properties', () => {
expect(uploadcareMediaLibrary).toMatchInlineSnapshot(`
expect(uploadcare).toMatchInlineSnapshot(`
Object {
"init": [Function],
"name": "uploadcare",
@ -78,15 +100,17 @@ Object {
publicKey: TEST_PUBLIC_KEY,
},
};
await uploadcareMediaLibrary.init({ options });
await uploadcare.init({ options });
expect(window.UPLOADCARE_LIVE).toEqual(false);
expect(window.UPLOADCARE_MANUAL_START).toEqual(true);
expect(window.UPLOADCARE_PUBLIC_KEY).toEqual(TEST_PUBLIC_KEY);
});
it('registers the effects tab', async () => {
await uploadcareMediaLibrary.init();
expect(uploadcare.registerTab).toHaveBeenCalledWith('preview', uploadcareTabEffects);
const mockEffectsTab = { mockEffectsTab: true };
window.uploadcareTabEffects = mockEffectsTab;
await uploadcare.init();
expect(window.uploadcare.registerTab).toHaveBeenCalledWith('preview', mockEffectsTab);
});
});
@ -98,9 +122,9 @@ Object {
};
it('has defaults', async () => {
const integration = await uploadcareMediaLibrary.init();
const integration = await uploadcare.init();
await integration.show();
expect(uploadcare.openDialog).toHaveBeenCalledWith(null, defaultConfig);
expect(window.uploadcare.openDialog).toHaveBeenCalledWith(null, defaultConfig);
});
it('can be defined globally', async () => {
@ -108,9 +132,9 @@ Object {
...defaultConfig,
...options.config,
};
const integration = await uploadcareMediaLibrary.init({ options });
const integration = await uploadcare.init({ options });
await integration.show();
expect(uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
expect(window.uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
});
it('can be defined per field', async () => {
@ -118,9 +142,9 @@ Object {
...defaultConfig,
...options.config,
};
const integration = await uploadcareMediaLibrary.init();
const integration = await uploadcare.init();
await integration.show({ config: options.config });
expect(uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
expect(window.uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
});
});
@ -137,9 +161,9 @@ Object {
...options.config,
imagesOnly: true,
};
const integration = await uploadcareMediaLibrary.init();
const integration = await uploadcare.init();
await integration.show({ config: options.config, imagesOnly: true });
expect(uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
expect(window.uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
});
it('allows multiple selection if allowMultiple is not false', async () => {
@ -149,9 +173,9 @@ Object {
...options.config,
multiple: true,
};
const integration = await uploadcareMediaLibrary.init({ options });
const integration = await uploadcare.init({ options });
await integration.show({ config: options.config });
expect(uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
expect(window.uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
});
it('disallows multiple selection if allowMultiple is false', async () => {
@ -161,15 +185,15 @@ Object {
...options.config,
multiple: false,
};
const integration = await uploadcareMediaLibrary.init({ options });
const integration = await uploadcare.init({ options });
await integration.show({ config: options.config, allowMultiple: false });
expect(uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
expect(window.uploadcare.openDialog).toHaveBeenCalledWith(null, expectedConfig);
});
it('passes selected image url to handleInsert', async () => {
const url = generateMockUrl();
const mockResult = { cdnUrl: url };
const integration = await uploadcareMediaLibrary.init({ handleInsert });
const integration = await uploadcare.init({ handleInsert });
await integration.show();
await simulateCloseDialog(mockResult);
expect(handleInsert).toHaveBeenCalledWith(url);
@ -179,7 +203,7 @@ Object {
options.config.multiple = true;
const { result, cdnUrl } = generateMockUrl({ count: 3, cdnUrl: true });
const mockDialogCloseResult = { cdnUrl, count: 3 };
const integration = await uploadcareMediaLibrary.init({ options, handleInsert });
const integration = await uploadcare.init({ options, handleInsert });
await integration.show();
await simulateCloseDialog(mockDialogCloseResult);
expect(handleInsert).toHaveBeenCalledWith(result);
@ -188,7 +212,7 @@ Object {
describe('enableStandalone method', () => {
it('returns false', async () => {
const integration = await uploadcareMediaLibrary.init();
const integration = await uploadcare.init();
expect(integration.enableStandalone()).toEqual(false);
});
});

View File

@ -1,8 +1,6 @@
import uploadcare from 'uploadcare-widget';
import uploadcareTabEffects from 'uploadcare-widget-tab-effects';
import { loadScript } from 'netlify-cms-lib-util';
import { Iterable } from 'immutable';
const USER_AGENT = 'NetlifyCMS-Uploadcare-MediaLibrary';
const CDN_BASE_URL = 'https://ucarecdn.com';
/**
@ -10,7 +8,6 @@ const CDN_BASE_URL = 'https://ucarecdn.com';
*/
const defaultConfig = {
previewStep: true,
integration: USER_AGENT,
};
/**
@ -39,7 +36,9 @@ function getFileGroup(files) {
* `fileFrom`, but requires the promise returned by `loadFileGroup` to provide
* the result of it's `done` method.
*/
return new Promise(resolve => uploadcare.loadFileGroup(groupId).done(group => resolve(group)));
return new Promise(resolve =>
window.uploadcare.loadFileGroup(groupId).done(group => resolve(group)),
);
}
/**
@ -63,7 +62,7 @@ function getFiles(value) {
function getFile(url) {
const groupPattern = /~\d+\/nth\/\d+\//;
const uploaded = url.startsWith(CDN_BASE_URL) && !groupPattern.test(url);
return uploadcare.fileFrom(uploaded ? 'uploaded' : 'url', url);
return window.uploadcare.fileFrom(uploaded ? 'uploaded' : 'url', url);
}
/**
@ -71,7 +70,7 @@ function getFile(url) {
* each use.
*/
function openDialog(files, config, handleInsert) {
uploadcare.openDialog(files, config).done(({ promise }) =>
window.uploadcare.openDialog(files, config).done(({ promise }) =>
promise().then(({ cdnUrl, count }) => {
if (config.multiple) {
const urls = Array.from({ length: count }, (val, idx) => `${cdnUrl}nth/${idx}/`);
@ -95,11 +94,20 @@ async function init({ options = { config: {} }, handleInsert } = {}) {
window.UPLOADCARE_MANUAL_START = true;
window.UPLOADCARE_PUBLIC_KEY = publicKey;
/**
* Loading scripts via url because the uploadcare widget includes
* non-strict-mode code that's incompatible with our build system
*/
await loadScript('https://unpkg.com/uploadcare-widget@^3.6.0/uploadcare.full.js');
await loadScript(
'https://unpkg.com/uploadcare-widget-tab-effects@^1.2.1/dist/uploadcare.tab-effects.js',
);
/**
* Register the effects tab by default because the effects tab is awesome. Can
* be disabled via config.
*/
uploadcare.registerTab('preview', uploadcareTabEffects);
window.uploadcare.registerTab('preview', window.uploadcareTabEffects);
return {
/**

View File

@ -7165,10 +7165,6 @@ joi@^9.2.0:
moment "2.x.x"
topo "2.x.x"
jquery@>=1.10.2:
version "3.3.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.3.1.tgz#958ce29e81c9790f31be7792df5d4d95fc57fbca"
js-base64@^2.1.9, js-base64@^2.4.8:
version "2.4.8"
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.8.tgz#57a9b130888f956834aa40c5b165ba59c758f033"
@ -12371,16 +12367,6 @@ upath@^1.0.5:
resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd"
integrity sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==
uploadcare-widget-tab-effects@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.3.0.tgz#13a7d58af0a38dca34dac03f90670d5103d17be7"
uploadcare-widget@^3.6.2:
version "3.6.2"
resolved "https://registry.yarnpkg.com/uploadcare-widget/-/uploadcare-widget-3.6.2.tgz#621bbef6d9a527a7fdcd6939e574819e6683e717"
dependencies:
jquery ">=1.10.2"
uri-js@^4.2.1:
version "4.2.2"
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"