123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- import cloneDeep from 'lodash/cloneDeep';
- import {addErrorMessage} from 'sentry/actionCreators/indicator';
- import {DashboardDetails} from './types';
- const deleteProperties = [
- 'createdBy',
- 'dateCreated',
- 'id',
- 'dashboardId',
- 'widgetId',
- ] as const;
- async function exportDashboard() {
- try {
- const structure = {
- base_url: null,
- dashboard_id: null,
- };
- const params = getAPIParams(structure);
- const apiUrl = `https://${params.base_url}/api/0/organizations/testorg-az/dashboards/${params.dashboard_id}/`;
- const response = await fetch(apiUrl);
- const jsonData = await response.json();
- const normalized = normalizeData(jsonData);
- normalized.projects = [];
- downloadObjectAsJson(normalized, cleanTitle(normalized.title));
- } catch (error) {
- addErrorMessage(
- 'Could not export dashboard. Please wait or try again with a different dashboard'
- );
- }
- }
- function getAPIParams(structure) {
- const url = window.location.href;
- const regex = {
- base_url: /(\/\/)(.*?)(\/)/,
- dashboard_id: /(dashboard\/)(.*?)(\/)/,
- };
- for (const attr in regex) {
- const match = url.match(regex[attr]);
- if (match?.length) {
- structure[attr] = match.length >= 3 ? match[2] : null;
- }
- }
- return structure;
- }
- function normalizeData(
- source: DashboardDetails
- ): Omit<DashboardDetails, (typeof deleteProperties)[number]> {
- const payload: Omit<DashboardDetails, (typeof deleteProperties)[number]> = {
- title: '',
- filters: {},
- projects: [],
- widgets: [],
- environment: [],
- };
- for (const property in payload) {
- if (property in source) {
- let data: any[] = [];
- // if there is a nested object with properties that should be deleted
- if (['widgets'].includes(property)) {
- // get the object properties so that we can loop through them
- const type = getPropertyStructure(property);
- data = normalizeNestedObject(source[property], type);
- } else {
- data = source[property];
- }
- payload[property] = data;
- }
- }
- return payload;
- }
- function normalizeNestedObject(object, structure) {
- const nestedObjectArray: any[] = [];
- for (const index in object) {
- const nestedObject = cloneDeep(structure);
- for (const property in structure) {
- if (property in object[index]) {
- let data: any[] = [];
- if (['queries'].includes(property)) {
- // get the object properties so that we can loop through them
- const type = getPropertyStructure(property);
- data = normalizeNestedObject(object[index][property], type);
- } else {
- data = object[index][property];
- }
- nestedObject[property] = data;
- }
- }
- nestedObjectArray.push(nestedObject);
- }
- return nestedObjectArray;
- }
- function getPropertyStructure(property) {
- let structure = {};
- switch (property) {
- case 'widgets':
- structure = {
- title: '',
- description: '',
- interval: '',
- queries: [],
- displayType: '',
- widgetType: '',
- };
- break;
- case 'queries':
- structure = {
- aggregates: [],
- columns: [],
- conditions: [],
- name: '',
- orderby: '',
- fieldAliases: [],
- fields: [],
- };
- break;
- default:
- structure = {};
- }
- return structure;
- }
- function downloadObjectAsJson(exportObj, exportName) {
- const dataStr = `data:text/json;charset=utf-8,${encodeURIComponent(
- JSON.stringify(exportObj)
- )}`;
- const downloadAnchorNode = document.createElement('a');
- downloadAnchorNode.setAttribute('href', dataStr);
- downloadAnchorNode.setAttribute('download', `${exportName}.json`);
- document.body.appendChild(downloadAnchorNode); // required for firefox
- downloadAnchorNode.click();
- downloadAnchorNode.remove();
- }
- function cleanTitle(title) {
- const regex = /[^a-z0-9]/gi;
- const formattedTitle = title.replace(regex, '-');
- const date = new Date();
- return `${formattedTitle}-${date.toISOString()}`;
- }
- export default exportDashboard;
|