Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
structured-filter-ru
Advanced tools
Generic Web UI for building structured search or filter queries. With it you can build structured search conditions like Firstname starts with 'A' and Birthday after 1/1/1990 and State in (CA, NY, FL)...
Structured-Filter (текущая версия v2.0) - это веб интерфейс для построения структурированных поисковых запросов. С его помощью вы можете создавать структурированные условия поиска, такие как: Имя начинается на 'А' и День рождения после 01.01.1990 и т.д.
Посмотреть демо.
Вы можете загрузить или сделать форк structured-filter на GitHub.
# Для получения текущий версии из git.
git clone https://github.com/LightAir/structured-filter-ru
Или npm пакет:
# Для получения текущей версии из npm.
npm install structured-filter
Или через Bower:
# Для получения текущей версии из Bower.
bower install structured-filter-ru
# Для получения самой последней версии из Bower:
bower install structured-filter#master
Примечание: Версия jQuery-UI должна быть выше 1.12.1
Сначала загрузите jQuery, jQuery UI, и плагины:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/structured-filter.js" type="text/javascript" charset="utf-8"></script>
Виджет требует наличия темы пользовательского интерфейса jQuery, а также собственного встроенного базового файла CSS (structured-filter.css). Здесь мы используем тему «ui-lightness» в качестве примера:
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/ui-lightness/jquery-ui.css">
<link href="css/structured-filter.css" rel="stylesheet" type="text/css">
Теперь давайте прикрепим фильтр к существующему тегу <div>
:
<script type="text/javascript">
$(document).ready(function() {
$("#myFilter").structFilter({
fields: [
{id:"lastname", type:"text", label:"Lastname"},
{id:"firstname", type:"text", label:"Firstname"},
{id:"active", type:"boolean", label:"Is active"},
{id:"age", type:"number", label:"Age"},
{id:"bday", type:"date", label:"Birthday"},
{id:"category", type:"list", label:"Category",
list:[
{id:"1", label:"Family"},
{id:"2", label:"Friends"},
{id:"3", label:"Business"},
{id:"4", label:"Acquaintances"},
{id:"5", label:"Other"}
]
}
]
});
});
</script>
<div id="myFilter"></div>
Это заменит тег на виджет.
Виджет настроен со списком полей для использования в условиях поиска.
Каждое поле должно иметь идентификатор, тип и метку.
Поля типа «list» также должны иметь свойство «list» для значений (массив объектов с идентификатором и меткой).
Пример:
fields = [
{id:"lastname", type:"text", label:"Lastname"},
{id:"firstname", type:"text", label:"Firstname"},
{id:"active", type:"boolean", label:"Is active"},
{id:"age", type:"number", label:"Age"},
{id:"bday", type:"date", label:"Birthday"},
{id:"category", type:"list", label:"Category",
list:[
{id:"1", label:"Family"},
{id:"2", label:"Friends"},
...
]
}
];
Примечание. Чтобы изменить поведение поля «список», используйте вместо него «list-options» и «list-dropdown» вместо «list».
Запросы выражаются как набор условий.
Каждое условие определяется:
Для каждого поля возможные операторы определяются его типом.
boolean:
date:
list:
number:
text:
time:
structured-filter предоставляет несколько параметров для настройки его поведения::
Метки кнопок, используемые для управления фильтрами. Эти параметры применяются к кнопкам 3, «Новый фильтр», «Добавить фильтр» / «Фильтр обновления» и «Отмена», которые используют значки, если для параметра установлено значение «ложь».
$("#myFilter").structFilter({
buttonLabels: true
});
По умолчанию false.
Формат даты
$("#myFilter").structFilter({
dateFormat: "d M, y"
});
По умолчанию "dd.mm.yyyy".
Список полей (как массив объектов с идентификатором, меткой и типом) для участия в определении запроса. Возможные типы: text, boolean, number, date, time и list.
$("#myFilter").structFilter({
fields: [
{id:"lastname", type:"text", label:"Lastname"},
{id:"firstname", type:"text", label:"Firstname"},
{id:"active", type:"boolean", label:"Is active"},
{id:"age", type:"number", label:"Age"},
{id:"bday", type:"date", label:"Birthday"},
{id:"category", type:"list", label:"Category",
list:[
{id:"1", label:"Family"},
{id:"2", label:"Friends"},
{id:"3", label:"Business"},
{id:"4", label:"Acquaintances"},
{id:"5", label:"Other"}
]
}
]
});
По умолчанию [ ].
A highlight animation performed on the last added or modified filter.
$("#myFilter").structFilter({
highlight: false
});
По умолчанию true.
Показывает или скрывает кнопку «Отправить».
$("#myFilter").structFilter({
submitButton: true
});
По умолчанию false.
Предоставляет скрытые поля значениям условий, которые должны быть отправлены с формой (в качестве альтернативы вызову AJAX).
$("#myFilter").structFilter({
submitReady: true
});
По умолчанию false.
Добавляет новое условие фильтра.
$("#myFilter").structFilter("addCondition", {
field:{
label: "Lastname",
value: "lastname"
},
operator:{
label: "starts with",
value: "sw"
},
value:{
label: "\"a\"",
value: "a"
}
});
Удаляет все фильтры поиска.
$("#myFilter").structFilter("clear");
Возвращает количество фильтров.
$("#myFilter").structFilter("length");
Удаляет условие указанного индекса.
$("#myFilter").structFilter("removeCondition", 0);
Получает или задает определение фильтра (в виде массива фильтров).
$("#myFilter").structFilter("val");
$("#myFilter").structFilter("val", data);
Результат:
[
{
field:{
label: "Lastname",
value: "Lastname"
},
operator:{
label: "starts with",
value: "sw"
},
value:{
label: "\"jo\"",
value: "jo"
}
}
]
Получает определение фильтра (в виде читаемой текстовой строки)..
$("#myFilter").structFilter("valText");
Результат:
Фамилия начинается "jo"
Получает определение фильтра (в виде строки URL).
$("#myFilter").structFilter("valUrl");
Результат:
filters=1&field-0=Lastname&operator-0=sw&value-0=jo&label=Lastname%20starts%20with%20%22jo%22%0A
Это событие запускается, когда изменяется список условий поиска.
$("#myFilter").on("change.search", function(event){
// do something
});
Это событие срабатывает при нажатии кнопки отправки.
$("#myFilter").on("submit.search", function(event){
// do something
});
Фильтр так же легко настраивается, как любой виджет jQuery UI, используя одну из [jQuery UI тем] (http://jqueryui.com/themeroller/#themeGallery) или вашу собственную тему, созданную с помощью [Themeroller] (http: / /jqueryui.com/themeroller/). Версия structured-filter для Bootstrap и Backbone.js доступен как часть Evolutility-UI-jQuery set of generic views дляr CRUD (Create, Read, Update, Delete) and more.
Copyright (c) 2017 Olivier Giulieri.
structured-filter выпущен под MIT лицензией.
FAQs
Generic Web UI for building structured search or filter queries. With it you can build structured search conditions like Firstname starts with 'A' and Birthday after 1/1/1990 and State in (CA, NY, FL)...
The npm package structured-filter-ru receives a total of 0 weekly downloads. As such, structured-filter-ru popularity was classified as not popular.
We found that structured-filter-ru demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.