2022-03-03 03:37:56 +03:00
|
|
|
import React, { FunctionComponent, useCallback, useEffect, useState } from 'react';
|
2022-01-05 20:35:58 +03:00
|
|
|
import { appRouter } from '../appRouter';
|
|
|
|
import SectionTitleLinkElement from '../dashboard/users/SectionTitleLinkElement';
|
|
|
|
import SectionTabs from '../dashboard/users/SectionTabs';
|
|
|
|
import UserPasswordForm from '../dashboard/users/UserPasswordForm';
|
|
|
|
|
|
|
|
const UserPasswordPage: FunctionComponent = () => {
|
|
|
|
const userId = appRouter.param('userId');
|
|
|
|
const [ userName, setUserName ] = useState('');
|
|
|
|
|
2022-03-03 03:37:56 +03:00
|
|
|
const loadUser = useCallback(() => {
|
|
|
|
window.ApiClient.getUser(userId).then(function (user) {
|
|
|
|
if (!user.Name) {
|
|
|
|
throw new Error('Unexpected null user.Name');
|
|
|
|
}
|
2022-01-05 20:35:58 +03:00
|
|
|
setUserName(user.Name);
|
|
|
|
});
|
|
|
|
}, [userId]);
|
2022-03-03 03:37:56 +03:00
|
|
|
useEffect(() => {
|
|
|
|
loadUser();
|
|
|
|
}, [loadUser]);
|
2022-01-05 20:35:58 +03:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div className='content-primary'>
|
|
|
|
<div className='verticalSection'>
|
|
|
|
<div className='sectionTitleContainer flex align-items-center'>
|
|
|
|
<h2 className='sectionTitle username'>
|
|
|
|
{userName}
|
|
|
|
</h2>
|
|
|
|
<SectionTitleLinkElement
|
|
|
|
className='raised button-alt headerHelpButton'
|
|
|
|
title='Help'
|
|
|
|
url='https://docs.jellyfin.org/general/server/users/'
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<SectionTabs activeTab='userpassword'/>
|
|
|
|
<div className='readOnlyContent'>
|
|
|
|
<UserPasswordForm
|
|
|
|
userId={userId}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default UserPasswordPage;
|