feat: added ability to save qr codes on click
recovery phrase modal ui layout is now the same as edit profile modal, fixes for yarn readypull/2680/head
parent
8202abe12b
commit
e5f1e65194
@ -0,0 +1,29 @@
|
||||
import { saveURLAsFile } from './saveURLAsFile';
|
||||
|
||||
export function saveQRCode(
|
||||
filename: string,
|
||||
width: string,
|
||||
height: string,
|
||||
backgroundColor: string,
|
||||
foregroundColor: string
|
||||
): void {
|
||||
const qrSVG = document.querySelector('.qr-image svg');
|
||||
if (qrSVG) {
|
||||
// tslint:disable-next-line: no-http-string
|
||||
qrSVG.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
|
||||
qrSVG.setAttribute('width', width);
|
||||
qrSVG.setAttribute('height', height);
|
||||
let content = qrSVG.outerHTML;
|
||||
content = content.replaceAll(backgroundColor, 'white');
|
||||
content = content.replaceAll(foregroundColor, 'black');
|
||||
const file = new Blob([content], { type: 'text/plain' });
|
||||
const url = URL.createObjectURL(file);
|
||||
saveURLAsFile({
|
||||
filename: `${filename}-${new Date().toISOString()}.svg`,
|
||||
url,
|
||||
document,
|
||||
});
|
||||
} else {
|
||||
window.log.info('[saveQRCode] QR code not found');
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue