Add livetv view
This commit is contained in:
@@ -3,17 +3,22 @@ import { useLocation, useSearchParams } from 'react-router-dom';
|
||||
|
||||
const useCurrentTab = () => {
|
||||
const location = useLocation();
|
||||
const [searchParams] = useSearchParams();
|
||||
const searchParamsParentId = searchParams.get('topParentId');
|
||||
const [searchParams, setSearchParams] = useSearchParams();
|
||||
const searchParamsTab = searchParams.get('tab');
|
||||
const currentTabIndex: number =
|
||||
searchParamsTab !== null ?
|
||||
parseInt(searchParamsTab, 10) :
|
||||
getDefaultTabIndex(location.pathname, searchParamsParentId);
|
||||
const libraryId =
|
||||
location.pathname === '/livetv.html' ?
|
||||
'livetv' :
|
||||
searchParams.get('topParentId');
|
||||
const activeTab: number =
|
||||
searchParamsTab !== null ?
|
||||
parseInt(searchParamsTab, 10) :
|
||||
getDefaultTabIndex(location.pathname, libraryId);
|
||||
|
||||
return {
|
||||
searchParamsParentId,
|
||||
currentTabIndex
|
||||
searchParams,
|
||||
setSearchParams,
|
||||
libraryId,
|
||||
activeTab
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user