mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
|
import type { ILoadOptionsFunctions, INodeListSearchResult } from 'n8n-workflow';
|
||
|
import { facebookFormList, facebookPageList } from '../GenericFunctions';
|
||
|
|
||
|
const filterMatches = (name: string, filter?: string): boolean =>
|
||
|
!filter || name?.toLowerCase().includes(filter.toLowerCase());
|
||
|
|
||
|
export async function pageList(
|
||
|
this: ILoadOptionsFunctions,
|
||
|
filter?: string,
|
||
|
paginationToken?: string,
|
||
|
): Promise<INodeListSearchResult> {
|
||
|
const { data: pages, paging } = await facebookPageList.call(this, paginationToken);
|
||
|
return {
|
||
|
results: pages
|
||
|
.filter((page) => filterMatches(page.name, filter))
|
||
|
.map((page) => ({
|
||
|
name: page.name,
|
||
|
value: page.id,
|
||
|
url: `https://facebook.com/${page.id}`,
|
||
|
})),
|
||
|
paginationToken: paging?.cursors?.after,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export async function formList(
|
||
|
this: ILoadOptionsFunctions,
|
||
|
filter?: string,
|
||
|
paginationToken?: string,
|
||
|
): Promise<INodeListSearchResult> {
|
||
|
const pageId = this.getNodeParameter('page', '', { extractValue: true }) as string;
|
||
|
|
||
|
const { data: forms, paging } = await facebookFormList.call(this, pageId, paginationToken);
|
||
|
return {
|
||
|
results: forms
|
||
|
.filter((form) => filterMatches(form.name, filter))
|
||
|
.map((form) => ({
|
||
|
name: form.name,
|
||
|
value: form.id,
|
||
|
})),
|
||
|
paginationToken: paging?.cursors?.after,
|
||
|
};
|
||
|
}
|