filter test results: remove table bloat

This commit is contained in:
Andrew Dolgov 2018-12-14 17:44:53 +03:00
parent 0efb6e1bc2
commit 8c49689fda
10 changed files with 52 additions and 43 deletions

View File

@ -146,48 +146,16 @@ class Pref_Filters extends Handler_Protected {
$content_preview = $line["content_preview"]; $content_preview = $line["content_preview"];
$tmp = "<tr style='margin-top : 5px'>"; $tmp = "<li><span class='title'>" . $line["title"] . "</span><br/>" .
"<span class='feed'>" . $line['feed_title'] . "</span>, <span class='date'>" . mb_substr($line["date_entered"], 0, 16) . "</span>" .
#$tmp .= "<td width='5%' align='center'><input dojoType=\"dijit.form.CheckBox\" "<div class='preview insensitive'>" . $content_preview . "</div>" .
# checked=\"1\" disabled=\"1\" type=\"checkbox\"></td>"; "</li>";
$id = $line['id'];
$tmp .= "<td width='5%' align='center'><img style='cursor : pointer' title='".__("Preview article")."'
src='images/information.png' onclick='popupOpenArticle($id)'></td><td>";
/*foreach ($filter['rules'] as $rule) {
$reg_exp = str_replace('/', '\/', $rule["reg_exp"]);
$line["title"] = preg_replace("/($reg_exp)/i",
"<span class=\"highlight\">$1</span>", $line["title"]);
$content_preview = preg_replace("/($reg_exp)/i",
"<span class=\"highlight\">$1</span>", $content_preview);
}*/
$tmp .= "<strong>" . $line["title"] . "</strong><br/>";
$tmp .= $line['feed_title'] . ", " . mb_substr($line["date_entered"], 0, 16);
$tmp .= "<div class='insensitive'>" . $content_preview . "</div>";
$tmp .= "</td></tr>";
array_push($rv, $tmp); array_push($rv, $tmp);
/*array_push($rv, array("title" => $line["title"],
"content" => $content_preview,
"date" => $line["date_entered"],
"feed" => $line["feed_title"])); */
} }
} }
//$offset += $limit;
//}
/*if ($found == 0) {
print "<tr><td align='center'>" .
__("No recent articles matching this filter have been found.");
}*/
print json_encode($rv); print json_encode($rv);
} }
@ -199,9 +167,8 @@ class Pref_Filters extends Handler_Protected {
print "<div><img id='prefFilterLoadingIndicator' src='images/indicator_tiny.gif'>&nbsp;<span id='prefFilterProgressMsg'>Looking for articles...</span></div>"; print "<div><img id='prefFilterLoadingIndicator' src='images/indicator_tiny.gif'>&nbsp;<span id='prefFilterProgressMsg'>Looking for articles...</span></div>";
print "<br/><div class='panel panel-scrollable'>"; print "<ul class='panel panel-scrollable list list-unstyled' id='prefFilterTestResultList'>";
print "<table width='100%' id='prefFilterTestResultList'>"; print "</ul>";
print "</table></div>";
print "<div style='text-align : center'>"; print "<div style='text-align : center'>";
print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('filterTestDlg').hide()\">". print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('filterTestDlg').hide()\">".

View File

@ -1042,6 +1042,15 @@ body.ttrss_main ul.list-unstyled {
body.ttrss_main .text-center { body.ttrss_main .text-center {
text-align: center; text-align: center;
} }
body.ttrss_main #prefFilterTestResultList .preview {
margin: 8px;
}
body.ttrss_main #prefFilterTestResultList .title {
font-weight: bold;
}
body.ttrss_main #prefFilterTestResultList .feed {
color: #257aa7;
}
::selection { ::selection {
background: #257aa7; background: #257aa7;
color: #ffffff; color: #ffffff;

File diff suppressed because one or more lines are too long

View File

@ -1246,6 +1246,20 @@ body.ttrss_main {
text-align : center; text-align : center;
} }
#prefFilterTestResultList {
.preview {
margin : 8px;
}
.title {
font-weight: bold;
}
.feed {
color : @color-accent;
}
}
} }
::selection { ::selection {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 594 B

View File

@ -218,7 +218,8 @@ define(["dojo/_base/declare"], function (declare) {
Element.hide("prefFilterLoadingIndicator"); Element.hide("prefFilterLoadingIndicator");
if (test_dlg.results == 0) { if (test_dlg.results == 0) {
$("prefFilterTestResultList").innerHTML = "<tr><td align='center'>No recent articles matching this filter have been found.</td></tr>"; $("prefFilterTestResultList").innerHTML = `<tr><td align='center'>
${__('No recent articles matching this filter have been found.')}</td></tr>`;
$("prefFilterProgressMsg").innerHTML = "Articles matching this filter:"; $("prefFilterProgressMsg").innerHTML = "Articles matching this filter:";
} else { } else {
$("prefFilterProgressMsg").innerHTML = __("Found %d articles matching this filter:") $("prefFilterProgressMsg").innerHTML = __("Found %d articles matching this filter:")

View File

@ -1043,6 +1043,15 @@ body.ttrss_main ul.list-unstyled {
body.ttrss_main .text-center { body.ttrss_main .text-center {
text-align: center; text-align: center;
} }
body.ttrss_main #prefFilterTestResultList .preview {
margin: 8px;
}
body.ttrss_main #prefFilterTestResultList .title {
font-weight: bold;
}
body.ttrss_main #prefFilterTestResultList .feed {
color: #b87d2c;
}
::selection { ::selection {
background: #b87d2c; background: #b87d2c;
color: #333333; color: #333333;

File diff suppressed because one or more lines are too long

View File

@ -1043,6 +1043,15 @@ body.ttrss_main ul.list-unstyled {
body.ttrss_main .text-center { body.ttrss_main .text-center {
text-align: center; text-align: center;
} }
body.ttrss_main #prefFilterTestResultList .preview {
margin: 8px;
}
body.ttrss_main #prefFilterTestResultList .title {
font-weight: bold;
}
body.ttrss_main #prefFilterTestResultList .feed {
color: #257aa7;
}
::selection { ::selection {
background: #257aa7; background: #257aa7;
color: #333333; color: #333333;

File diff suppressed because one or more lines are too long