mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import React, { FunctionComponent, useCallback, useEffect, useState } from 'react';
|
|
import SectionTabs from '../dashboard/users/SectionTabs';
|
|
import UserPasswordForm from '../dashboard/users/UserPasswordForm';
|
|
import { getParameterByName } from '../../utils/url';
|
|
import SectionTitleContainer from '../dashboard/users/SectionTitleContainer';
|
|
|
|
const UserPasswordPage: FunctionComponent = () => {
|
|
const userId = getParameterByName('userId');
|
|
const [ userName, setUserName ] = useState('');
|
|
|
|
const loadUser = useCallback(() => {
|
|
window.ApiClient.getUser(userId).then(function (user) {
|
|
if (!user.Name) {
|
|
throw new Error('Unexpected null user.Name');
|
|
}
|
|
setUserName(user.Name);
|
|
});
|
|
}, [userId]);
|
|
useEffect(() => {
|
|
loadUser();
|
|
}, [loadUser]);
|
|
|
|
return (
|
|
<div>
|
|
<div className='content-primary'>
|
|
<SectionTitleContainer
|
|
title={userName}
|
|
titleLink='https://docs.jellyfin.org/general/server/users/'
|
|
/>
|
|
<SectionTabs activeTab='userpassword'/>
|
|
<div className='readOnlyContent'>
|
|
<UserPasswordForm
|
|
userId={userId}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default UserPasswordPage;
|