2023-03-22 00:09:36 +08:00
|
|
|
import store from './store';
|
|
|
|
|
|
|
|
export function filteredItem(item, filterContext, currentAccountID) {
|
|
|
|
const { filtered } = item;
|
|
|
|
if (!filtered?.length) return true;
|
|
|
|
const isSelf = currentAccountID && item.account?.id === currentAccountID;
|
|
|
|
if (isSelf) return true;
|
|
|
|
const appliedFilters = filtered.filter((f) => {
|
|
|
|
const { filter } = f;
|
|
|
|
const hasContext = filter.context.includes(filterContext);
|
|
|
|
if (!hasContext) return false;
|
|
|
|
if (!filter.expiresAt) return hasContext;
|
|
|
|
return new Date(filter.expiresAt) > new Date();
|
|
|
|
});
|
2023-03-27 16:46:51 +08:00
|
|
|
if (!appliedFilters.length) return true;
|
2023-03-22 00:09:36 +08:00
|
|
|
const isHidden = appliedFilters.some((f) => f.filter.filterAction === 'hide');
|
2023-03-23 21:49:09 +08:00
|
|
|
console.log({ isHidden, filtered, appliedFilters, item });
|
|
|
|
if (isHidden) return false;
|
|
|
|
const isWarn = appliedFilters.some((f) => f.filter.filterAction === 'warn');
|
|
|
|
if (isWarn) {
|
2023-03-22 00:09:36 +08:00
|
|
|
const filterTitles = appliedFilters.map((f) => f.filter.title);
|
|
|
|
item._filtered = {
|
|
|
|
titles: filterTitles,
|
|
|
|
titlesStr: filterTitles.join(' • '),
|
|
|
|
};
|
|
|
|
}
|
2023-03-23 21:49:09 +08:00
|
|
|
return isWarn;
|
2023-03-22 00:09:36 +08:00
|
|
|
}
|
|
|
|
export function filteredItems(items, filterContext) {
|
|
|
|
if (!items?.length) return [];
|
|
|
|
if (!filterContext) return items;
|
|
|
|
const currentAccountID = store.session.get('currentAccount');
|
|
|
|
return items.filter((item) =>
|
|
|
|
filteredItem(item, filterContext, currentAccountID),
|
|
|
|
);
|
|
|
|
}
|