1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix missing semicolons in ts files

This commit is contained in:
Bill Thornton 2023-05-02 15:54:53 -04:00
parent 8041167473
commit 45623fe586
25 changed files with 29 additions and 29 deletions

2
src/apiclient.d.ts vendored
View file

@ -268,7 +268,7 @@ declare module 'jellyfin-apiclient' {
sendWebSocketMessage(name: string, data: any): void;
serverAddress(val?: string): string;
serverId(): string;
serverVersion(): string
serverVersion(): string;
setAuthenticationInfo(accessKey?: string, userId?: string): void;
setRequestHeaders(headers: any): void;
setSystemInfo(info: SystemInfo): void;

View file

@ -12,7 +12,7 @@ type IProps = {
listTitle?: string;
description?: string;
children?: React.ReactNode
}
};
const AccessContainer: FunctionComponent<IProps> = ({ containerClassName, headerTitle, checkBoxClassName, checkBoxTitle, listContainerClassName, accessClassName, listTitle, description, children }: IProps) => {
return (

View file

@ -9,7 +9,7 @@ type AccessScheduleListProps = {
DayOfWeek?: string;
StartHour?: number ;
EndHour?: number;
}
};
function getDisplayTime(hours = 0) {
let minutes = 0;

View file

@ -3,7 +3,7 @@ import IconButtonElement from '../../../elements/IconButtonElement';
type IProps = {
tag?: string;
}
};
const BlockedTagList: FunctionComponent<IProps> = ({ tag }: IProps) => {
return (

View file

@ -4,7 +4,7 @@ import globalize from '../../../scripts/globalize';
type IProps = {
title?: string;
className?: string;
}
};
const createLinkElement = ({ className, title }: IProps) => ({
__html: `<a

View file

@ -3,7 +3,7 @@ import globalize from '../../../scripts/globalize';
type IProps = {
activeTab: string;
}
};
const createLinkElement = (activeTab: string) => ({
__html: `<a href="#"

View file

@ -19,7 +19,7 @@ const createLinkElement = ({ user, renderImgUrl }: { user: UserDto, renderImgUrl
type IProps = {
user?: UserDto;
}
};
const getLastSeenText = (lastActivityDate?: string | null) => {
if (lastActivityDate) {

View file

@ -11,7 +11,7 @@ import InputElement from '../../../elements/InputElement';
type IProps = {
userId: string;
}
};
const UserPasswordForm: FunctionComponent<IProps> = ({ userId }: IProps) => {
const element = useRef<HTMLDivElement>(null);

View file

@ -24,7 +24,7 @@ type LiveTVSearchResultsProps = {
parentId?: string | null;
collectionType?: string | null;
query?: string;
}
};
/*
* React component to display search result rows for live tv library search

View file

@ -12,7 +12,7 @@ type SearchResultsProps = {
parentId?: string | null;
collectionType?: string | null;
query?: string;
}
};
const ensureNonNullItems = (result: BaseItemDtoQueryResult) => ({
...result,

View file

@ -35,13 +35,13 @@ type CardOptions = {
showChannelName?: boolean,
showTitle?: boolean,
showYear?: boolean
}
};
type SearchResultsRowProps = {
title?: string;
items?: BaseItemDto[];
cardOptions?: CardOptions;
}
};
const SearchResultsRow: FunctionComponent<SearchResultsRowProps> = ({ title, items = [], cardOptions = {} }: SearchResultsRowProps) => {
const element = useRef<HTMLDivElement>(null);

View file

@ -25,7 +25,7 @@ const createSuggestionLink = ({ name, href }: { name: string, href: string }) =>
type SearchSuggestionsProps = {
parentId?: string | null;
}
};
const SearchSuggestions: FunctionComponent<SearchSuggestionsProps> = ({ parentId }: SearchSuggestionsProps) => {
const [ suggestions, setSuggestions ] = useState<BaseItemDto[]>([]);

View file

@ -21,7 +21,7 @@ type IProps = {
title?: string;
leftIcon?: string;
rightIcon?: string;
}
};
const ButtonElement: FunctionComponent<IProps> = ({ type, id, className, title, leftIcon, rightIcon }: IProps) => {
return (

View file

@ -29,7 +29,7 @@ type IProps = {
itemCheckedAttribute?: string;
itemName?: string
title?: string
}
};
const CheckBoxElement: FunctionComponent<IProps> = ({ labelClassName, className, elementId, dataFilter, itemType, itemId, itemAppName, itemCheckedAttribute, itemName, title }: IProps) => {
const appName = itemAppName ? `- ${itemAppName}` : '';

View file

@ -10,7 +10,7 @@ type IProps = {
dataIndex?: string | number;
dataTag?: string | number;
dataProfileid?: string | number;
}
};
const createIconButtonElement = ({ is, id, className, title, icon, dataIndex, dataTag, dataProfileid }: IProps) => ({
__html: `<button

View file

@ -16,7 +16,7 @@ type IProps = {
id?: string;
label?: string;
options?: string
}
};
const InputElement: FunctionComponent<IProps> = ({ type, id, label, options }: IProps) => {
return (

View file

@ -12,7 +12,7 @@ type IProps = {
btnIcon?: string;
isLinkVisible?: boolean;
url?: string;
}
};
const SectionTitleContainer: FunctionComponent<IProps> = ({ SectionClassName, title, isBtnVisible = false, btnId, btnClassName, btnTitle, btnIcon, isLinkVisible = true, url }: IProps) => {
return (
<div className={`${SectionClassName} sectionTitleContainer flex align-items-center`}>

View file

@ -17,7 +17,7 @@ type IProps = {
title?: string;
className?: string;
url?: string
}
};
const SectionTitleLinkElement: FunctionComponent<IProps> = ({ className, title, url }: IProps) => {
return (

View file

@ -19,7 +19,7 @@ type IProps = {
required?: string;
label?: string;
children?: React.ReactNode
}
};
const SelectElement: FunctionComponent<IProps> = ({ name, id, required, label, children }: IProps) => {
return (

View file

@ -14,7 +14,7 @@ import Page from '../components/Page';
type OnResumeOptions = {
autoFocus?: boolean;
refresh?: boolean
}
};
type ControllerProps = {
onResume: (
@ -23,7 +23,7 @@ type ControllerProps = {
refreshed: boolean;
onPause: () => void;
destroy: () => void;
}
};
const Home: FunctionComponent = () => {
const [ searchParams ] = useSearchParams();

View file

@ -18,12 +18,12 @@ import Page from '../../components/Page';
type ResetProvider = AuthProvider & {
checkedAttribute: string
}
};
type AuthProvider = {
Name?: string;
Id?: string;
}
};
const getCheckedElementDataIds = (elements: NodeListOf<Element>) => (
Array.prototype.filter.call(elements, e => e.checked)

View file

@ -18,7 +18,7 @@ type ItemsArr = {
Id?: string;
AppName?: string;
checkedAttribute?: string
}
};
const UserLibraryAccess: FunctionComponent = () => {
const [ userName, setUserName ] = useState('');

View file

@ -14,12 +14,12 @@ import Page from '../../components/Page';
type userInput = {
Name?: string;
Password?: string;
}
};
type ItemsArr = {
Name?: string;
Id?: string;
}
};
const UserNew: FunctionComponent = () => {
const [ channelsItems, setChannelsItems ] = useState<ItemsArr[]>([]);

View file

@ -20,7 +20,7 @@ type UnratedItem = {
name: string;
value: string;
checkedAttribute: string
}
};
const UserParentalControl: FunctionComponent = () => {
const [ userName, setUserName ] = useState('');

View file

@ -18,7 +18,7 @@ type MenuEntry = {
name?: string;
id?: string;
icon?: string;
}
};
const UserProfiles: FunctionComponent = () => {
const [ users, setUsers ] = useState<UserDto[]>([]);