Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ogone/src/enums/templateContext.ts>Context

Advanced Web Composition for Future
Latest
enum Context
import { Context } from "https://deno.land/x/ogone@revb3/src/enums/templateContext.ts";

Members

CASE_GATE = ` // @ts-ignore if (typeof _state === "string" && ![{% declaredCases %}].includes(_state)) { return; }`

proper checks for cases

TEMPLATE_COMPONENT_RUNTIME = `({% async %} function ({% protocolAmbientType %} _state: _state, ctx: ctx, event: event, _once: number = 0) { try { {% body %} } catch(err) { // @ts-ignore displayError('Error in the component: \\n\\t {% file %}' ,err.message, err); throw err; } });`

template for the runtime of the component

TEMPLATE_COMPONENT_RUNTIME_BODY = ` {% beforeEach %} {% reflections %} {% caseGate %} switch(_state) { {% switchBody %} }`

the statements of the component this is the body part inserted into TEMPLATE_COMPONENT_RUNTIME

TEMPLATE_COMPONENT_RUNTIME_PROTOCOL = `{% async %} runtime (_state: string | number, ctx: any, event: any, _once: number = 0) { try { {% body %} } catch(err) { // @ts-ignore displayError('Error in the component: \\n\\t {% file %}' ,err.message, err); throw err; } }`

template for the runtime of the protocol

TEMPLATE_COMPONENT_RUNTIME_PROTOCOL_TRY_CATCH = ` try { {% modules %} {% body %} } catch(err) { // @ts-ignore displayError('Error in the component: \\n\\t {% file %}' ,err.message, err); throw err; }`

template for the runtime of the component