2020-05-04 08:51:12 +00:00
|
|
|
import React from "react";
|
|
|
|
import './Qrcode.css'
|
2020-05-05 16:28:35 +00:00
|
|
|
import {defaultRenderer, rand, randRGB} from "../utils/util";
|
2020-05-04 08:51:12 +00:00
|
|
|
|
|
|
|
function listPoint(props) {
|
|
|
|
if (!props.qrcode) return []
|
|
|
|
|
|
|
|
const qrcode = props.qrcode;
|
|
|
|
const nCount = qrcode.getModuleCount();
|
|
|
|
const pointList = [];
|
|
|
|
let id = 0;
|
|
|
|
|
|
|
|
let randArr = [];
|
|
|
|
for (let row = 0; row < nCount; row++) {
|
|
|
|
for (let col = 0; col < nCount; col++) {
|
|
|
|
randArr.push([row,col]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
randArr.sort(function() {
|
|
|
|
return (0.5-Math.random());
|
|
|
|
})
|
|
|
|
|
|
|
|
for (let i = 0; i < randArr.length; i++) {
|
|
|
|
let row = randArr[i][0];
|
|
|
|
let col = randArr[i][1];
|
2020-05-05 02:33:20 +00:00
|
|
|
if (qrcode.isDark(row, col)) {
|
|
|
|
let tempRand = rand(0.8, 1.3);
|
|
|
|
let randNum = rand(50,230);
|
|
|
|
let tempRGB = [
|
|
|
|
'rgb(' + Math.floor(20 + randNum) + ',' + Math.floor(170 - randNum / 2) + ',' + Math.floor(60 + randNum * 2) + ')',
|
|
|
|
'rgb(' + Math.floor(-20 + randNum) + ',' + Math.floor(130 - randNum / 2) + ',' + Math.floor(20 + randNum * 2) + ')'
|
|
|
|
];
|
|
|
|
let width = 0.15;
|
|
|
|
pointList.push(<rect key={id++} opacity="0.9" fill={tempRGB[1]} width={1 * tempRand + width} height={1 * tempRand + width} x={row - (tempRand - 1)/2} y={col - (tempRand - 1)/2}/>);
|
|
|
|
pointList.push(<rect key={id++} fill={tempRGB[0]} width={1 * tempRand} height={1 * tempRand} x={row - (tempRand - 1)/2} y={col - (tempRand - 1)/2}/>);
|
|
|
|
}
|
2020-05-04 08:51:12 +00:00
|
|
|
}
|
|
|
|
return pointList;
|
|
|
|
}
|
|
|
|
|
|
|
|
class QrRendererRandRect extends React.Component {
|
|
|
|
render() {
|
2020-05-05 16:28:35 +00:00
|
|
|
return defaultRenderer(this.props.qrcode, listPoint(this.props));
|
2020-05-04 08:51:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default QrRendererRandRect
|