import $ from 'jquery'; const Mustache = require('mustache'); const utils = require('./utils'); // vis sources /* eslint camel-case: 0 */ import vizMap from '../../visualizations/main.js'; import { getExploreUrl } from '../explorev2/exploreUtils'; import { applyDefaultFormData } from '../explorev2/stores/store'; /* eslint wrap-iife: 0*/ const px = function () { let slice; function getParam(name) { /* eslint no-useless-escape: 0 */ const formattedName = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]'); const regex = new RegExp('[\\?&]' + formattedName + '=([^]*)'); const results = regex.exec(location.search); return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' ')); } function initFavStars() { const baseUrl = '/superset/favstar/'; // Init star behavihor for favorite function show() { if ($(this).hasClass('selected')) { $(this).html(''); } else { $(this).html(''); } } $('.favstar') .attr('title', 'Click to favorite/unfavorite') .css('cursor', 'pointer') .each(show) .each(function () { let url = baseUrl + $(this).attr('class_name'); const star = this; url += '/' + $(this).attr('obj_id') + '/'; $.getJSON(url + 'count/', function (data) { if (data.count > 0) { $(star).addClass('selected').each(show); } }); }) .click(function () { $(this).toggleClass('selected'); let url = baseUrl + $(this).attr('class_name'); url += '/' + $(this).attr('obj_id') + '/'; if ($(this).hasClass('selected')) { url += 'select/'; } else { url += 'unselect/'; } $.get(url); $(this).each(show); }) .tooltip(); } const Slice = function (data, controller) { let timer; const token = $('#token_' + data.slice_id); const containerId = 'con_' + data.slice_id; const selector = '#' + containerId; const container = $(selector); const sliceId = data.slice_id; const formData = applyDefaultFormData(data.form_data); let dttm = 0; const stopwatch = function () { dttm += 10; const num = dttm / 1000; $('#timer').text(num.toFixed(2) + ' sec'); }; slice = { data, formData, container, containerId, selector, getWidgetHeader() { return this.container.parents('div.widget').find('.chart-header'); }, render_template(s) { const context = { width: this.width, height: this.height, }; return Mustache.render(s, context); }, jsonEndpoint() { return this.endpoint('json'); }, endpoint(endpointType = 'json') { const formDataExtra = Object.assign({}, formData); const flts = controller.effectiveExtraFilters(sliceId); if (flts) { formDataExtra.extra_filters = flts; } let endpoint = getExploreUrl(formDataExtra, endpointType, this.force); if (endpoint.charAt(0) !== '/') { // Known issue for IE <= 11: // https://connect.microsoft.com/IE/feedbackdetail/view/1002846/pathname-incorrect-for-out-of-document-elements endpoint = '/' + endpoint; } return endpoint; }, d3format(col, number) { // uses the utils memoized d3format function and formats based on // column level defined preferences if (data.column_formats) { const format = data.column_formats[col]; return utils.d3format(format, number); } return utils.d3format('.3s', number); }, /* eslint no-shadow: 0 */ always(data) { clearInterval(timer); $('#timer').removeClass('btn-warning'); if (data && data.query) { slice.viewSqlQuery = data.query; } }, done(payload) { Object.assign(data, payload); clearInterval(timer); token.find('img.loading').hide(); container.fadeTo(0.5, 1); container.show(); $('#timer').addClass('label-success'); $('#timer').removeClass('label-warning label-danger'); $('.query-and-save button').removeAttr('disabled'); this.always(data); controller.done(this); }, getErrorMsg(xhr) { if (xhr.statusText === 'timeout') { return 'The request timed out'; } let msg = ''; if (!xhr.responseText) { const status = xhr.status; msg += 'An unknown error occurred. (Status: ' + status + ')'; if (status === 0) { // This may happen when the worker in gunicorn times out msg += ' Maybe the request timed out?'; } } return msg; }, error(msg, xhr) { let errorMsg = msg; token.find('img.loading').hide(); container.fadeTo(0.5, 1); let errHtml = ''; let o; try { o = JSON.parse(msg); if (o.error) { errorMsg = o.error; } } catch (e) { // pass } errHtml = `