我想使用以下ValueConverter并使其可以重复使用许多视图。
export class ProductFilterValueConverter {
toView(array, value) {
var regex = new RegExp(value, 'gi');
var matcher = item =>
item.abbr.match(regex) || item.name.match(regex);
return array.filter(
matcher
);
}
}
上面的过滤器会从文本字段中获取值,并匹配我的' abbr'专栏或我的名字'柱。
重构的第1步是使这个可重用的是添加一个额外的参数,该参数可能是一个字符串数组,其中包含我希望包含在匹配OR逻辑中的列。
如果我传入数组中的一个值,如["zip"]
,那么我只想匹配我的zipcode列,并且不需要OR运算符。如果在上面的情况中我想匹配m,y产品,也许我的数组看起来像:["abbr","name"]
。
上面的方法或者可能有另一个定义的对象知道所有不同的对象列,我们可以将它用作查找:
var lookup = {
products: ["abbr","name"],
zipcodes: ["zip"],
offices: ["city", "state", "zipcode"]
}
我预见这个ValueConverter
被用作我新网站中许多内容的过滤器。 IT最好在任何对象上使用它,并传递一个serch术语作为第二个参数和一个列名列表以匹配作为第三个参数并让它有条件地搜索&&
和/或{{1 }}。哇,最后一点令人困惑。
到目前为止,我的视频是html代码和过滤器的js,我正在努力解决这个问题:
数据(我们正在过滤的实用程序对象)
||
GenericFilter.js
[
{
"id": 1,
"utilityName": "Big Valley",
"abbr": "Big Valley",
"city": "Big Bear Lake"
},
{
"id": 2,
"utilityName": "Pac Electric",
"abbr": "PE",
"city": "Los Angelas"
}
]
view.js
export class GenericFilterValueConverter {
toView(array, value, cols) {
var columns = cols;
var matchLogic = "item => {";
var regex = new RegExp(value, 'gi');
//debugger;
for (var i = 1; i <= columns.length; i++) {
matchLogic += "item." + columns[i] + ".match(regex)";
matchLogic += (i < columns.length) ? " || " : "";
matchLogic += (i === columns.length ? "}" : "");
}
var matcher = eval(matchLogic);
return array.filter(
matcher
);
}
}
view.html
export class Utilities {
constructor(...) {
//below the definedColumns are defined in the js module
this.definedColumns = ["abbr","utilityName"];
}
目前我没有收到JavaScript错误,但我的过滤器也不再有效。我的页面上的结果为零,好像ValueConverter第一次运行而<template>
<!--<require from="./officeFilter"></require>-->
<require from="../services/genericFilter"></require>
<input type="text" name="searchValue" value.bind="searchValue" />
<div class="grid" repeat.for="office of offices | genericFilter:searchValue:definedColumns">
<!--MORE HTML HERE TO RENDER GRID-->
</div>
</div>
</template>
已过滤掉所有结果?
使用eval的想法显然不是最好的,我在下面提出的答案并没有使用邪恶的评价!
答案 0 :(得分:1)
这是我提出的解决方案,因为我没有运气用eval()构建逻辑OR语句:
<强> GenericFilter.js 强>
export class GenericFilterValueConverter {
toView(array, value, cols, showResults=false) {
if (!value) {
return showResults ? array : [];
};
var filteredArray = array.filter(
function(objArray) {
for (var col in objArray) {
if (objArray.hasOwnProperty(col)) {
if (cols.indexOf(col) != -1 && objArray[col].toLowerCase().indexOf(value.toLowerCase()) != -1) {
return true;
}
}
};
return false;
});
return filteredArray;
}
}
view.html
<template>
<require from="../services/genericFilter"></require>
<input type="text" name="searchValue" value.bind="searchValue"/>
<div class="grid" repeat.for="utility of utilities | genericFilter:searchValue:definedColumns:true">
<!--template repeats for each utility-->
</div>
</div>
</div>
</template>
view.js
export class Utilities {
constructor(utilityNameData, router) {
this.data = utilityNameData;
this.router = router;
this.utilities = [];
//...
this.definedColumns = ["abbr","utilityName"];
}