123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436 |
- define([], function () {
- require([], function () {
- //绑定data-toggle=addresspicker属性点击事件
- $(document).on('click', "[data-toggle='addresspicker']", function () {
- var that = this;
- var callback = $(that).data('callback');
- var input_id = $(that).data("input-id") ? $(that).data("input-id") : "";
- var lat_id = $(that).data("lat-id") ? $(that).data("lat-id") : "";
- var lng_id = $(that).data("lng-id") ? $(that).data("lng-id") : "";
- var lat = lat_id ? $("#" + lat_id).val() : '';
- var lng = lng_id ? $("#" + lng_id).val() : '';
- var url = "/addons/address/index/select";
- url += (lat && lng) ? '?lat=' + lat + '&lng=' + lng : '';
- Fast.api.open(url, '位置选择', {
- callback: function (res) {
- input_id && $("#" + input_id).val(res.address).trigger("change");
- lat_id && $("#" + lat_id).val(res.lat).trigger("change");
- lng_id && $("#" + lng_id).val(res.lng).trigger("change");
- try {
- //执行回调函数
- if (typeof callback === 'function') {
- callback.call(that, res);
- }
- } catch (e) {
- }
- }
- });
- });
- });
- if (typeof Config.upload.storage !== 'undefined' && Config.upload.storage === 'alioss') {
- require(['upload'], function (Upload) {
- //获取文件MD5值
- var getFileMd5 = function (file, cb) {
- require(['../addons/alioss/js/spark'], function (SparkMD5) {
- var blobSlice = File.prototype.slice || File.prototype.mozSlice || File.prototype.webkitSlice,
- chunkSize = 10 * 1024 * 1024,
- chunks = Math.ceil(file.size / chunkSize),
- currentChunk = 0,
- spark = new SparkMD5.ArrayBuffer(),
- fileReader = new FileReader();
- fileReader.onload = function (e) {
- spark.append(e.target.result);
- currentChunk++;
- if (currentChunk < chunks) {
- loadNext();
- } else {
- cb && cb(spark.end());
- }
- };
- fileReader.onerror = function () {
- console.warn('文件读取错误');
- };
- function loadNext() {
- var start = currentChunk * chunkSize,
- end = ((start + chunkSize) >= file.size) ? file.size : start + chunkSize;
- fileReader.readAsArrayBuffer(blobSlice.call(file, start, end));
- }
- loadNext();
- });
- };
- var _onInit = Upload.events.onInit;
- //初始化中完成判断
- Upload.events.onInit = function () {
- _onInit.apply(this, Array.prototype.slice.apply(arguments));
- //如果上传接口不是阿里OSS,则不处理
- if (this.options.url !== Config.upload.uploadurl) {
- return;
- }
- $.extend(this.options, {
- //关闭自动处理队列功能
- autoQueue: false,
- params: function (files, xhr, chunk) {
- var params = Config.upload.multipart;
- if (chunk) {
- return $.extend({}, params, {
- filesize: chunk.file.size,
- filename: chunk.file.name,
- chunkid: chunk.file.upload.uuid,
- chunkindex: chunk.index,
- chunkcount: chunk.file.upload.totalChunkCount,
- chunksize: this.options.chunkSize,
- chunkfilesize: chunk.dataBlock.data.size,
- width: chunk.file.width || 0,
- height: chunk.file.height || 0,
- type: chunk.file.type,
- uploadId: chunk.file.uploadId,
- key: chunk.file.key,
- });
- } else {
- params = $.extend({}, params, files[0].params);
- params.category = files[0].category || '';
- }
- return params;
- },
- chunkSuccess: function (chunk, file, response) {
- var etag = chunk.xhr.getResponseHeader("ETag").replace(/(^")|("$)/g, '');
- file.etags = file.etags ? file.etags : [];
- file.etags[chunk.index] = etag;
- },
- chunksUploaded: function (file, done) {
- var that = this;
- Fast.api.ajax({
- url: "/addons/alioss/index/upload",
- data: {
- action: 'merge',
- filesize: file.size,
- filename: file.name,
- chunkid: file.upload.uuid,
- chunkcount: file.upload.totalChunkCount,
- md5: file.md5,
- key: file.key,
- uploadId: file.uploadId,
- etags: file.etags,
- category: file.category || '',
- aliosstoken: Config.upload.multipart.aliosstoken,
- },
- }, function (data, ret) {
- done(JSON.stringify(ret));
- return false;
- }, function (data, ret) {
- file.accepted = false;
- that._errorProcessing([file], ret.msg);
- return false;
- });
- },
- });
- var _success = this.options.success;
- //先移除已有的事件
- this.off("success", _success).on("success", function (file, response) {
- var ret = {code: 0, msg: response};
- try {
- if (response) {
- ret = typeof response === 'string' ? JSON.parse(response) : response;
- }
- if (file.xhr.status === 200) {
- if (Config.upload.uploadmode === 'client') {
- ret = {code: 1, data: {url: '/' + file.key}};
- }
- if (ret.code == 1) {
- var url = ret.data.url || '';
- Fast.api.ajax({
- url: "/addons/alioss/index/notify",
- data: {name: file.name, url: url, md5: file.md5, size: file.size, width: file.width || 0, height: file.height || 0, type: file.type, category: file.category || '', aliosstoken: Config.upload.multipart.aliosstoken}
- }, function () {
- return false;
- }, function () {
- return false;
- });
- } else {
- console.error(ret);
- }
- } else {
- console.error(file.xhr);
- }
- } catch (e) {
- console.error(e);
- }
- _success.call(this, file, ret);
- });
- this.on("addedfile", function (file) {
- var that = this;
- setTimeout(function () {
- if (file.status === 'error') {
- return;
- }
- getFileMd5(file, function (md5) {
- var chunk = that.options.chunking && file.size > that.options.chunkSize ? 1 : 0;
- var params = $(that.element).data("params") || {};
- var category = typeof params.category !== 'undefined' ? params.category : ($(that.element).data("category") || '');
- category = typeof category === 'function' ? category.call(that, file) : category;
- Fast.api.ajax({
- url: "/addons/alioss/index/params",
- data: {method: 'POST', category: category, md5: md5, name: file.name, type: file.type, size: file.size, chunk: chunk, chunksize: that.options.chunkSize, aliosstoken: Config.upload.multipart.aliosstoken},
- }, function (data) {
- file.md5 = md5;
- file.id = data.id;
- file.key = data.key;
- file.date = data.date;
- file.uploadId = data.uploadId;
- file.policy = data.policy;
- file.signature = data.signature;
- file.partsAuthorization = data.partsAuthorization;
- file.params = data;
- file.category = category;
- if (file.status != 'error') {
- //开始上传
- that.enqueueFile(file);
- } else {
- that.removeFile(file);
- }
- return false;
- }, function () {
- that.removeFile(file);
- });
- });
- }, 0);
- });
- if (Config.upload.uploadmode === 'client') {
- var _method = this.options.method;
- var _url = this.options.url;
- this.options.method = function (files) {
- if (files[0].upload.chunked) {
- var chunk = null;
- files[0].upload.chunks.forEach(function (item) {
- if (item.status === 'uploading') {
- chunk = item;
- }
- });
- if (!chunk) {
- return "POST";
- } else {
- return "PUT";
- }
- }
- return _method;
- };
- this.options.url = function (files) {
- if (files[0].upload.chunked) {
- var chunk = null;
- files[0].upload.chunks.forEach(function (item) {
- if (item.status === 'uploading') {
- chunk = item;
- }
- });
- var index = chunk.dataBlock.chunkIndex;
- // debugger;
- this.options.headers = {"Authorization": "OSS " + files[0]['id'] + ":" + files[0]['partsAuthorization'][index], "x-oss-date": files[0]['date']};
- if (!chunk) {
- return Config.upload.uploadurl + "/" + files[0].key + "?uploadId=" + files[0].uploadId;
- } else {
- return Config.upload.uploadurl + "/" + files[0].key + "?partNumber=" + (index + 1) + "&uploadId=" + files[0].uploadId;
- }
- }
- return _url;
- };
- this.on("sending", function (file, xhr, formData) {
- var that = this;
- if (file.upload.chunked) {
- var _send = xhr.send;
- xhr.send = function () {
- var chunk = null;
- file.upload.chunks.forEach(function (item) {
- if (item.status == 'uploading') {
- chunk = item;
- }
- });
- if (chunk) {
- _send.call(xhr, chunk.dataBlock.data);
- }
- };
- }
- });
- }
- };
- });
- }
- window.UMEDITOR_HOME_URL = Config.__CDN__ + "/assets/addons/umeditor/";
- require.config({
- paths: {
- 'umeditor': '../addons/umeditor/umeditor.min',
- 'umeditor.config': '../addons/umeditor/umeditor.config',
- 'umeditor.lang': '../addons/umeditor/lang/zh-cn/zh-cn',
- },
- shim: {
- 'umeditor': {
- deps: [
- 'umeditor.config',
- 'css!../addons/umeditor/themes/default/css/umeditor.min.css'
- ],
- exports: 'UM',
- },
- 'umeditor.lang': ['umeditor']
- }
- });
- require(['form', 'upload'], function (Form, Upload) {
- var getFileFromBase64, uploadFiles;
- uploadFiles = async function (files, callback) {
- var self = this;
- for (var i = 0; i < files.length; i++) {
- try {
- await new Promise(function (resolve) {
- var url, html, file;
- file = files[i];
- Upload.api.send(file, function (data) {
- url = Fast.api.cdnurl(data.url, true);
- if (typeof callback === 'function') {
- callback.call(this, url, data)
- } else {
- if (file.type.indexOf("image") !== -1) {
- self.execCommand('insertImage', {
- src: url,
- title: file.name || "",
- });
- } else {
- self.execCommand('link', {
- href: url,
- title: file.name || "",
- target: '_blank'
- });
- }
- }
- resolve();
- }, function () {
- resolve();
- });
- });
- } catch (e) {
- }
- }
- };
- getFileFromBase64 = function (data, url) {
- var arr = data.split(','), mime = arr[0].match(/:(.*?);/)[1],
- bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n);
- while (n--) {
- u8arr[n] = bstr.charCodeAt(n);
- }
- var filename, suffix;
- if (typeof url != 'undefined') {
- var urlArr = url.split('.');
- filename = url.substr(url.lastIndexOf('/') + 1);
- suffix = urlArr.pop();
- } else {
- filename = Math.random().toString(36).substring(5, 15);
- }
- if (!suffix) {
- suffix = data.substring("data:image/".length, data.indexOf(";base64"));
- }
- var exp = new RegExp("\\." + suffix + "$", "i");
- filename = exp.test(filename) ? filename : filename + "." + suffix;
- var file = new File([u8arr], filename, {type: mime});
- return file;
- };
- //监听上传文本框的事件
- $(document).on("edui.file.change", ".edui-image-file", function (e, up, me, input, callback) {
- uploadFiles.call(me.editor, this.files, function (url, data) {
- me.uploadComplete(JSON.stringify({url: url, state: "SUCCESS"}));
- });
- up.updateInput(input);
- me.toggleMask("上传中....");
- callback && callback();
- });
- var _bindevent = Form.events.bindevent;
- Form.events.bindevent = function (form) {
- _bindevent.apply(this, [form]);
- require(['umeditor', 'umeditor.lang'], function (UME, undefined) {
- //重写编辑器加载
- UME.plugins['autoupload'] = function () {
- var that = this;
- that.addListener('ready', function () {
- if (window.FormData && window.FileReader) {
- that.getOpt('pasteImageEnabled') && that.$body.on('paste', function (event) {
- var originalEvent;
- originalEvent = event.originalEvent;
- if (originalEvent.clipboardData && originalEvent.clipboardData.files.length > 0) {
- uploadFiles.call(that, originalEvent.clipboardData.files);
- return false;
- }
- });
- that.getOpt('dropFileEnabled') && that.$body.on('drop', function (event) {
- var originalEvent;
- originalEvent = event.originalEvent;
- if (originalEvent.dataTransfer && originalEvent.dataTransfer.files.length > 0) {
- uploadFiles.call(that, originalEvent.dataTransfer.files);
- return false;
- }
- });
- //取消拖放图片时出现的文字光标位置提示
- that.$body.on('dragover', function (e) {
- if (e.originalEvent.dataTransfer.types[0] == 'Files') {
- return false;
- }
- });
- }
- });
- };
- $.extend(window.UMEDITOR_CONFIG.whiteList, {
- div: ['style', 'class', 'id', 'data-tpl', 'data-source', 'data-id'],
- span: ['style', 'class', 'id', 'data-id']
- });
- $(Config.umeditor.classname || '.editor', form).each(function () {
- var id = $(this).attr("id");
- $(this).removeClass('form-control');
- var options = $(this).data("umeditor-options");
- UME.list[id] = UME.getEditor(id, $.extend(true, {}, {
- initialFrameWidth: '100%',
- zIndex: 90,
- autoHeightEnabled: true,
- initialFrameHeight: 300,
- xssFilterRules: false,
- outputXssFilter: false,
- inputXssFilter: false,
- autoFloatEnabled: false,
- pasteImageEnabled: true,
- dropFileEnabled: true,
- baiduMapKey: Config.umeditor.baidumapkey || '',
- baiduMapCenter: Config.umeditor.baidumapcenter || '',
- imageUrl: '',
- imagePath: '',
- imageUploadCallback: function (file, fn) {
- var me = this;
- Upload.api.send(file, function (data) {
- var url = data.url;
- fn && fn.call(me, url, data);
- });
- }
- }, options || {}));
- });
- });
- }
- });
- });
|