mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-15 15:17:45 +01:00
21 lines
586 B
TypeScript
21 lines
586 B
TypeScript
import type { CallTemplateFunctionArgs, Context, PluginDefinition } from '@yaakapp/api';
|
|
|
|
export const plugin: PluginDefinition = {
|
|
templateFunctions: [
|
|
{
|
|
name: 'cookie.value',
|
|
description: 'Read the value of a cookie in the jar, by name',
|
|
args: [
|
|
{
|
|
type: 'text',
|
|
name: 'cookie_name',
|
|
label: 'Cookie Name',
|
|
},
|
|
],
|
|
async onRender(ctx: Context, args: CallTemplateFunctionArgs): Promise<string | null> {
|
|
return ctx.cookies.getValue({ name: String(args.values.cookie_name) });
|
|
},
|
|
},
|
|
],
|
|
};
|