2
0

🐛 Improve parse runtime env reading function

This commit is contained in:
Baptiste Arnaud
2023-08-28 14:19:40 +02:00
parent efd4600b7e
commit 036b407a11
8 changed files with 22 additions and 20 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@typebot.io/js",
"version": "0.1.18",
"version": "0.1.19",
"description": "Javascript library to display typebots on your website",
"type": "module",
"main": "dist/index.js",

View File

@ -4,11 +4,11 @@ import type { ScriptToExecute } from '@typebot.io/schemas'
const AsyncFunction = Object.getPrototypeOf(async function () {}).constructor
export const executeScript = async ({ content, args }: ScriptToExecute) => {
const func = AsyncFunction(
...args.map((arg) => arg.id),
parseContent(content)
)
try {
const func = AsyncFunction(
...args.map((arg) => arg.id),
parseContent(content)
)
await func(...args.map((arg) => arg.value))
} catch (err) {
console.error(err)

View File

@ -1,8 +1,8 @@
import { env } from '@typebot.io/env'
import { getRuntimeVariable } from '@typebot.io/env/getRuntimeVariable'
const cloudViewerUrl = 'https://viewer.typebot.io'
export const guessApiHost = () =>
env.NEXT_PUBLIC_VIEWER_INTERNAL_URL ??
env.NEXT_PUBLIC_VIEWER_URL[0] ??
getRuntimeVariable('NEXT_PUBLIC_VIEWER_INTERNAL_URL') ??
getRuntimeVariable('NEXT_PUBLIC_VIEWER_URL')?.split(',')[0] ??
cloudViewerUrl

View File

@ -1,6 +1,6 @@
{
"name": "@typebot.io/nextjs",
"version": "0.1.18",
"version": "0.1.19",
"description": "Convenient library to display typebots on your Next.js website",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@typebot.io/react",
"version": "0.1.18",
"version": "0.1.19",
"description": "Convenient library to display typebots on your React app",
"main": "dist/index.js",
"types": "dist/index.d.ts",

10
packages/env/env.ts vendored
View File

@ -1,14 +1,6 @@
import { createEnv } from '@t3-oss/env-nextjs'
import { z } from 'zod'
declare const window: {
__ENV: any
}
const getRuntimeVariable = (key: string) => {
if (typeof window === 'undefined') return process.env[key]
return window.__ENV[key]
}
import { getRuntimeVariable } from './getRuntimeVariable'
const boolean = z.enum(['true', 'false']).transform((value) => value === 'true')

10
packages/env/getRuntimeVariable.ts vendored Normal file
View File

@ -0,0 +1,10 @@
declare const window: {
__ENV?: any
}
const isBrowser = () => Boolean(typeof window !== 'undefined' && window.__ENV)
export const getRuntimeVariable = (key: string) => {
if (isBrowser()) return window.__ENV[key]
return process.env[key]
}

View File

@ -15,6 +15,6 @@
"esbuild": "^0.19.1"
},
"scripts": {
"build": "esbuild env.ts --packages=external --outfile=dist/env.mjs"
"build": "esbuild env.ts --bundle --packages=external --format=esm --outfile=dist/env.mjs"
}
}