mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
import { useEffect, useState } from 'react';
|
|
import { Breadcrumbs, Item, Tabs, useToast } from 'react-basics';
|
|
import Link from 'next/link';
|
|
import UserEditForm from 'components/pages/settings/users//UserEditForm';
|
|
import Page from 'components/layout/Page';
|
|
import PageHeader from 'components/layout/PageHeader';
|
|
import useApi from 'hooks/useApi';
|
|
import UserWebsites from './UserWebsites';
|
|
import useMessages from 'hooks/useMessages';
|
|
|
|
export function UserSettings({ userId }) {
|
|
const { formatMessage, labels, messages } = useMessages();
|
|
const [edit, setEdit] = useState(false);
|
|
const [values, setValues] = useState(null);
|
|
const [tab, setTab] = useState('details');
|
|
const { get, useQuery } = useApi();
|
|
const { toast, showToast } = useToast();
|
|
const { data, isLoading } = useQuery(
|
|
['user', userId],
|
|
() => {
|
|
if (userId) {
|
|
return get(`/users/${userId}`);
|
|
}
|
|
},
|
|
{ cacheTime: 0 },
|
|
);
|
|
|
|
const handleSave = data => {
|
|
showToast({ message: formatMessage(messages.saved), variant: 'success' });
|
|
if (data) {
|
|
setValues(state => ({ ...state, ...data }));
|
|
}
|
|
|
|
if (edit) {
|
|
setEdit(false);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
setValues(data);
|
|
}
|
|
}, [data]);
|
|
|
|
return (
|
|
<Page loading={isLoading || !values}>
|
|
{toast}
|
|
<PageHeader
|
|
title={
|
|
<Breadcrumbs>
|
|
<Item>
|
|
<Link href="/settings/users">{formatMessage(labels.users)}</Link>
|
|
</Item>
|
|
<Item>{values?.username}</Item>
|
|
</Breadcrumbs>
|
|
}
|
|
/>
|
|
<Tabs selectedKey={tab} onSelect={setTab} style={{ marginBottom: 30, fontSize: 14 }}>
|
|
<Item key="details">{formatMessage(labels.details)}</Item>
|
|
<Item key="websites">{formatMessage(labels.websites)}</Item>
|
|
</Tabs>
|
|
{tab === 'details' && <UserEditForm userId={userId} data={values} onSave={handleSave} />}
|
|
{tab === 'websites' && <UserWebsites userId={userId} />}
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
export default UserSettings;
|