mirror of
https://github.com/jellyfin/jellyfin-expo.git
synced 2024-11-27 08:10:32 +00:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
/**
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { Icon, ListItem } from 'react-native-elements';
|
|
|
|
import { openBrowser } from '../utils/WebBrowser';
|
|
|
|
const BrowserListItem = ({ item, index }) => (
|
|
<ListItem
|
|
testID='browser-list-item'
|
|
topDivider={index === 0}
|
|
bottomDivider
|
|
onPress={() => {
|
|
openBrowser(item.url);
|
|
}}
|
|
>
|
|
<Icon testID='icon' name={item.icon.name} type={item.icon.type} />
|
|
<ListItem.Content>
|
|
<ListItem.Title testID='title'>{item.name}</ListItem.Title>
|
|
</ListItem.Content>
|
|
<ListItem.Chevron />
|
|
</ListItem>
|
|
);
|
|
|
|
BrowserListItem.propTypes = {
|
|
item: PropTypes.shape({
|
|
name: PropTypes.string.isRequired,
|
|
icon: PropTypes.shape({
|
|
name: PropTypes.string.isRequired,
|
|
type: PropTypes.string.isRequired
|
|
}).isRequired,
|
|
url: PropTypes.string.isRequired
|
|
}).isRequired,
|
|
index: PropTypes.number.isRequired
|
|
};
|
|
|
|
export default BrowserListItem;
|