Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Separate callModal from dag.js #28410

Merged
merged 1 commit into from
Dec 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
353 changes: 353 additions & 0 deletions airflow/www/static/js/callModal.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,353 @@
/*!
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

/* global document, window, $ */

import { getMetaValue } from './utils';
import { formatDateTime } from './datetime_utils';

function updateQueryStringParameter(uri, key, value) {
const re = new RegExp(`([?&])${key}=.*?(&|$)`, 'i');
const separator = uri.indexOf('?') !== -1 ? '&' : '?';
if (uri.match(re)) {
return uri.replace(re, `$1${key}=${value}$2`);
}

return `${uri}${separator}${key}=${value}`;
}

const dagId = getMetaValue('dag_id');
const logsWithMetadataUrl = getMetaValue('logs_with_metadata_url');
const externalLogUrl = getMetaValue('external_log_url');
const extraLinksUrl = getMetaValue('extra_links_url');
const showExternalLogRedirect = getMetaValue('show_external_log_redirect') === 'True';

const buttons = Array.from(document.querySelectorAll('a[id^="btn_"][data-base-url]')).reduce((obj, elm) => {
obj[elm.id.replace('btn_', '')] = elm;
return obj;
}, {});

function updateButtonUrl(elm, params) {
let url = elm.dataset.baseUrl;
if (params.dag_id && elm.dataset.baseUrl.indexOf(dagId) !== -1) {
url = url.replace(dagId, params.dag_id);
delete params.dag_id;
}
if (Object.prototype.hasOwnProperty.call(params, 'map_index') && params.map_index === undefined) {
delete params.map_index;
}
elm.setAttribute('href', `${url}?${$.param(params)}`);
}

function updateModalUrls({
executionDate,
subDagId,
taskId,
mapIndex,
dagRunId,
}) {
updateButtonUrl(buttons.subdag, {
dag_id: subDagId,
execution_date: executionDate,
});

updateButtonUrl(buttons.task, {
dag_id: dagId,
task_id: taskId,
execution_date: executionDate,
map_index: mapIndex,
});

updateButtonUrl(buttons.rendered, {
dag_id: dagId,
task_id: taskId,
execution_date: executionDate,
map_index: mapIndex,
});

updateButtonUrl(buttons.mapped, {
_flt_3_dag_id: dagId,
_flt_3_task_id: taskId,
_flt_3_run_id: dagRunId,
_oc_TaskInstanceModelView: 'map_index',
});

if (buttons.rendered_k8s) {
updateButtonUrl(buttons.rendered_k8s, {
dag_id: dagId,
task_id: taskId,
execution_date: executionDate,
map_index: mapIndex,
});
}

const tiButtonParams = {
_flt_3_dag_id: dagId,
_flt_3_task_id: taskId,
_oc_TaskInstanceModelView: 'dag_run.execution_date',
};
// eslint-disable-next-line no-underscore-dangle
if (mapIndex >= 0) tiButtonParams._flt_0_map_index = mapIndex;
updateButtonUrl(buttons.ti, tiButtonParams);

updateButtonUrl(buttons.log, {
dag_id: dagId,
task_id: taskId,
execution_date: executionDate,
map_index: mapIndex,
});

updateButtonUrl(buttons.xcom, {
dag_id: dagId,
task_id: taskId,
execution_date: executionDate,
map_index: mapIndex,
});
}

