1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | /* eslint camel-case: 0 */ import $ from 'jquery'; import Mustache from 'mustache'; import vizMap from '../../visualizations/main'; import { getExploreUrl } from '../explorev2/exploreUtils'; import { applyDefaultFormData } from '../explorev2/stores/store'; const utils = require('./utils'); /* 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('<i class="fa fa-star"></i>'); } else { $(this).html('<i class="fa fa-star-o"></i>'); } } $('.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, datasource, controller) { 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); slice = { data, formData, container, containerId, datasource, 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 let format = '.3s'; if (this.datasource.column_formats[col]) { format = this.datasource.column_formats[col]; } return utils.d3format(format, number); }, /* eslint no-shadow: 0 */ always(data) { if (data && data.query) { slice.viewSqlQuery = data.query; } }, done(payload) { Object.assign(data, payload); token.find('img.loading').hide(); container.fadeTo(0.5, 1); container.show(); $('.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; if (status === 0) { // This may happen when the worker in gunicorn times out msg += ( 'The server could not be reached. You may want to ' + 'verify your connection and try again.'); } else { msg += 'An unknown error occurred. (Status: ' + status + ')'; } } 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 } if (errorMsg) { errHtml += `<div class="alert alert-danger">${errorMsg}</div>`; } if (xhr) { const extendedMsg = this.getErrorMsg(xhr); if (extendedMsg) { errHtml += `<div class="alert alert-danger">${extendedMsg}</div>`; } } container.html(errHtml); container.show(); $('span.query').removeClass('disabled'); $('.query-and-save button').removeAttr('disabled'); this.always(o); controller.error(this); }, clearError() { $(selector + ' div.alert').remove(); }, width() { return token.width(); }, height() { let others = 0; const widget = container.parents('.widget'); const sliceDescription = widget.find('.slice_description'); if (sliceDescription.is(':visible')) { others += widget.find('.slice_description').height() + 25; } others += widget.find('.chart-header').height(); return widget.height() - others - 10; }, bindResizeToWindowResize() { let resizeTimer; const slice = this; $(window).on('resize', function () { clearTimeout(resizeTimer); resizeTimer = setTimeout(function () { slice.resize(); }, 500); }); }, render(force) { if (force === undefined) { this.force = false; } else { this.force = force; } token.find('img.loading').show(); container.fadeTo(0.5, 0.25); container.css('height', this.height()); $.getJSON(this.jsonEndpoint(), (queryResponse) => { try { vizMap[formData.viz_type](this, queryResponse); this.done(queryResponse); } catch (e) { this.error('An error occurred while rendering the visualization: ' + e); } }).fail((err) => { this.error(err.responseText, err); }); }, resize() { this.render(); }, addFilter(col, vals, merge = true, refresh = true) { controller.addFilter(sliceId, col, vals, merge, refresh); }, setFilter(col, vals, refresh = true) { controller.setFilter(sliceId, col, vals, refresh); }, getFilters() { return controller.filters[sliceId]; }, clearFilter() { controller.clearFilter(sliceId); }, removeFilter(col, vals) { controller.removeFilter(sliceId, col, vals); }, }; return slice; }; // Export public functions return { getParam, initFavStars, Slice, }; }(); module.exports = px; |