1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-06 06:37:33 +02:00
Files
php-adminer/plugins/tables-filter.php
2025-06-18 08:08:54 +02:00

90 lines
2.6 KiB
PHP

<?php
/** Filter names in tables list
* @link https://www.adminer.org/plugins/#use
* @author Jakub Vrana, https://www.vrana.cz/
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerTablesFilter extends Adminer\Plugin {
function tablesPrint($tables) {
?>
<script<?php echo Adminer\nonce(); ?>>
let tablesFilterTimeout = null;
let tablesFilterValue = '';
function tablesFilter() {
const value = qs('#filter-field').value.toLowerCase();
if (value == tablesFilterValue) {
return;
}
tablesFilterValue = value;
let reg;
if (value != '') {
reg = (value + '').replace(/([\\\.\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g, '\\$1');
reg = new RegExp('('+ reg + ')', 'gi');
}
if (sessionStorage) {
sessionStorage.setItem('adminer_tables_filter', value);
}
for (const table of qsa('li', qs('#tables'))) {
let a = null;
let text = table.getAttribute('data-table-name');
if (text == null) {
a = qsa('a', table)[1];
text = a.innerHTML.trim();
table.setAttribute('data-table-name', text);
a.setAttribute('data-link', 'main');
} else {
a = qs('a[data-link="main"]', table);
}
if (value == '') {
table.className = '';
a.innerHTML = text;
} else {
table.className = (text.toLowerCase().indexOf(value) == -1 ? 'hidden' : '');
a.innerHTML = text.replace(reg, '<strong>$1</strong>');
}
}
}
function tablesFilterInput() {
window.clearTimeout(tablesFilterTimeout);
tablesFilterTimeout = window.setTimeout(tablesFilter, 200);
}
sessionStorage && document.addEventListener('DOMContentLoaded', () => {
let db = qs('#dbs').querySelector('select');
db = db.options[db.selectedIndex].text;
if (db == sessionStorage.getItem('adminer_tables_filter_db') && sessionStorage.getItem('adminer_tables_filter')){
qs('#filter-field').value = sessionStorage.getItem('adminer_tables_filter');
tablesFilter();
}
sessionStorage.setItem('adminer_tables_filter_db', db);
});
</script>
<p class="jsonly"><?php echo $this->lang('Filter'); ?>: <input id="filter-field" autocomplete="off" type="search"><?php echo Adminer\script("qs('#filter-field').oninput = tablesFilterInput;"); ?>
<?php
}
protected $translations = array(
'cs' => array(
'' => 'Filtruje názvy v seznamu tabulek',
'Filter' => 'Filtr',
),
'de' => array(
'' => 'Filtern Sie Namen in der Tabellenliste',
),
'pl' => array(
'' => 'Filtruj nazwy na liście tabel',
),
'ro' => array(
'' => 'Nume de filtre în lista de tabele',
),
'ja' => array(
'' => 'テーブル一覧をテーブル名でフィルタリング',
),
);
}