function callModal({
taskId,
executionDate,
extraLinks,
tryNumber,
isSubDag,
dagRunId,
mapIndex = -1,
isMapped = false,
mappedStates = [],
}) {
// Turn off previous event listeners
$('.map_index_item').off('click');
$('form[data-action]').off('submit');

const location = String(window.location);
$('#btn_filter').on('click', () => {
window.location = updateQueryStringParameter(location, 'root', taskId);
});
$('#dag_run_id').text(dagRunId);
$('#task_id').text(taskId);
$('#execution_date').text(formatDateTime(executionDate));
$('#taskInstanceModal').modal({});
$('#taskInstanceModal').css('margin-top', '0');
$('#extra_links').prev('hr').hide();
$('#extra_links').empty().hide();
if (mapIndex >= 0) {
$('#modal_map_index').show();
$('#modal_map_index .value').text(mapIndex);
} else {
$('#modal_map_index').hide();
$('#modal_map_index .value').text('');
}

let subDagId;
if (isSubDag) {
$('#div_btn_subdag').show();
subDagId = `${dagId}.${taskId}`;
} else {
$('#div_btn_subdag').hide();
}

// Show a span or dropdown for mapIndex
if (mapIndex >= 0 && !mappedStates.length) {
$('#modal_map_index').show();
$('#modal_map_index .value').text(mapIndex);
$('#mapped_dropdown').hide();
} else if (mapIndex >= 0 || isMapped) {
$('#modal_map_index').show();
$('#modal_map_index .value').text('');
$('#mapped_dropdown').show();

const dropdownText = mapIndex > -1
? mapIndex
: `All ${mappedStates.length} Mapped Instances`;
$('#mapped_dropdown #dropdown-label').text(dropdownText);
$('#mapped_dropdown .dropdown-menu').empty();
$('#mapped_dropdown .dropdown-menu')
.append(`<li><a href="#" class="map_index_item" data-mapIndex="all">All ${mappedStates.length} Mapped Instances</a></li>`);
mappedStates.forEach((state, i) => {
$('#mapped_dropdown .dropdown-menu')
.append(`<li><a href="#" class="map_index_item" data-mapIndex="${i}">${i} - ${state}</a></li>`);
});
} else {
$('#modal_map_index').hide();
$('#modal_map_index .value').text('');
$('#mapped_dropdown').hide();
}

if (isMapped) {
$('#task_actions').text(`Task Actions for all ${mappedStates.length} instances`);
$('#btn_mapped').show();
$('#mapped_dropdown').css('display', 'inline-block');
$('#btn_rendered').hide();
$('#btn_xcom').hide();
$('#btn_log').hide();
$('#btn_task').hide();
} else {
$('#task_actions').text('Task Actions');
$('#btn_rendered').show();
$('#btn_xcom').show();
$('#btn_log').show();
$('#btn_mapped').hide();
$('#btn_task').show();
}

$('#dag_dl_logs').hide();
$('#dag_redir_logs').hide();
if (tryNumber > 0 && !isMapped) {
$('#dag_dl_logs').show();
if (showExternalLogRedirect) {
$('#dag_redir_logs').show();
}
}

updateModalUrls({
executionDate,
subDagId,
taskId,
mapIndex,
dagRunId,
});

$('#try_index > li').remove();
$('#redir_log_try_index > li').remove();
const startIndex = (tryNumber > 2 ? 0 : 1);

const query = new URLSearchParams({
dag_id: dagId,
task_id: taskId,
execution_date: executionDate,
metadata: 'null',
});
if (mapIndex !== undefined) {
query.set('map_index', mapIndex);
}
for (let index = startIndex; index < tryNumber; index += 1) {
let showLabel = index;
if (index !== 0) {
query.set('try_number', index);
} else {
showLabel = 'All';
}

$('#try_index').append(`<li role="presentation" style="display:inline">
<a href="${logsWithMetadataUrl}?${query}&format=file"> ${showLabel} </a>
</li>`);

if (index !== 0 || showExternalLogRedirect) {
$('#redir_log_try_index').append(`<li role="presentation" style="display:inline">
<a href="${externalLogUrl}?${query}"> ${showLabel} </a>
</li>`);
}
}
query.delete('try_number');

if (!isMapped && extraLinks && extraLinks.length > 0) {
const markupArr = [];
extraLinks.sort();
$.each(extraLinks, (i, link) => {
query.set('link_name', link);
const externalLink = $('<a href="#" class="btn btn-primary disabled"></a>');
const linkTooltip = $('<span class="tool-tip" data-toggle="tooltip" style="padding-right: 2px; padding-left: 3px" data-placement="top" '
+ 'title="link not yet available"></span>');
linkTooltip.append(externalLink);
externalLink.text(link);

$.ajax(
{
url: `${extraLinksUrl}?${query}`,
cache: false,
success(data) {
externalLink.attr('href', data.url);
// open absolute (external) links in a new tab/window and relative (local) links
// directly
if (/^(?:[a-z]+:)?\/\//.test(data.url)) {
externalLink.attr('target', '_blank');
}
externalLink.removeClass('disabled');
linkTooltip.tooltip('disable');
},
error(data) {
linkTooltip.tooltip('hide').attr('title', data.responseJSON.error).tooltip('fixTitle');
},
},
);

markupArr.push(linkTooltip);
});

const extraLinksSpan = $('#extra_links');
extraLinksSpan.prev('hr').show();
extraLinksSpan.append(markupArr).show();
extraLinksSpan.find('[data-toggle="tooltip"]').tooltip();
}

// Switch the modal from a mapped task summary to a specific mapped task instance
function switchMapItem() {
const mi = $(this).attr('data-mapIndex');
if (mi === 'all') {
callModal({
taskId,
executionDate,
dagRunId,
extraLinks,
mapIndex: -1,
isMapped: true,
mappedStates,
});
} else {
callModal({
taskId,
executionDate,
dagRunId,
extraLinks,
mapIndex: mi,
});
}
}

// Task Instance Modal actions
function submit(e) {
e.preventDefault();
const form = $(this).get(0);
if (dagRunId || executionDate) {
if (form.dag_run_id) {
form.dag_run_id.value = dagRunId;
}
if (form.execution_date) {
form.execution_date.value = executionDate;
}
form.origin.value = window.location;
if (form.task_id) {
form.task_id.value = taskId;
}
if (form.map_index && mapIndex >= 0) {
form.map_index.value = mapIndex;
} else if (form.map_index) {
form.map_index.remove();
}
form.action = $(this).data('action');
form.submit();
}
}

$('form[data-action]').on('submit', submit);
$('.map_index_item').on('click', switchMapItem);
}

export default callModal;
Loading