mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
Add options to Page props
This commit is contained in:
parent
ceb10e2877
commit
b349d89534
@ -1,16 +1,22 @@
|
||||
import React, { FunctionComponent, useEffect, useRef } from 'react';
|
||||
import React, { FunctionComponent, HTMLAttributes, useEffect, useRef } from 'react';
|
||||
|
||||
import viewManager from './viewManager/viewManager';
|
||||
|
||||
type PageProps = {
|
||||
title?: string
|
||||
title?: string,
|
||||
isBackButtonEnabled?: boolean
|
||||
};
|
||||
|
||||
/**
|
||||
* Page component that handles hiding active non-react views, triggering the required events for
|
||||
* navigation and appRouter state updates, and setting the correct classes and data attributes.
|
||||
*/
|
||||
const Page: FunctionComponent<PageProps> = ({ children, title }) => {
|
||||
const Page: FunctionComponent<PageProps & HTMLAttributes<HTMLDivElement>> = ({
|
||||
children,
|
||||
className = '',
|
||||
title,
|
||||
isBackButtonEnabled = true
|
||||
}) => {
|
||||
const element = useRef<HTMLDivElement>(null);
|
||||
|
||||
useEffect(() => {
|
||||
@ -38,9 +44,9 @@ const Page: FunctionComponent<PageProps> = ({ children, title }) => {
|
||||
<div
|
||||
ref={element}
|
||||
data-role='page'
|
||||
className='mainAnimatedPage page libraryPage allLibraryPage noSecondaryNavPage'
|
||||
className={`page ${className}`}
|
||||
data-title={title}
|
||||
data-backbutton='true'
|
||||
data-backbutton={`${isBackButtonEnabled}`}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
|
@ -13,7 +13,7 @@ const SearchPage: FunctionComponent = () => {
|
||||
const [ searchParams ] = useSearchParams();
|
||||
|
||||
return (
|
||||
<Page title={globalize.translate('Search')}>
|
||||
<Page title={globalize.translate('Search')} className='mainAnimatedPage libraryPage allLibraryPage noSecondaryNavPage'>
|
||||
<SearchFields onSearch={setQuery} />
|
||||
{!query &&
|
||||
<SearchSuggestions
|
||||
|
Loading…
Reference in New Issue
Block a user