This commit is contained in:
Rizky 2024-01-20 18:53:06 +07:00
parent 011aeabf44
commit 3dc25a8447
3 changed files with 88 additions and 82 deletions

View File

@ -15,7 +15,6 @@ RUN echo $DATABASE_URL
# RUN npm install -g node-gyp # RUN npm install -g node-gyp
# RUN npm install -g node-gyp-build-optional-packages # RUN npm install -g node-gyp-build-optional-packages
# RUN curl -fsSL https://bun.sh/install | bash -s "bun-v1.0.18" # RUN curl -fsSL https://bun.sh/install | bash -s "bun-v1.0.18"
# RUN ln -s $HOME/.bun/bin/bun /usr/local/bin/bun # RUN ln -s $HOME/.bun/bin/bun /usr/local/bin/bun

View File

@ -11,6 +11,7 @@ export const apiProxy = (api_url: string) => {
w.prasiApi = {}; w.prasiApi = {};
} }
try {
const base = new URL(api_url); const base = new URL(api_url);
const base_url = `${base.protocol}//${base.host}`; const base_url = `${base.protocol}//${base.host}`;
if (!w.prasiApi[base_url]) { if (!w.prasiApi[base_url]) {
@ -101,6 +102,10 @@ export const apiProxy = (api_url: string) => {
}, },
} }
); );
} catch (e) {
console.warn("Init API failed for URL: ", JSON.stringify(api_url));
return null;
}
}; };
const fetchSendApi = async (url: string, params: any) => { const fetchSendApi = async (url: string, params: any) => {

View File

@ -1,4 +1,4 @@
import { FC, ReactNode } from "react"; import { FC, ReactNode, useEffect, useState } from "react";
import { useGlobal, useLocal } from "web-utils"; import { useGlobal, useLocal } from "web-utils";
import { IMeta } from "../../ed/logic/ed-global"; import { IMeta } from "../../ed/logic/ed-global";
import { ViGlobal } from "./global"; import { ViGlobal } from "./global";
@ -12,8 +12,10 @@ export const ViScript: FC<{
passprop?: any; passprop?: any;
}> = ({ meta, children, passprop }) => { }> = ({ meta, children, passprop }) => {
const vi = useGlobal(ViGlobal, "VI"); const vi = useGlobal(ViGlobal, "VI");
const local = useLocal({}); const [_, _set] = useState({});
meta.render = local.render; meta.render = () => {
_set({});
};
let _pass = passprop; let _pass = passprop;
if (meta.item.component?.id) { if (meta.item.component?.id) {