mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 08:55:33 +00:00
fix: pagination error in roles collections resourcer
This commit is contained in:
parent
de6e8469d3
commit
023096b1a9
@ -22,7 +22,7 @@ const rolesRemoteCollectionsResourcer = {
|
||||
const collectionRepository = new FullDataRepository<any>(dataSource.collectionManager.getCollections());
|
||||
|
||||
// all collections
|
||||
const [collections, count] = await collectionRepository.findAndCount();
|
||||
const [collections] = await collectionRepository.findAndCount();
|
||||
|
||||
const filterItem = lodash.get(filter, '$and');
|
||||
const filterByTitle = filterItem?.find((item) => item.title);
|
||||
@ -45,15 +45,15 @@ const rolesRemoteCollectionsResourcer = {
|
||||
.filter((roleResources) => roleResources.get('usingActionsConfig'))
|
||||
.map((roleResources) => roleResources.get('name'));
|
||||
|
||||
const items = lodash.sortBy(
|
||||
collections
|
||||
.filter((collection) => {
|
||||
const filtedCollections = collections.filter((collection) => {
|
||||
return (
|
||||
(!filterTitle || lodash.get(collection, 'options.title')?.toLowerCase().includes(filterTitle)) &&
|
||||
(!filterName || collection.options.name.toLowerCase().includes(filterName))
|
||||
);
|
||||
})
|
||||
.map((collection, i) => {
|
||||
});
|
||||
|
||||
const items = lodash.sortBy(
|
||||
filtedCollections.map((collection, i) => {
|
||||
const collectionName = collection.options.name;
|
||||
const exists = roleResourcesNames.includes(collectionName);
|
||||
|
||||
@ -78,11 +78,11 @@ const rolesRemoteCollectionsResourcer = {
|
||||
);
|
||||
|
||||
ctx.body = {
|
||||
count,
|
||||
count: filtedCollections.length,
|
||||
rows: items,
|
||||
page: Number(page),
|
||||
pageSize: Number(pageSize),
|
||||
totalPage: totalPage(count, pageSize),
|
||||
totalPage: totalPage(filtedCollections.length, pageSize),
|
||||
};
|
||||
|
||||
await next();
|
||||
|
Loading…
Reference in New Issue
Block a user