mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
89 lines
2.3 KiB
JavaScript
89 lines
2.3 KiB
JavaScript
import {
|
|
Form,
|
|
FormRow,
|
|
FormButtons,
|
|
Flexbox,
|
|
TextField,
|
|
SubmitButton,
|
|
Button,
|
|
Toggle,
|
|
} from 'react-basics';
|
|
import { useIntl } from 'react-intl';
|
|
import { useEffect, useMemo, useRef, useState } from 'react';
|
|
import { getRandomChars } from 'next-basics';
|
|
import useApi from 'hooks/useApi';
|
|
import { labels, messages } from 'components/messages';
|
|
|
|
const generateId = () => getRandomChars(16);
|
|
|
|
export default function ShareUrl({ websiteId, data, onSave }) {
|
|
const { formatMessage } = useIntl();
|
|
const { name, shareId } = data;
|
|
const [id, setId] = useState(shareId);
|
|
const { post, useMutation } = useApi();
|
|
const { mutate, error } = useMutation(({ shareId }) =>
|
|
post(`/websites/${websiteId}`, { shareId }),
|
|
);
|
|
const ref = useRef(null);
|
|
const url = useMemo(
|
|
() => `${process.env.analyticsUrl || location.origin}/share/${id}/${encodeURIComponent(name)}`,
|
|
[id, name],
|
|
);
|
|
|
|
const handleSubmit = async data => {
|
|
mutate(data, {
|
|
onSuccess: async () => {
|
|
onSave(data);
|
|
ref.current.reset(data);
|
|
},
|
|
});
|
|
};
|
|
|
|
const handleGenerate = () => {
|
|
const id = generateId();
|
|
ref.current.setValue('shareId', id, {
|
|
shouldValidate: true,
|
|
shouldDirty: true,
|
|
});
|
|
setId(id);
|
|
};
|
|
|
|
const handleCheck = checked => {
|
|
const data = { shareId: checked ? generateId() : null };
|
|
mutate(data, {
|
|
onSuccess: async () => {
|
|
onSave(data);
|
|
},
|
|
});
|
|
setId(data.shareId);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (id && id !== shareId) {
|
|
ref.current.setValue('shareId', id);
|
|
}
|
|
}, [id, shareId]);
|
|
|
|
return (
|
|
<>
|
|
<Toggle checked={Boolean(id)} onChecked={handleCheck} style={{ marginBottom: 30 }}>
|
|
{formatMessage(labels.enableShareUrl)}
|
|
</Toggle>
|
|
{id && (
|
|
<Form key={websiteId} ref={ref} onSubmit={handleSubmit} error={error} values={data}>
|
|
<FormRow>
|
|
<p>{formatMessage(messages.shareUrl)}</p>
|
|
<Flexbox gap={10}>
|
|
<TextField value={url} readOnly allowCopy />
|
|
<Button onClick={handleGenerate}>{formatMessage(labels.regenerate)}</Button>
|
|
</Flexbox>
|
|
</FormRow>
|
|
<FormButtons>
|
|
<SubmitButton variant="primary">{formatMessage(labels.save)}</SubmitButton>
|
|
</FormButtons>
|
|
</Form>
|
|
)}
|
|
</>
|
|
);
|
|
}
|