PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / AutoLaunch / fetchers / get-strings.js

get-strings.js in Extendify 3.2.1, at src/AutoLaunch/fetchers/get-strings.js

35 lines 1023 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { getStringsShape } from '@auto-launch/fetchers/shape';
2 import {
3 failWithFallback,
4 fetchWithTimeout,
5 retryTwice,
6 setStatus,
7 } from '@auto-launch/functions/helpers';
8 import { launchStrings } from '@auto-launch/strings';
9 import { AI_HOST } from '@constants';
10 import { reqDataBasics } from '@shared/lib/data';
11
12 const fallback = { aiHeaders: [], aiBlogTitles: [], heroDescription: '' };
13 const url = `${AI_HOST}/api/site-strings`;
14 const method = 'POST';
15 const headers = { 'Content-Type': 'application/json' };
16
17 export const handleSiteStrings = async ({ siteProfile }) => {
18 // translators: this is for a action log UI. Keep it short
19 setStatus(launchStrings().statusIdeas);
20
21 const body = JSON.stringify({ ...reqDataBasics, siteProfile });
22
23 const response = await retryTwice(() =>
24 fetchWithTimeout(url, { method, headers, body }),
25 );
26
27 if (!response?.ok) return fallback;
28
29 return failWithFallback(
30 async () => getStringsShape.parse(await response.json()),
31 fallback,
32 { caller: 'handleSiteStrings' },
33 );
34 };
35