|
@@ -2051,7 +2051,562 @@ Object.defineProperty(exports, "__esModule", { value: true });exports.config = v
|
|
// 云图片(产品)
|
|
// 云图片(产品)
|
|
onlineImg: "http://cqth.hw.hongweisoft.com/ht/",
|
|
onlineImg: "http://cqth.hw.hongweisoft.com/ht/",
|
|
// 七牛云
|
|
// 七牛云
|
|
- qny: "http://fqn.hongweisoft.com/cqcarbon/wxapp/" };exports.config = config;
|
|
|
|
|
|
+ qnyImg: "http://fqn.hongweisoft.com/cqcarbon/wxapp/" };exports.config = config;
|
|
|
|
+
|
|
|
|
+/***/ }),
|
|
|
|
+
|
|
|
|
+/***/ 115:
|
|
|
|
+/*!*****************************************************!*\
|
|
|
|
+ !*** D:/wwwroot/cqcarbonwxapp/utils/wxml2canvas.js ***!
|
|
|
|
+ \*****************************************************/
|
|
|
|
+/*! no static exports found */
|
|
|
|
+/***/ (function(module, exports) {
|
|
|
|
+
|
|
|
|
+/* eslint-disable */
|
|
|
|
+var PROPERTIES = ['hover-class', 'hover-start-time', 'space', 'src'];
|
|
|
|
+var COMPUTED_STYLE = [
|
|
|
|
+'color',
|
|
|
|
+'font-size',
|
|
|
|
+'font-weight',
|
|
|
|
+'font-family',
|
|
|
|
+'backgroundColor',
|
|
|
|
+'border',
|
|
|
|
+'border-radius',
|
|
|
|
+'box-sizing',
|
|
|
|
+'line-height'];
|
|
|
|
+
|
|
|
|
+var DEFAULT_BORDER = '0px none rgb(0, 0, 0)';
|
|
|
|
+var DEFAULT_BORDER_RADIUS = '0px';
|
|
|
|
+
|
|
|
|
+// default z-index??
|
|
|
|
+var DEFAULT_RANK = {
|
|
|
|
+ view: 0,
|
|
|
|
+ image: 1,
|
|
|
|
+ text: 2 };
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+var drawWrapper = function drawWrapper(context, data) {var
|
|
|
|
+ backgroundColor = data.backgroundColor,width = data.width,height = data.height;
|
|
|
|
+ context.setFillStyle(backgroundColor);
|
|
|
|
+ context.fillRect(0, 0, width, height);
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+// todo: do more for different language
|
|
|
|
+var strLen = function strLen(str) {
|
|
|
|
+ var count = 0;
|
|
|
|
+ for (var i = 0, len = str.length; i < len; i++) {
|
|
|
|
+ count += str.charCodeAt(i) < 256 ? 1 : 2;
|
|
|
|
+ }
|
|
|
|
+ return count / 2;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var isMuitlpleLine = function isMuitlpleLine(data, text) {var
|
|
|
|
+ letterWidth = data['font-size'],width = data.width;
|
|
|
|
+ var length = strLen(text);
|
|
|
|
+ var rowlineLength = length * parseInt(letterWidth, 10);
|
|
|
|
+ return rowlineLength > width;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var drawMutipleLine = function drawMutipleLine(context, data, text) {var
|
|
|
|
+
|
|
|
|
+ letterWidth =
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ data['font-size'],width = data.width,left = data.left,top = data.top,lineHeightAttr = data['line-height'];
|
|
|
|
+ var lineHieght = lineHeightAttr === 'normal' ? Math.round(1.2 * letterWidth) : lineHeightAttr;
|
|
|
|
+ var rowLetterCount = Math.floor(width / parseInt(letterWidth, 10));
|
|
|
|
+ var length = strLen(text);
|
|
|
|
+ for (var i = 0; i < length; i += rowLetterCount) {
|
|
|
|
+ var lineText = text.substring(i, i + rowLetterCount);
|
|
|
|
+ var rowNumber = Math.floor(i / rowLetterCount);
|
|
|
|
+ var rowTop = top + rowNumber * parseInt(lineHieght, 10);
|
|
|
|
+ context.fillText(lineText, left, rowTop);
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+// enable color, font, for now only support chinese
|
|
|
|
+var drawText = function drawText(context, data) {var
|
|
|
|
+
|
|
|
|
+ text =
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ data.dataset.text,left = data.left,top = data.top,color = data.color,fontWeight = data['font-weight'],fontSize = data['font-size'],fontFamily = data['font-family'];
|
|
|
|
+ var canvasText = Array.isArray(text) ? text[0] : text;
|
|
|
|
+ context.font = "".concat(fontWeight, " ").concat(Math.round(
|
|
|
|
+ parseFloat(fontSize)), "px ").concat(
|
|
|
|
+ fontFamily);
|
|
|
|
+ context.setFillStyle(color);
|
|
|
|
+ if (isMuitlpleLine(data, canvasText)) {
|
|
|
|
+ drawMutipleLine(context, data, canvasText);
|
|
|
|
+ } else {
|
|
|
|
+ context.fillText(canvasText, left, top);
|
|
|
|
+ }
|
|
|
|
+ context.restore();
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var getImgInfo = function getImgInfo(src) {return (
|
|
|
|
+ new Promise(function (resolve, reject) {
|
|
|
|
+ wx.getImageInfo({
|
|
|
|
+ src: src,
|
|
|
|
+ success: function success(res) {
|
|
|
|
+ resolve(res);
|
|
|
|
+ } });
|
|
|
|
+
|
|
|
|
+ }));};
|
|
|
|
+
|
|
|
|
+var hasBorder = function hasBorder(border) {return border !== DEFAULT_BORDER;};
|
|
|
|
+var hasBorderRadius = function hasBorderRadius(borderRadius) {return borderRadius !== DEFAULT_BORDER_RADIUS;};
|
|
|
|
+
|
|
|
|
+var getBorderAttributes = function getBorderAttributes(border) {
|
|
|
|
+ var borderColor, borderStyle;
|
|
|
|
+ var borderWidth = 0;
|
|
|
|
+
|
|
|
|
+ if (hasBorder) {
|
|
|
|
+ borderWidth = parseInt(border.split(/\s/)[0], 10);
|
|
|
|
+ borderStyle = border.split(/\s/)[1];
|
|
|
|
+ borderColor = border.match(/(rgb).*/gi)[0];
|
|
|
|
+ }
|
|
|
|
+ return {
|
|
|
|
+ borderWidth: borderWidth,
|
|
|
|
+ borderStyle: borderStyle,
|
|
|
|
+ borderColor: borderColor };
|
|
|
|
+
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var getImgRect = function getImgRect(imgData, borderWidth) {var
|
|
|
|
+ width = imgData.width,height = imgData.height,left = imgData.left,top = imgData.top;
|
|
|
|
+ var imgWidth = width - 2 * borderWidth;
|
|
|
|
+ var imgHeight = height - 2 * borderWidth;
|
|
|
|
+ var imgLeft = left + borderWidth;
|
|
|
|
+ var imgTop = top + borderWidth;
|
|
|
|
+ return {
|
|
|
|
+ imgWidth: imgWidth,
|
|
|
|
+ imgHeight: imgHeight,
|
|
|
|
+ imgLeft: imgLeft,
|
|
|
|
+ imgTop: imgTop };
|
|
|
|
+
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var getArcCenterPosition = function getArcCenterPosition(imgData) {var
|
|
|
|
+ width = imgData.width,height = imgData.height,left = imgData.left,top = imgData.top;
|
|
|
|
+ var coordX = width / 2 + left;
|
|
|
|
+ var coordY = height / 2 + top;
|
|
|
|
+ return {
|
|
|
|
+ coordX: coordX,
|
|
|
|
+ coordY: coordY };
|
|
|
|
+
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var getArcRadius = function getArcRadius(imgData) {var borderWidth = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;var
|
|
|
|
+ width = imgData.width;
|
|
|
|
+ return width / 2 - borderWidth / 2;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var getCalculatedImagePosition = function getCalculatedImagePosition(imgData, naturalWidth, naturalHeight) {var
|
|
|
|
+ border = imgData.border;var _getBorderAttributes =
|
|
|
|
+ getBorderAttributes(border),borderWidth = _getBorderAttributes.borderWidth;var _getImgRect =
|
|
|
|
+ getImgRect(
|
|
|
|
+ imgData,
|
|
|
|
+ borderWidth),imgWidth = _getImgRect.imgWidth,imgHeight = _getImgRect.imgHeight,imgLeft = _getImgRect.imgLeft,imgTop = _getImgRect.imgTop;
|
|
|
|
+
|
|
|
|
+ var ratio = naturalWidth / naturalHeight;
|
|
|
|
+ // tweak for real width and position => center center
|
|
|
|
+ var realWidth = ratio > 0 ? imgWidth : imgHeight * ratio;
|
|
|
|
+ var realHeight = ratio > 0 ? imgWidth * (1 / ratio) : imgHeight;
|
|
|
|
+ var offsetLeft = ratio > 0 ? 0 : (imgWidth - realWidth) / 2;
|
|
|
|
+ var offsetTop = ratio > 0 ? (imgHeight - realHeight) / 2 : 0;
|
|
|
|
+ return {
|
|
|
|
+ realWidth: realWidth,
|
|
|
|
+ realHeight: realHeight,
|
|
|
|
+ left: imgLeft + offsetLeft,
|
|
|
|
+ top: imgTop + offsetTop };
|
|
|
|
+
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var drawArcImage = function drawArcImage(context, imgData) {var
|
|
|
|
+ src = imgData.src;var _getArcCenterPosition =
|
|
|
|
+ getArcCenterPosition(imgData),coordX = _getArcCenterPosition.coordX,coordY = _getArcCenterPosition.coordY;
|
|
|
|
+ return getImgInfo(src).then(function (res) {var
|
|
|
|
+ naturalWidth = res.width,naturalHeight = res.height;
|
|
|
|
+ var arcRadius = getArcRadius(imgData);
|
|
|
|
+ context.save();
|
|
|
|
+ context.beginPath();
|
|
|
|
+ context.arc(coordX, coordY, arcRadius, 0, 2 * Math.PI);
|
|
|
|
+ context.closePath();
|
|
|
|
+ context.clip();var _getCalculatedImagePo =
|
|
|
|
+ getCalculatedImagePosition(
|
|
|
|
+ imgData,
|
|
|
|
+ naturalWidth,
|
|
|
|
+ naturalHeight),left = _getCalculatedImagePo.left,top = _getCalculatedImagePo.top,realWidth = _getCalculatedImagePo.realWidth,realHeight = _getCalculatedImagePo.realHeight;
|
|
|
|
+
|
|
|
|
+ context.drawImage(
|
|
|
|
+ src,
|
|
|
|
+ 0,
|
|
|
|
+ 0,
|
|
|
|
+ naturalWidth,
|
|
|
|
+ naturalHeight,
|
|
|
|
+ left,
|
|
|
|
+ top,
|
|
|
|
+ realWidth,
|
|
|
|
+ realHeight);
|
|
|
|
+
|
|
|
|
+ context.restore();
|
|
|
|
+ });
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var drawRectImage = function drawRectImage(context, imgData) {var
|
|
|
|
+ src = imgData.src,width = imgData.width,height = imgData.height,left = imgData.left,top = imgData.top;
|
|
|
|
+
|
|
|
|
+ return getImgInfo(src).then(function (res) {var
|
|
|
|
+ naturalWidth = res.width,naturalHeight = res.height;
|
|
|
|
+ context.save();
|
|
|
|
+ context.beginPath();
|
|
|
|
+ context.rect(left, top, width, height);
|
|
|
|
+ context.closePath();
|
|
|
|
+ context.clip();var _getCalculatedImagePo2 =
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ getCalculatedImagePosition(imgData, naturalWidth, naturalHeight),realLeft = _getCalculatedImagePo2.left,realTop = _getCalculatedImagePo2.top,realWidth = _getCalculatedImagePo2.realWidth,realHeight = _getCalculatedImagePo2.realHeight;
|
|
|
|
+ context.drawImage(
|
|
|
|
+ src,
|
|
|
|
+ 0,
|
|
|
|
+ 0,
|
|
|
|
+ naturalWidth,
|
|
|
|
+ naturalHeight,
|
|
|
|
+ realLeft,
|
|
|
|
+ realTop,
|
|
|
|
+ realWidth,
|
|
|
|
+ realHeight);
|
|
|
|
+
|
|
|
|
+ context.restore();
|
|
|
|
+ });
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var drawArcBorder = function drawArcBorder(context, imgData) {var
|
|
|
|
+ border = imgData.border;var _getArcCenterPosition2 =
|
|
|
|
+ getArcCenterPosition(imgData),coordX = _getArcCenterPosition2.coordX,coordY = _getArcCenterPosition2.coordY;var _getBorderAttributes2 =
|
|
|
|
+ getBorderAttributes(border),borderWidth = _getBorderAttributes2.borderWidth,borderColor = _getBorderAttributes2.borderColor;
|
|
|
|
+ var arcRadius = getArcRadius(imgData, borderWidth);
|
|
|
|
+ context.save();
|
|
|
|
+ context.beginPath();
|
|
|
|
+ context.setLineWidth(borderWidth);
|
|
|
|
+ context.setStrokeStyle(borderColor);
|
|
|
|
+ context.arc(coordX, coordY, arcRadius, 0, 2 * Math.PI);
|
|
|
|
+ context.stroke();
|
|
|
|
+ context.restore();
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var drawRectBorder = function drawRectBorder(context, imgData) {var
|
|
|
|
+ border = imgData.border;var
|
|
|
|
+ left = imgData.left,top = imgData.top,width = imgData.width,height = imgData.height;var _getBorderAttributes3 =
|
|
|
|
+ getBorderAttributes(border),borderWidth = _getBorderAttributes3.borderWidth,borderColor = _getBorderAttributes3.borderColor;
|
|
|
|
+
|
|
|
|
+ var correctedBorderWidth = borderWidth + 1; // draw may cause empty 0.5 space
|
|
|
|
+ context.save();
|
|
|
|
+ context.beginPath();
|
|
|
|
+ context.setLineWidth(correctedBorderWidth);
|
|
|
|
+ context.setStrokeStyle(borderColor);
|
|
|
|
+
|
|
|
|
+ context.rect(
|
|
|
|
+ left + borderWidth / 2,
|
|
|
|
+ top + borderWidth / 2,
|
|
|
|
+ width - borderWidth,
|
|
|
|
+ height - borderWidth);
|
|
|
|
+
|
|
|
|
+ context.stroke();
|
|
|
|
+ context.restore();
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+// image, enable border-radius: 50%, border, bgColor
|
|
|
|
+var drawImage = function drawImage(context, imgData) {var
|
|
|
|
+ border = imgData.border,borderRadius = imgData['border-radius'];
|
|
|
|
+ var drawImagePromise;
|
|
|
|
+ if (hasBorderRadius(borderRadius)) {
|
|
|
|
+ drawImagePromise = drawArcImage(context, imgData);
|
|
|
|
+ } else {
|
|
|
|
+ drawImagePromise = drawRectImage(context, imgData);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return drawImagePromise.then(function () {
|
|
|
|
+ if (hasBorder(border)) {
|
|
|
|
+ if (hasBorderRadius(borderRadius)) {
|
|
|
|
+ return drawArcBorder(context, imgData);
|
|
|
|
+ } else {
|
|
|
|
+ return drawRectBorder(context, imgData);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return Promise.resolve();
|
|
|
|
+ });
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+// e.g. 10%, 4px
|
|
|
|
+var getBorderRadius = function getBorderRadius(imgData) {var
|
|
|
|
+ width = imgData.width,height = imgData.height,borderRadiusAttr = imgData['border-radius'];
|
|
|
|
+ var borderRadius = parseInt(borderRadiusAttr, 10);
|
|
|
|
+ if (borderRadiusAttr.indexOf('%') !== -1) {
|
|
|
|
+ var borderRadiusX = parseInt(borderRadius / 100 * width, 10);
|
|
|
|
+ var borderRadiusY = parseInt(borderRadius / 100 * height, 10);
|
|
|
|
+ return {
|
|
|
|
+ isCircle: borderRadiusX === borderRadiusY,
|
|
|
|
+ borderRadius: borderRadiusX,
|
|
|
|
+ borderRadiusX: borderRadiusX,
|
|
|
|
+ borderRadiusY: borderRadiusY };
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ return {
|
|
|
|
+ isCircle: true,
|
|
|
|
+ borderRadius: borderRadius };
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var drawViewArcBorder = function drawViewArcBorder(context, imgData) {var
|
|
|
|
+ width = imgData.width,height = imgData.height,left = imgData.left,top = imgData.top,backgroundColor = imgData.backgroundColor,border = imgData.border;var _getBorderRadius =
|
|
|
|
+ getBorderRadius(imgData),borderRadius = _getBorderRadius.borderRadius;var _getBorderAttributes4 =
|
|
|
|
+ getBorderAttributes(border),borderWidth = _getBorderAttributes4.borderWidth,borderColor = _getBorderAttributes4.borderColor;
|
|
|
|
+ // console.log('🐞-imgData', imgData)
|
|
|
|
+ context.beginPath();
|
|
|
|
+ context.moveTo(left + borderRadius, top);
|
|
|
|
+ context.lineTo(left + width - borderRadius, top);
|
|
|
|
+ context.arcTo(
|
|
|
|
+ left + width,
|
|
|
|
+ top,
|
|
|
|
+ left + width,
|
|
|
|
+ top + borderRadius,
|
|
|
|
+ borderRadius);
|
|
|
|
+
|
|
|
|
+ context.lineTo(left + width, top + height - borderRadius);
|
|
|
|
+ context.arcTo(
|
|
|
|
+ left + width,
|
|
|
|
+ top + height,
|
|
|
|
+ left + width - borderRadius,
|
|
|
|
+ top + height,
|
|
|
|
+ borderRadius);
|
|
|
|
+
|
|
|
|
+ context.lineTo(left + borderRadius, top + height);
|
|
|
|
+ context.arcTo(
|
|
|
|
+ left,
|
|
|
|
+ top + height,
|
|
|
|
+ left,
|
|
|
|
+ top + height - borderRadius,
|
|
|
|
+ borderRadius);
|
|
|
|
+
|
|
|
|
+ context.lineTo(left, top + borderRadius);
|
|
|
|
+ context.arcTo(left, top, left + borderRadius, top, borderRadius);
|
|
|
|
+ context.closePath();
|
|
|
|
+ if (backgroundColor) {
|
|
|
|
+ context.setFillStyle(backgroundColor);
|
|
|
|
+ context.fill();
|
|
|
|
+ }
|
|
|
|
+ if (borderColor && borderWidth) {
|
|
|
|
+ context.setLineWidth(borderWidth);
|
|
|
|
+ context.setStrokeStyle(borderColor);
|
|
|
|
+ context.stroke();
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var drawViewBezierBorder = function drawViewBezierBorder(context, imgData) {var
|
|
|
|
+ width = imgData.width,height = imgData.height,left = imgData.left,top = imgData.top,backgroundColor = imgData.backgroundColor,border = imgData.border;var _getBorderAttributes5 =
|
|
|
|
+ getBorderAttributes(border),borderWidth = _getBorderAttributes5.borderWidth,borderColor = _getBorderAttributes5.borderColor;var _getBorderRadius2 =
|
|
|
|
+ getBorderRadius(imgData),borderRadiusX = _getBorderRadius2.borderRadiusX,borderRadiusY = _getBorderRadius2.borderRadiusY;
|
|
|
|
+ context.beginPath();
|
|
|
|
+ context.moveTo(left + borderRadiusX, top);
|
|
|
|
+ context.lineTo(left + width - borderRadiusX, top);
|
|
|
|
+ context.quadraticCurveTo(left + width, top, left + width, top + borderRadiusY);
|
|
|
|
+ context.lineTo(left + width, top + height - borderRadiusY);
|
|
|
|
+ context.quadraticCurveTo(
|
|
|
|
+ left + width,
|
|
|
|
+ top + height,
|
|
|
|
+ left + width - borderRadiusX,
|
|
|
|
+ top + height);
|
|
|
|
+
|
|
|
|
+ context.lineTo(left + borderRadiusX, top + height);
|
|
|
|
+ context.quadraticCurveTo(
|
|
|
|
+ left,
|
|
|
|
+ top + height,
|
|
|
|
+ left,
|
|
|
|
+ top + height - borderRadiusY);
|
|
|
|
+
|
|
|
|
+ context.lineTo(left, top + borderRadiusY);
|
|
|
|
+ context.quadraticCurveTo(left, top, left + borderRadiusX, top);
|
|
|
|
+ context.closePath();
|
|
|
|
+ if (backgroundColor) {
|
|
|
|
+ context.setFillStyle(backgroundColor);
|
|
|
|
+ context.fill();
|
|
|
|
+ }
|
|
|
|
+ if (borderColor && borderWidth) {
|
|
|
|
+ context.setLineWidth(borderWidth);
|
|
|
|
+ context.setStrokeStyle(borderColor);
|
|
|
|
+ context.stroke();
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+// enable border, border-radius, bgColor, position
|
|
|
|
+var drawView = function drawView(context, imgData) {var _getBorderRadius3 =
|
|
|
|
+ getBorderRadius(imgData),isCircle = _getBorderRadius3.isCircle;
|
|
|
|
+ if (isCircle) {
|
|
|
|
+ drawViewArcBorder(context, imgData);
|
|
|
|
+ } else {
|
|
|
|
+ drawViewBezierBorder(context, imgData);
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var isTextElement = function isTextElement(item) {var
|
|
|
|
+ text = item.dataset.text,type = item.type;
|
|
|
|
+ return Boolean(text) || type === 'text';
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var isImageElement = function isImageElement(item) {var
|
|
|
|
+ src = item.src,type = item.type;
|
|
|
|
+ return Boolean(src) || type === 'image';
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var isViewElement = function isViewElement(item) {var
|
|
|
|
+ type = item.type;
|
|
|
|
+ return type === 'view';
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var formatElementData = function formatElementData(elements) {return (
|
|
|
|
+ elements.map(function (element) {
|
|
|
|
+ if (isTextElement(element)) {
|
|
|
|
+ element.type = 'text';
|
|
|
|
+ element.rank = DEFAULT_RANK.text;
|
|
|
|
+ } else if (isImageElement(element)) {
|
|
|
|
+ element.type = 'image';
|
|
|
|
+ element.rank = DEFAULT_RANK.image;
|
|
|
|
+ } else {
|
|
|
|
+ element.type = 'view';
|
|
|
|
+ element.rank = DEFAULT_RANK.view;
|
|
|
|
+ }
|
|
|
|
+ return element;
|
|
|
|
+ }));};
|
|
|
|
+
|
|
|
|
+// todo: use z-index as order to draw??
|
|
|
|
+var getSortedElementsData = function getSortedElementsData(elements) {return (
|
|
|
|
+ elements.sort(function (a, b) {
|
|
|
|
+ if (a.rank < b.rank) {
|
|
|
|
+ return -1;
|
|
|
|
+ } else if (a.rank > b.rank) {
|
|
|
|
+ return 1;
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+ }));};
|
|
|
|
+
|
|
|
|
+var drawElements = function drawElements(context, storeItems) {
|
|
|
|
+ var itemPromise = [];
|
|
|
|
+ storeItems.forEach(function (item) {
|
|
|
|
+ if (isTextElement(item)) {
|
|
|
|
+ var text = drawText(context, item);
|
|
|
|
+ itemPromise.push(text);
|
|
|
|
+ } else if (isImageElement(item)) {
|
|
|
|
+ var image = drawImage(context, item);
|
|
|
|
+ itemPromise.push(image);
|
|
|
|
+ } else {
|
|
|
|
+ var view = drawView(context, item);
|
|
|
|
+ itemPromise.push(view);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ return itemPromise;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+// storeObject: { 0: [...], 1: [...] }
|
|
|
|
+// chain call promise based on Object key
|
|
|
|
+var drawElementBaseOnIndex = function drawElementBaseOnIndex(context, storeObject) {var key = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;var drawPromise = arguments.length > 3 ? arguments[3] : undefined;
|
|
|
|
+ if (typeof drawPromise === 'undefined') {
|
|
|
|
+ drawPromise = Promise.resolve();
|
|
|
|
+ }
|
|
|
|
+ var objectKey = key; // note: key is changing when execute promise then
|
|
|
|
+ var chainPromise = drawPromise.then(function () {
|
|
|
|
+ var nextPromise = storeObject[objectKey] ?
|
|
|
|
+ Promise.all(drawElements(context, storeObject[objectKey])) :
|
|
|
|
+ Promise.resolve();
|
|
|
|
+ return nextPromise;
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (key >= Object.keys(storeObject).length) {
|
|
|
|
+ return chainPromise;
|
|
|
|
+ } else {
|
|
|
|
+ return drawElementBaseOnIndex(context, storeObject, key + 1, chainPromise);
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var drawCanvas = function drawCanvas(canvasId, wrapperData, innerData) {
|
|
|
|
+ var context = wx.createCanvasContext(canvasId);
|
|
|
|
+ context.setTextBaseline('top');
|
|
|
|
+
|
|
|
|
+ // todo: use this after weixin fix stupid clip can't work bug in fillRect
|
|
|
|
+ // for now, just set canvas background as a compromise
|
|
|
|
+ drawWrapper(context, wrapperData[0]);
|
|
|
|
+
|
|
|
|
+ var storeObject = {};
|
|
|
|
+
|
|
|
|
+ var sortedElementData = getSortedElementsData(formatElementData(innerData)); // fake z-index
|
|
|
|
+
|
|
|
|
+ sortedElementData.forEach(function (item) {
|
|
|
|
+ if (!storeObject[item.rank]) {
|
|
|
|
+ // initialize
|
|
|
|
+ storeObject[item.rank] = [];
|
|
|
|
+ }
|
|
|
|
+ if (isTextElement(item) || isImageElement(item) || isViewElement(item)) {
|
|
|
|
+ storeObject[item.rank].push(item);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ // note: draw is async
|
|
|
|
+ return drawElementBaseOnIndex(context, storeObject).then(
|
|
|
|
+ function () {return (
|
|
|
|
+ new Promise(function (resolve, reject) {
|
|
|
|
+ context.draw(true, function () {
|
|
|
|
+ resolve();
|
|
|
|
+ });
|
|
|
|
+ }));});
|
|
|
|
+
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+var wxSelectorQuery = function wxSelectorQuery(element) {return (
|
|
|
|
+ new Promise(function (resolve, reject) {
|
|
|
|
+ try {
|
|
|
|
+ wx.
|
|
|
|
+ createSelectorQuery().
|
|
|
|
+ selectAll(element).
|
|
|
|
+ fields(
|
|
|
|
+ {
|
|
|
|
+ dataset: true,
|
|
|
|
+ size: true,
|
|
|
|
+ rect: true,
|
|
|
|
+ properties: PROPERTIES,
|
|
|
|
+ computedStyle: COMPUTED_STYLE },
|
|
|
|
+
|
|
|
|
+ function (res) {
|
|
|
|
+ resolve(res);
|
|
|
|
+ }).
|
|
|
|
+
|
|
|
|
+ exec();
|
|
|
|
+ } catch (error) {
|
|
|
|
+ reject(error);
|
|
|
|
+ }
|
|
|
|
+ }));};
|
|
|
|
+
|
|
|
|
+var wxml2canvas = function wxml2canvas(wrapperId, elementsClass, canvasId) {
|
|
|
|
+ var getWrapperElement = wxSelectorQuery(wrapperId);
|
|
|
|
+ var getInnerElements = wxSelectorQuery(elementsClass);
|
|
|
|
+
|
|
|
|
+ return Promise.all([getWrapperElement, getInnerElements]).then(function (data) {
|
|
|
|
+ return drawCanvas(canvasId, data[0], data[1]);
|
|
|
|
+ });
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+// export default wxml2canvas
|
|
|
|
+module.exports = wxml2canvas;
|
|
|
|
|
|
/***/ }),
|
|
/***/ }),
|
|
|
|
|
|
@@ -4146,7 +4701,20 @@ var index = {
|
|
|
|
|
|
/***/ }),
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 169:
|
|
|
|
|
|
+/***/ 17:
|
|
|
|
+/*!**************************************************************************!*\
|
|
|
|
+ !*** D:/wwwroot/cqcarbonwxapp/js_sdk/luch-request/luch-request/index.js ***!
|
|
|
|
+ \**************************************************************************/
|
|
|
|
+/*! no static exports found */
|
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
+
|
|
|
|
+"use strict";
|
|
|
|
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _Request = _interopRequireDefault(__webpack_require__(/*! ./core/Request */ 18));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var _default =
|
|
|
|
+_Request.default;exports.default = _default;
|
|
|
|
+
|
|
|
|
+/***/ }),
|
|
|
|
+
|
|
|
|
+/***/ 177:
|
|
/*!**************************************************************!*\
|
|
/*!**************************************************************!*\
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/uni-popup/popup.js ***!
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/uni-popup/popup.js ***!
|
|
\**************************************************************/
|
|
\**************************************************************/
|
|
@@ -4154,7 +4722,7 @@ var index = {
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
|
|
"use strict";
|
|
"use strict";
|
|
-Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _message = _interopRequireDefault(__webpack_require__(/*! ./message.js */ 170));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}
|
|
|
|
|
|
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _message = _interopRequireDefault(__webpack_require__(/*! ./message.js */ 178));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}
|
|
// 定义 type 类型:弹出类型:top/bottom/center
|
|
// 定义 type 类型:弹出类型:top/bottom/center
|
|
var config = {
|
|
var config = {
|
|
// 顶部弹出
|
|
// 顶部弹出
|
|
@@ -4181,20 +4749,7 @@ var config = {
|
|
|
|
|
|
/***/ }),
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 17:
|
|
|
|
-/*!**************************************************************************!*\
|
|
|
|
- !*** D:/wwwroot/cqcarbonwxapp/js_sdk/luch-request/luch-request/index.js ***!
|
|
|
|
- \**************************************************************************/
|
|
|
|
-/*! no static exports found */
|
|
|
|
-/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
-
|
|
|
|
-"use strict";
|
|
|
|
-Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _Request = _interopRequireDefault(__webpack_require__(/*! ./core/Request */ 18));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var _default =
|
|
|
|
-_Request.default;exports.default = _default;
|
|
|
|
-
|
|
|
|
-/***/ }),
|
|
|
|
-
|
|
|
|
-/***/ 170:
|
|
|
|
|
|
+/***/ 178:
|
|
/*!****************************************************************!*\
|
|
/*!****************************************************************!*\
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/uni-popup/message.js ***!
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/uni-popup/message.js ***!
|
|
\****************************************************************/
|
|
\****************************************************************/
|
|
@@ -4435,7 +4990,7 @@ Request = /*#__PURE__*/function () {
|
|
|
|
|
|
/***/ }),
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 185:
|
|
|
|
|
|
+/***/ 186:
|
|
/*!************************************************************************!*\
|
|
/*!************************************************************************!*\
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/mescroll-uni/mescroll-uni.js ***!
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/mescroll-uni/mescroll-uni.js ***!
|
|
\************************************************************************/
|
|
\************************************************************************/
|
|
@@ -5246,7 +5801,7 @@ MeScroll.prototype.preventDefault = function (e) {
|
|
|
|
|
|
/***/ }),
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 186:
|
|
|
|
|
|
+/***/ 187:
|
|
/*!*******************************************************************************!*\
|
|
/*!*******************************************************************************!*\
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/mescroll-uni/mescroll-uni-option.js ***!
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/mescroll-uni/mescroll-uni-option.js ***!
|
|
\*******************************************************************************/
|
|
\*******************************************************************************/
|
|
@@ -5293,7 +5848,7 @@ GlobalOption;exports.default = _default;
|
|
|
|
|
|
/***/ }),
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 187:
|
|
|
|
|
|
+/***/ 188:
|
|
/*!**********************************************************************!*\
|
|
/*!**********************************************************************!*\
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/mescroll-uni/wxs/mixins.js ***!
|
|
!*** D:/wwwroot/cqcarbonwxapp/components/mescroll-uni/wxs/mixins.js ***!
|
|
\**********************************************************************/
|
|
\**********************************************************************/
|