本文整理汇总了TypeScript中@ephox/sand.URL.createObjectURL方法的典型用法代码示例。如果您正苦于以下问题:TypeScript URL.createObjectURL方法的具体用法?TypeScript URL.createObjectURL怎么用?TypeScript URL.createObjectURL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@ephox/sand.URL
的用法示例。
在下文中一共展示了URL.createObjectURL方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: Uploader
}, (file) => {
const blobUri: string = URL.createObjectURL(file);
const uploader = Uploader({
url: info.url,
basePath: info.basePath,
credentials: info.credentials,
handler: info.handler
});
const finalize = () => {
api.unblock();
URL.revokeObjectURL(blobUri);
};
Utils.blobToDataUri(file).then((dataUrl) => {
const blobInfo = helpers.createBlobCache(file, blobUri, dataUrl);
uploader.upload(blobInfo).then((url: string) => {
api.setData({ src: { value: url, meta: { } } });
api.showTab('General');
changeSrc(helpers, info, state, api);
finalize();
}).catch((err) => {
finalize();
helpers.alertErr(api, err);
});
});
});
示例2: function
Conversions.uriToBlob(base64Src).then(function (blob) {
blobUriSrc = URL.createObjectURL(blob);
viewBlock.attach();
Pipeline.async({}, suite.toSteps({}), function () {
viewBlock.detach();
success();
}, failure);
});
示例3: function
const toBlobInfo = function (o: BlobInfoData): BlobInfo {
let id, name;
if (!o.blob || !o.base64) {
throw new Error('blob and base64 representations of the image are required for BlobInfo to be created');
}
id = o.id || Uuid.uuid('blobid');
name = o.name || id;
return {
id: Fun.constant(id),
name: Fun.constant(name),
filename: Fun.constant(name + '.' + mimeToExt(o.blob.type)),
blob: Fun.constant(o.blob),
base64: Fun.constant(o.base64),
blobUri: Fun.constant(o.blobUri || URL.createObjectURL(o.blob)),
uri: Fun.constant(o.uri)
};
};
示例4: function
return function (evt) {
const Throbber = Factory.get('Throbber');
const rootControl = evt.control.rootControl;
const throbber = new Throbber(rootControl.getEl());
const file = evt.control.value();
const blobUri = URL.createObjectURL(file);
const uploader = Uploader({
url: Settings.getUploadUrl(editor),
basePath: Settings.getUploadBasePath(editor),
credentials: Settings.getUploadCredentials(editor),
handler: Settings.getUploadHandler(editor)
});
const finalize = function () {
throbber.hide();
URL.revokeObjectURL(blobUri);
};
throbber.show();
return Utils.blobToDataUri(file).then(function (dataUrl) {
const blobInfo = editor.editorUpload.blobCache.create({
blob: file,
blobUri,
name: file.name ? file.name.replace(/\.[^\.]+$/, '') : null, // strip extension
base64: dataUrl.split(',')[1]
});
return uploader.upload(blobInfo).then(function (url) {
const src = rootControl.find('#src');
src.value(url);
rootControl.find('tabpanel')[0].activateTab(0); // switch to General tab
src.fire('change'); // this will invoke onSrcChange (and any other handlers, if any).
finalize();
return url;
});
}).catch(function (err) {
editor.windowManager.alert(err);
finalize();
});
};
示例5: createState
function createState(blob) {
return {
blob,
url: URL.createObjectURL(blob)
};
}
示例6:
Conversions.uriToBlob(base64Src).then(function (blob) {
blobUriSrc = URL.createObjectURL(blob);
});
示例7:
const createState = (blob: Blob): ImageToolsState => {
return {
blob,
url: URL.createObjectURL(blob)
};
};