fix: basePath display in Website shareUrl

This commit is contained in:
nailuoGG 2023-07-25 14:00:25 +08:00
parent e7336601a6
commit 7fa0d2b4ac
No known key found for this signature in database
GPG Key ID: 8B8E86A5C02D27C4

View File

@ -12,6 +12,7 @@ import { useEffect, useMemo, useRef, useState } from 'react';
import { getRandomChars } from 'next-basics';
import useApi from 'hooks/useApi';
import useMessages from 'hooks/useMessages';
import useConfig from 'hooks/useConfig';
const generateId = () => getRandomChars(16);
@ -20,12 +21,13 @@ export function ShareUrl({ websiteId, data, onSave }) {
const { name, shareId } = data;
const [id, setId] = useState(shareId);
const { post, useMutation } = useApi();
const { basePath } = useConfig();
const { mutate, error } = useMutation(({ shareId }) =>
post(`/websites/${websiteId}`, { shareId }),
);
const ref = useRef(null);
const url = useMemo(
() => `${process.env.analyticsUrl || location.origin}${process.env.BASE_PATH || ''}/share/${id}/${encodeURIComponent(name)}`,
() => `${process.env.analyticsUrl || location.origin}${basePath || ''}/share/${id}/${encodeURIComponent(name)}`,
[id, name],
);