mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-07 18:28:55 +00:00
62 lines
1.9 KiB
JavaScript
62 lines
1.9 KiB
JavaScript
/*
|
|
* Wazuh app - Fetch png from visualization div
|
|
* Copyright (C) 2018 Wazuh, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Find more information about this on the LICENSE file.
|
|
*/
|
|
import { uiModules } from 'ui/modules'
|
|
import domtoimage from 'dom-to-image'
|
|
|
|
const app = uiModules.get('app/wazuh', []);
|
|
|
|
app.factory('vis2png', function ($rootScope) {
|
|
|
|
let rawArray = [];
|
|
let htmlObject = {};
|
|
let working = false;
|
|
|
|
const checkArray = async visArray => {
|
|
try {
|
|
working = true;
|
|
const len = visArray.length;
|
|
let currentCompleted = 0;
|
|
await Promise.all(visArray.map(async (currentValue, index, array) => {
|
|
const tmpNode = htmlObject[currentValue]
|
|
try {
|
|
const tmpResult = await domtoimage.toPng(tmpNode[0]);
|
|
rawArray.push({element:tmpResult,width:tmpNode.width(),height:tmpNode.height(), id: currentValue});
|
|
} catch (error) {}
|
|
currentCompleted++;
|
|
$rootScope.reportStatus = `Generating report...${Math.round((currentCompleted/len) * 100)}%`
|
|
if(!$rootScope.$$phase) $rootScope.$digest()
|
|
}))
|
|
|
|
working = false;
|
|
$rootScope.reportStatus = `Generating PDF document...`
|
|
return rawArray;
|
|
} catch (error) {
|
|
working = false;
|
|
return Promise.reject(error);
|
|
}
|
|
}
|
|
|
|
const isWorking = () => working;
|
|
const clear = () => {
|
|
rawArray = [];
|
|
htmlObject = {};
|
|
}
|
|
|
|
const assignHTMLItem = (id,content) => htmlObject[id] = content;
|
|
|
|
return {
|
|
checkArray,
|
|
assignHTMLItem,
|
|
isWorking,
|
|
clear
|
|
}
|
|
}); |