mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
38 lines
985 B
TypeScript
38 lines
985 B
TypeScript
import type {
|
|
IDataObject,
|
|
ILoadOptionsFunctions,
|
|
INodeListSearchItems,
|
|
INodeListSearchResult,
|
|
} from 'n8n-workflow';
|
|
import { notionApiRequestAllItems } from './GenericFunctions';
|
|
|
|
export async function getDatabases(
|
|
this: ILoadOptionsFunctions,
|
|
filter?: string,
|
|
): Promise<INodeListSearchResult> {
|
|
const returnData: INodeListSearchItems[] = [];
|
|
const body: IDataObject = {
|
|
page_size: 100,
|
|
query: filter,
|
|
filter: { property: 'object', value: 'database' },
|
|
};
|
|
const databases = await notionApiRequestAllItems.call(this, 'results', 'POST', '/search', body);
|
|
for (const database of databases) {
|
|
returnData.push({
|
|
name: database.title[0]?.plain_text || database.id,
|
|
value: database.id,
|
|
url: database.url,
|
|
});
|
|
}
|
|
returnData.sort((a, b) => {
|
|
if (a.name.toLocaleLowerCase() < b.name.toLocaleLowerCase()) {
|
|
return -1;
|
|
}
|
|
if (a.name.toLocaleLowerCase() > b.name.toLocaleLowerCase()) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
});
|
|
return { results: returnData };
|
|
}
|