mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 07:12:26 +02:00
N°1232 Portal: Allow external keys to be opened in object forms (only if user has permissions)
- Created new JS method to handle modals (bootstrap-portal-modal.js > CreatePortalModal) - Moved from global modal hacks to the same file
This commit is contained in:
162
datamodels/2.x/itop-portal-base/portal/public/js/bootstrap-portal-modal.js
vendored
Normal file
162
datamodels/2.x/itop-portal-base/portal/public/js/bootstrap-portal-modal.js
vendored
Normal file
@@ -0,0 +1,162 @@
|
||||
/*
|
||||
* Copyright (C) 2013-2019 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Creates a Bootstrap modal dialog from a base modal element (template or reusable one) and loads the content while displaying a nice loader.
|
||||
*
|
||||
* Technical: We made this to work around the base modal interactions as it was not possible to define a loader, nor to clone the base modal natively.
|
||||
*
|
||||
* @param oOptions
|
||||
* @constructor
|
||||
* @since 2.7.0
|
||||
*/
|
||||
var CreatePortalModal = function (oOptions)
|
||||
{
|
||||
// Set default options
|
||||
oOptions = $.extend(
|
||||
true,
|
||||
{
|
||||
id: null, // ID of the created modal
|
||||
base_modal: {
|
||||
usage: 'clone', // Either 'clone' or 'replace'
|
||||
selector: '#modal-for-all' // Selector of the modal element used to base this one on
|
||||
},
|
||||
content: '', // Either a string or an object containing the endpoint / data
|
||||
size: 'lg', // Either 'xs' / 'sm' / 'md' / 'lg'
|
||||
},
|
||||
oOptions
|
||||
);
|
||||
|
||||
// Get modal element by either
|
||||
var oModalElem = null;
|
||||
// - Create a new modal from template
|
||||
// Note : This could be better if we check for an existing modal first instead of always creating a new one
|
||||
if (oOptions.base_modal.usage === 'clone')
|
||||
{
|
||||
oModalElem = $(oOptions.base_modal.selector).clone();
|
||||
oModalElem.attr('id', oOptions.id)
|
||||
.appendTo('body');
|
||||
}
|
||||
// - Get an existing modal in the DOM
|
||||
else
|
||||
{
|
||||
oModalElem = $(oOptions.base_modal.selector);
|
||||
}
|
||||
|
||||
// Resize to small modal
|
||||
oModalElem.find('.modal-dialog')
|
||||
.removeClass('modal-lg')
|
||||
.addClass('modal-' + oOptions.size);
|
||||
|
||||
// Load content
|
||||
switch (typeof oOptions.content)
|
||||
{
|
||||
case 'string':
|
||||
oModalElem.find('.modal-content').html(oOptions.content);
|
||||
break;
|
||||
|
||||
case 'object':
|
||||
// Put loader while fetching content
|
||||
oModalElem.find('.modal-content').html($('#page_overlay .overlay_content').html());
|
||||
// Fetch content in background
|
||||
oModalElem.find('.modal-content').load(
|
||||
oOptions.content.endpoint,
|
||||
oOptions.content.data || {},
|
||||
function (sResponseText, sStatus)
|
||||
{
|
||||
// Hiding modal in case of error as the general AJAX error handler will display a message
|
||||
if (sStatus === 'error')
|
||||
{
|
||||
oModalElem.modal('hide');
|
||||
}
|
||||
}
|
||||
);
|
||||
break;
|
||||
|
||||
default:
|
||||
if (window.console)
|
||||
{
|
||||
console.log('Could not open modal dialog as the content option was malformed: ', oOptions.content);
|
||||
}
|
||||
}
|
||||
|
||||
// Show modal
|
||||
oModalElem.modal('show');
|
||||
};
|
||||
|
||||
$(document).ready(function()
|
||||
{
|
||||
var oBodyElem = $('body');
|
||||
|
||||
// Hack to enable a same modal to load content from different urls
|
||||
oBodyElem.on('hidden.bs.modal', '.modal#modal-for-all', function ()
|
||||
{
|
||||
$(this).removeData('bs.modal');
|
||||
$(this).find('.modal-content').html(GetContentLoaderTemplate());
|
||||
});
|
||||
|
||||
// Hide tooltips when a modal is opening, otherwise it might be overlapping it
|
||||
oBodyElem.on('show.bs.modal', function ()
|
||||
{
|
||||
$(this).find('.tooltip.in').tooltip('hide');
|
||||
});
|
||||
|
||||
// Display a error message on modal if the content could not be loaded.
|
||||
// Note : As of now, we can't display a more detailled message based on the response because Bootstrap doesn't pass response data with the loaded event.
|
||||
oBodyElem.on('loaded.bs.modal', function (oEvent)
|
||||
{
|
||||
var sModalContent = $(oEvent.target).find('.modal-content').html();
|
||||
|
||||
if ((sModalContent === '') || (sModalContent.replace(/[\n\r\t]+/g, '') === GetContentLoaderTemplate()))
|
||||
{
|
||||
$(oEvent.target).modal('hide');
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Set a listener on the BS modal DATA-API for modals with a custom "itop-portal-modal" toggle.
|
||||
* This allows us to call our custom handler above and still use the lightest way to instantiate modal: Markup only, no JS
|
||||
*/
|
||||
$(document).on('click.bs.modal.data-api', '[data-toggle="itop-portal-modal"]', function (oEvent)
|
||||
{
|
||||
if ($(this).is('a'))
|
||||
{
|
||||
oEvent.preventDefault();
|
||||
}
|
||||
|
||||
// Prepare base options
|
||||
var oOptions = {
|
||||
content: {
|
||||
endpoint: $(this).attr('href')
|
||||
}
|
||||
};
|
||||
|
||||
// Add target modal if necessary
|
||||
if ($(this).attr('data-target') !== undefined)
|
||||
{
|
||||
oOptions.base_modal = {
|
||||
usage: 'clone',
|
||||
selector: $(this).attr('data-target')
|
||||
};
|
||||
}
|
||||
|
||||
CreatePortalModal(oOptions);
|
||||
});
|
||||
});
|
||||
@@ -29,6 +29,7 @@ use CMDBSource;
|
||||
use Combodo\iTop\Form\Field\Field;
|
||||
use Combodo\iTop\Form\Field\FileUploadField;
|
||||
use Combodo\iTop\Form\Field\LabelField;
|
||||
use Combodo\iTop\Form\Field\SelectObjectField;
|
||||
use Combodo\iTop\Form\Form;
|
||||
use Combodo\iTop\Form\FormManager;
|
||||
use Combodo\iTop\Portal\Helper\ApplicationHelper;
|
||||
@@ -826,6 +827,20 @@ class ObjectFormManager extends FormManager
|
||||
else
|
||||
{
|
||||
$oField->SetReadOnly(true);
|
||||
|
||||
// Specific operation on field
|
||||
// - SelectObjectField
|
||||
if ($oField instanceof SelectObjectField)
|
||||
{
|
||||
// - Set if remote object can be accessed
|
||||
if ($this->oContainer !== null && !$oAttDef->IsNull($oField->GetCurrentValue()))
|
||||
{
|
||||
$sRemoteObjectFieldClass = $oField->GetSearch()->GetClass();
|
||||
$sRemoteObjectFieldId = $oField->GetCurrentValue();
|
||||
$bIsRemoteObjectReadAllowed = $this->oContainer->get('security_helper')->IsActionAllowed(UR_ACTION_READ, $sRemoteObjectFieldClass, $sRemoteObjectFieldId);
|
||||
$oField->SetRemoteObjectAccessible($bIsRemoteObjectReadAllowed);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -96,6 +96,7 @@
|
||||
<script type="text/javascript" src="{{ app['combodo.absolute_url'] ~ 'js/c3.min.js'|add_itop_version }}"></script>
|
||||
<script type="text/javascript" src="{{ app['combodo.portal.base.absolute_url'] ~ 'lib/bootstrap/js/bootstrap.min.js'|add_itop_version }}"></script>
|
||||
<script type="text/javascript" src="{{ app['combodo.portal.base.absolute_url'] ~ 'js/bootstrap-patches.js'|add_itop_version }}"></script>
|
||||
<script type="text/javascript" src="{{ app['combodo.portal.base.absolute_url'] ~ 'js/bootstrap-portal-modal.js'|add_itop_version }}"></script>
|
||||
<script type="text/javascript" src="{{ app['combodo.absolute_url'] ~ 'js/latinise/latinise.min.js'|add_itop_version }}"></script>
|
||||
{# Visible.js to check if an element is visible on screen #}
|
||||
<script type="text/javascript" src="{{ app['combodo.portal.base.absolute_url'] ~ 'lib/jquery-visible/js/jquery.visible.min.js'|add_itop_version }}"></script>
|
||||
@@ -455,26 +456,6 @@
|
||||
|
||||
$(document).ready(function(){
|
||||
{% block pPageReadyScripts %}
|
||||
// Hack to enable a same modal to load content from different urls
|
||||
$('body').on('hidden.bs.modal', '.modal#modal-for-all', function () {
|
||||
$(this).removeData('bs.modal');
|
||||
$(this).find('.modal-content').html(GetContentLoaderTemplate());
|
||||
});
|
||||
// Hide tooltips when a modal is opening, otherwise it might be overlapping it
|
||||
$('body').on('show.bs.modal', function () {
|
||||
$(this).find('.tooltip.in').tooltip('hide');
|
||||
});
|
||||
// Display a error message on modal if the content could not be loaded.
|
||||
// Note : As of now, we can't display a more detailled message based on the response because Bootstrap doesn't pass response data with the loaded event.
|
||||
$('body').on('loaded.bs.modal', function (oEvent) {
|
||||
var sModalContent = $(oEvent.target).find('.modal-content').html();
|
||||
|
||||
if( (sModalContent === '') || (sModalContent.replace(/[\n\r\t]+/g, '') === GetContentLoaderTemplate()) )
|
||||
{
|
||||
$(oEvent.target).modal('hide');
|
||||
}
|
||||
});
|
||||
|
||||
// Handle AJAX errors (exceptions (500), logout (401), ...)
|
||||
$(document).ajaxError(function(oEvent, oXHR, oSettings, sError){
|
||||
if(oXHR.status === 401)
|
||||
|
||||
Reference in New Issue
Block a user