Plugin AP List: Restructure styles of element to css rules
This commit is contained in:
parent
de284ec883
commit
8bf54a4ae6
@ -51,18 +51,18 @@ window.plugin.apList.handleUpdate = function() {
|
|||||||
window.plugin.apList.updatePortalTable = function(side) {
|
window.plugin.apList.updatePortalTable = function(side) {
|
||||||
var displayEnemy = (plugin.apList.displaySide === window.plugin.apList.SIDE_ENEMY);
|
var displayEnemy = (plugin.apList.displaySide === window.plugin.apList.SIDE_ENEMY);
|
||||||
|
|
||||||
var content = '<table style="width: 100%; table-layout:fixed">';
|
var content = '<table id="ap-list-table">';
|
||||||
for(var i = 0; i < plugin.apList.topMaxCount; i++) {
|
for(var i = 0; i < plugin.apList.topMaxCount; i++) {
|
||||||
var portal = plugin.apList.sortedPortals[side][i];
|
var portal = plugin.apList.sortedPortals[side][i];
|
||||||
content += '<tr>';
|
content += '<tr>';
|
||||||
// Only enemy portal list will display destroy checkbox
|
// Only enemy portal list will display destroy checkbox
|
||||||
if(displayEnemy) {
|
if(displayEnemy) {
|
||||||
content += '<td style="width: 5%; height: 1px">'
|
content += '<td class="ap-list-td-checkbox">'
|
||||||
+ (portal ? plugin.apList.getPortalDestroyCheckbox(portal) : ' ')
|
+ (portal ? plugin.apList.getPortalDestroyCheckbox(portal) : ' ')
|
||||||
+ '</td>';
|
+ '</td>';
|
||||||
}
|
}
|
||||||
content += '<td style="width: ' + (displayEnemy ? '80%' : '85%')
|
content += '<td class="ap-list-td-link ' + (displayEnemy ? 'ap-list-td-link-eny' : 'ap-list-td-link-frd')
|
||||||
+ '; overflow:hidden; white-space:nowrap">'
|
+ '">'
|
||||||
+ (portal ? plugin.apList.getPortalLink(portal) : ' ')
|
+ (portal ? plugin.apList.getPortalLink(portal) : ' ')
|
||||||
+ '</td>'
|
+ '</td>'
|
||||||
+ '<td>'
|
+ '<td>'
|
||||||
@ -76,16 +76,15 @@ window.plugin.apList.updatePortalTable = function(side) {
|
|||||||
|
|
||||||
window.plugin.apList.getPortalDestroyCheckbox = function(portal) {
|
window.plugin.apList.getPortalDestroyCheckbox = function(portal) {
|
||||||
// Change background color to border color if portal selected for destroy
|
// Change background color to border color if portal selected for destroy
|
||||||
var style = 'width: 10px; height: 10px; border: 1px solid rgb(32, 168, 177); margin: 0 auto; '
|
var checkboxClass = plugin.apList.destroyPortalIndex(portal.guid) >= 0
|
||||||
+ (plugin.apList.destroyPortalIndex(portal.guid) >= 0
|
? 'ap-list-checkbox-inner ap-list-checkbox-selected'
|
||||||
? 'background-color: rgb(32, 168, 177);'
|
: 'ap-list-checkbox-inner';
|
||||||
: '');
|
|
||||||
var onClick = 'window.plugin.apList.destroyPortal(\'' + portal.guid + '\');';
|
var onClick = 'window.plugin.apList.destroyPortal(\'' + portal.guid + '\');';
|
||||||
// 3 div for centering checkbox horizontally and vertically,
|
// 3 div for centering checkbox horizontally and vertically,
|
||||||
// click event on outest div for people with not so good aiming
|
// click event on outest div for people with not so good aiming
|
||||||
var div = '<div style="display: table; height: 100%; width: 100%;" onclick="' + onClick + '">'
|
var div = '<div class="ap-list-checkbox-outer" onclick="' + onClick + '">'
|
||||||
+ '<div style="display: table-cell; vertical-align: middle;">'
|
+ '<div class="ap-list-checkbox-mid">'
|
||||||
+ '<div style="' + style + '"/>'
|
+ '<div class="' + checkboxClass + '"/>'
|
||||||
+ '</div>'
|
+ '</div>'
|
||||||
+ '</div>';
|
+ '</div>';
|
||||||
return div;
|
return div;
|
||||||
@ -148,20 +147,20 @@ window.plugin.apList.getPortalLink = function(portal) {
|
|||||||
var jsDoubleClick = 'window.zoomToAndShowPortal(\''+portal.guid+'\', ['+latlng+']);return false';
|
var jsDoubleClick = 'window.zoomToAndShowPortal(\''+portal.guid+'\', ['+latlng+']);return false';
|
||||||
var perma = 'https://ingress.com/intel?latE6='+portal.locationE6.latE6
|
var perma = 'https://ingress.com/intel?latE6='+portal.locationE6.latE6
|
||||||
+'&lngE6='+portal.locationE6.lngE6+'&z=17&pguid='+portal.guid;
|
+'&lngE6='+portal.locationE6.lngE6+'&z=17&pguid='+portal.guid;
|
||||||
var style = plugin.apList.destroyPortalIndex(portal.guid) >= 0
|
|
||||||
? 'font-style:italic'
|
|
||||||
: '';
|
|
||||||
//Use Jquery to create the link, which escape characters in TITLE and ADDRESS of portal
|
//Use Jquery to create the link, which escape characters in TITLE and ADDRESS of portal
|
||||||
var a = $('<a>',{
|
var a = $('<a>',{
|
||||||
"class": 'help',
|
"class": 'help',
|
||||||
style: style,
|
|
||||||
text: portal.portalV2.descriptiveText.TITLE,
|
text: portal.portalV2.descriptiveText.TITLE,
|
||||||
title: portal.portalV2.descriptiveText.ADDRESS,
|
title: portal.portalV2.descriptiveText.ADDRESS,
|
||||||
href: perma,
|
href: perma,
|
||||||
onClick: jsSingleClick,
|
onClick: jsSingleClick,
|
||||||
onDblClick: jsDoubleClick
|
onDblClick: jsDoubleClick
|
||||||
})[0].outerHTML;
|
})[0].outerHTML;
|
||||||
var div = '<div style="white-space: nowrap; overflow: hidden; text-overflow:ellipsis;">'+a+'</div>';
|
|
||||||
|
var divClass = plugin.apList.destroyPortalIndex(portal.guid) >= 0
|
||||||
|
? 'ap-list-link ap-list-link-selected'
|
||||||
|
: 'ap-list-link';
|
||||||
|
var div = '<div class="' + divClass + '">'+a+'</div>';
|
||||||
return div;
|
return div;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -458,17 +457,95 @@ window.plugin.apList.setupVar = function() {
|
|||||||
= "#ap-list-eny";
|
= "#ap-list-eny";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
window.plugin.apList.setupCSS = function() {
|
||||||
|
$("<style>")
|
||||||
|
.prop("type", "text/css")
|
||||||
|
.html("\
|
||||||
|
#ap-list {\
|
||||||
|
color: #ffce00;\
|
||||||
|
font-size: 90%;\
|
||||||
|
padding: 4px 2px;\
|
||||||
|
}\
|
||||||
|
#ap-list-side-labels {\
|
||||||
|
display: inline-block;\
|
||||||
|
width: 90%;\
|
||||||
|
}\
|
||||||
|
#ap-list-eny {\
|
||||||
|
display: inline-block;\
|
||||||
|
text-align: center;\
|
||||||
|
width: 50%;\
|
||||||
|
opacity: 1.0;\
|
||||||
|
}\
|
||||||
|
#ap-list-frd {\
|
||||||
|
display: inline-block;\
|
||||||
|
text-align: center;\
|
||||||
|
width: 50%;\
|
||||||
|
opacity: 0.5;\
|
||||||
|
}\
|
||||||
|
#ap-list-reload {\
|
||||||
|
display: inline-block;\
|
||||||
|
text-align: right;\
|
||||||
|
width: 10%;\
|
||||||
|
}\
|
||||||
|
#ap-list-table {\
|
||||||
|
width: 100%;\
|
||||||
|
table-layout:fixed;\
|
||||||
|
}\
|
||||||
|
.ap-list-td-checkbox {\
|
||||||
|
width: 5%;\
|
||||||
|
height: 1px;\
|
||||||
|
}\
|
||||||
|
.ap-list-td-link {\
|
||||||
|
overflow:hidden;\
|
||||||
|
white-space:nowrap;\
|
||||||
|
}\
|
||||||
|
.ap-list-td-link-eny {\
|
||||||
|
width: 80%;\
|
||||||
|
}\
|
||||||
|
.ap-list-td-link-frd {\
|
||||||
|
width: 85%;\
|
||||||
|
}\
|
||||||
|
.ap-list-checkbox-outer {\
|
||||||
|
display: table;\
|
||||||
|
height: 100%;\
|
||||||
|
width: 100%;\
|
||||||
|
}\
|
||||||
|
.ap-list-checkbox-mid {\
|
||||||
|
display: table-cell;\
|
||||||
|
vertical-align: middle;\
|
||||||
|
}\
|
||||||
|
.ap-list-checkbox-inner {\
|
||||||
|
width: 10px;\
|
||||||
|
height: 10px;\
|
||||||
|
border: 1px solid rgb(32, 168, 177);\
|
||||||
|
margin: 0 auto;\
|
||||||
|
}\
|
||||||
|
.ap-list-checkbox-selected {\
|
||||||
|
background-color: rgb(32, 168, 177);\
|
||||||
|
}\
|
||||||
|
.ap-list-link {\
|
||||||
|
white-space: nowrap;\
|
||||||
|
overflow: hidden;\
|
||||||
|
text-overflow: ellipsis;\
|
||||||
|
}\
|
||||||
|
.ap-list-link-selected {\
|
||||||
|
font-style:italic;\
|
||||||
|
}\
|
||||||
|
")
|
||||||
|
.appendTo("head");
|
||||||
|
}
|
||||||
|
|
||||||
window.plugin.apList.setupList = function() {
|
window.plugin.apList.setupList = function() {
|
||||||
var content = '<div id="ap-list">'
|
var content = '<div id="ap-list">'
|
||||||
+ '<span style="display: inline-block; width: 90%">'
|
+ '<span id="ap-list-side-labels">'
|
||||||
+ '<span id="ap-list-eny" style="display: inline-block; text-align: center; width: 50%; opacity:1.0;">'
|
+ '<span id="ap-list-eny">'
|
||||||
+ '<a href="#" onclick="window.plugin.apList.displayEnemy();return false;">Enemy</a>'
|
+ '<a href="#" onclick="window.plugin.apList.displayEnemy();return false;">Enemy</a>'
|
||||||
+ '</span>'
|
+ '</span>'
|
||||||
+ '<span id="ap-list-frd" style="display: inline-block; text-align: center; width: 50%; opacity:0.5;">'
|
+ '<span id="ap-list-frd">'
|
||||||
+ '<a href="#" onclick="window.plugin.apList.displayFriendly();return false;">Friendly</a>'
|
+ '<a href="#" onclick="window.plugin.apList.displayFriendly();return false;">Friendly</a>'
|
||||||
+ '</span>'
|
+ '</span>'
|
||||||
+ '</span>'
|
+ '</span>'
|
||||||
+ '<span id="ap-list-reload" style="display: inline-block; text-align: right; width: 10%">'
|
+ '<span id="ap-list-reload">'
|
||||||
+ '<a href="#" title="Clear list and reload" onclick="window.plugin.apList.disableCache();'
|
+ '<a href="#" title="Clear list and reload" onclick="window.plugin.apList.disableCache();'
|
||||||
+ 'plugin.apList.hideReloadLabel();return false;">↻ R</a>'
|
+ 'plugin.apList.hideReloadLabel();return false;">↻ R</a>'
|
||||||
+ '</span>'
|
+ '</span>'
|
||||||
@ -477,7 +554,6 @@ window.plugin.apList.setupList = function() {
|
|||||||
|
|
||||||
$('#sidebar').append(content);
|
$('#sidebar').append(content);
|
||||||
$('#ap-list-reload').hide();
|
$('#ap-list-reload').hide();
|
||||||
$('#ap-list').css({'color':'#ffce00', 'font-size':'90%', 'padding':'4px 2px'});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
window.plugin.apList.setupMapEvent = function() {
|
window.plugin.apList.setupMapEvent = function() {
|
||||||
@ -511,6 +587,7 @@ window.plugin.apList.setupMapEvent = function() {
|
|||||||
|
|
||||||
var setup = function() {
|
var setup = function() {
|
||||||
window.plugin.apList.setupVar();
|
window.plugin.apList.setupVar();
|
||||||
|
window.plugin.apList.setupCSS();
|
||||||
window.plugin.apList.setupList();
|
window.plugin.apList.setupList();
|
||||||
window.plugin.apList.setupMapEvent();
|
window.plugin.apList.setupMapEvent();
|
||||||
window.addHook('requestFinished', window.plugin.apList.handleUpdate);
|
window.addHook('requestFinished', window.plugin.apList.handleUpdate);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user