mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 14:54:24 +02:00
ellipsisText: Implement ellipsis component for text content
Use by comment overview. refs #4714
This commit is contained in:
parent
1eef471bc2
commit
d109f370cd
@ -86,7 +86,9 @@ $viewHelper = $this->getHelper('MonitoringState');
|
|||||||
<?= $comment->comment_author; ?>
|
<?= $comment->comment_author; ?>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
<span data-icinga-component="app/ellipsisText">
|
||||||
<?= $comment->comment_data; ?>
|
<?= $comment->comment_data; ?>
|
||||||
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<?= ($comment->comment_is_persistent === '1') ? 'Yes' : 'No'; ?>
|
<?= ($comment->comment_is_persistent === '1') ? 'Yes' : 'No'; ?>
|
||||||
@ -99,7 +101,7 @@ $viewHelper = $this->getHelper('MonitoringState');
|
|||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
COMMAND!!!DELETE_COMMENT
|
{{{REMOVE_ICON}}}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
99
public/js/icinga/components/ellipsisText.js
Normal file
99
public/js/icinga/components/ellipsisText.js
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
/*global Icinga:false, Modernizr: false, document: false, History: false, define:false require:false base_url:false console:false */
|
||||||
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
/**
|
||||||
|
* This file is part of Icinga 2 Web.
|
||||||
|
*
|
||||||
|
* Icinga 2 Web - Head for multiple monitoring backends.
|
||||||
|
* Copyright (C) 2013 Icinga Development Team
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
*
|
||||||
|
* @copyright 2013 Icinga Development Team <info@icinga.org>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2
|
||||||
|
* @author Icinga Development Team <info@icinga.org>
|
||||||
|
*/
|
||||||
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Icinga app/ellipsisText component
|
||||||
|
*
|
||||||
|
* This component adds ellipsis with expand functionality
|
||||||
|
* to content.
|
||||||
|
*
|
||||||
|
* Example:
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <code>
|
||||||
|
* <span data-icinga-component="app/ellipsisText">
|
||||||
|
* A very long example text
|
||||||
|
* </span>
|
||||||
|
* </code>
|
||||||
|
* </pre>
|
||||||
|
*/
|
||||||
|
define(['jquery'],
|
||||||
|
function($, logger, componentLoader, URI) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test if a css3 ellipsis is avtive
|
||||||
|
*
|
||||||
|
* @param {Element} element
|
||||||
|
* @returns {boolean}
|
||||||
|
*/
|
||||||
|
var activeEllipsis = function(element) {
|
||||||
|
return (element.offsetWidth < element.scrollWidth);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add classes to element to create a css3 ellipsis
|
||||||
|
*
|
||||||
|
* Parent elements width is used to calculate containing width
|
||||||
|
* and set target element width to a fixed one.
|
||||||
|
*
|
||||||
|
* @param {Element} target
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
|
var EllipsisText = function(target) {
|
||||||
|
var parentWidth = $(target).parent().width();
|
||||||
|
|
||||||
|
$(target).width(parentWidth)
|
||||||
|
.css('overflow', 'hidden')
|
||||||
|
.css('text-overflow', 'ellipsis')
|
||||||
|
.css('display', 'block')
|
||||||
|
.css('white-space', 'nowrap');
|
||||||
|
|
||||||
|
if (activeEllipsis(target)) {
|
||||||
|
$(target).wrap('<a></a>')
|
||||||
|
.css('cursor', 'pointer');
|
||||||
|
|
||||||
|
$(target).parent()
|
||||||
|
.attr('data-icinga-ellipsistext', 'true')
|
||||||
|
.attr('data-content', $(target).html())
|
||||||
|
.popover({
|
||||||
|
trigger : 'manual',
|
||||||
|
html : true,
|
||||||
|
placement : 'auto'
|
||||||
|
})
|
||||||
|
.click(function(e) {
|
||||||
|
e.stopImmediatePropagation();
|
||||||
|
$('a[data-icinga-ellipsistext=\'true\']').popover('hide');
|
||||||
|
$(e.currentTarget).popover('toggle');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return EllipsisText;
|
||||||
|
}
|
||||||
|
);
|
Loading…
x
Reference in New Issue
Block a user