widget-code-zb
Version:
中百二维码组件
113 lines (111 loc) • 4.87 kB
JavaScript
import getAPI from '../method/DrawUtil.js';
export default function(context,data,options){
let len = data.length;
let margin = context.canvas.width*0.05;
let pxWidth = (context.canvas.width-2*margin)/len;
let x = margin;
let y = margin;
let api = getAPI(context,data,options);
let resourcesMap = {};
if(options.foregroundImage){
resourcesMap['foregroundImage'] = options.foregroundImage;
}
if(options.backgroundImage){
resourcesMap['backgroundImage'] = options.backgroundImage;
}
if(options.logo){
resourcesMap['logo'] = options.logo;
}
api.imageReady(resourcesMap).then(function(resources){
let backgroundColor = options.backgroundColor||'#ffffff';
let foregroundColor = options.foregroundColor||'#000000';
let colors = foregroundColor.split(',');
let foregroundImage = colors[0];
if(!options.foregroundColor&&resources.foregroundImage){
foregroundImage = api.getImageBrush(resources.foregroundImage);
}
if(colors.length>1){
let gradient = context.createLinearGradient(0,0,context.canvas.width,context.canvas.height);
let length = colors.length-1;
colors.forEach(function(value,index){
gradient.addColorStop(index/length,value);
});
foregroundImage = gradient;
}
let innerColor = options.innerColor||foregroundImage;
let outerColor = options.outerColor||foregroundImage;
let backgroundImage = backgroundColor;
if(!options.backgroundColor&&resources.backgroundImage){
backgroundImage = api.getImageBrush(resources.backgroundImage);
}
context.save();
context.fillStyle = backgroundImage;
context.fillRect(0,0,context.canvas.width,context.canvas.height);
context.restore();
context.save();
context.translate(x,y);
for(let i=0;i<len;i++){
for(let j=0;j<len;j++){
if(api.isPositionPoint(i,j)==1){
context.fillStyle = innerColor;
context.strokeStyle = innerColor;
}else if(api.isPositionPoint(i,j)==2){
context.fillStyle = outerColor;
context.strokeStyle = outerColor;
}else{
context.fillStyle = foregroundImage;
context.strokeStyle = foregroundImage;
}
if (api.getValue(i,j)){
let cx = i * pxWidth;
let cy = j * pxWidth + pxWidth / 2;
context.beginPath();
context.moveTo(cx, cy);
if ((api.getValue(i-1, j) ||api.getValue(i , j-1)) || (api.getValue(i - 1, j - 1))) {
api.drawRightAngle(i, j, 0, pxWidth);
} else {
api.drawRoundBrick(i, j, 0, pxWidth);
}
if ((api.getValue(i, j - 1) || api.getValue(i+1, j)) || (api.getValue(i + 1, j - 1))) {
api.drawRightAngle(i, j, 1, pxWidth);
} else {
api.drawRoundBrick(i, j, 1, pxWidth);
}
if ((api.getValue(i , j + 1) || api.getValue(i + 1, j)) || (api.getValue(i + 1, j + 1))) {
api.drawRightAngle(i, j, 2, pxWidth);
} else {
api.drawRoundBrick(i, j, 2, pxWidth);
}
if ((api.getValue(i, j + 1) || api.getValue(i - 1, j)) || (api.getValue(i - 1, j + 1))) {
api.drawRightAngle(i, j, 3, pxWidth);
} else {
api.drawRoundBrick(i, j, 3, pxWidth);
}
context.closePath();
context.fill();
context.stroke();
}else if(!api.isPositionPoint(i, j, len)){
if (api.getValue(i, j - 1) &&api.getValue(i - 1, j)) {
api.fillRound(i, j, 0, pxWidth);
}
if (api.getValue(i, j + 1) && api.getValue(i - 1, j)) {
api.fillRound(i, j, 3, pxWidth);
}
if (api.getValue(i, j + 1) && api.getValue(i + 1, j)) {
api.fillRound(i, j, 2, pxWidth);
}
if (api.getValue(i, j - 1) && api.getValue(i + 1, j)) {
api.fillRound(i, j, 1, pxWidth);
}
}
}
}
context.restore();
context.save();
api.setText();
if(resources.logo){
api.setLogo(resources.logo);
}
context.restore();
});
};