mirror of
https://github.com/jellyfin/jellyfin-expo.git
synced 2024-12-14 17:18:45 +00:00
commit
9892b5b2d5
@ -1,11 +1,15 @@
|
|||||||
{
|
{
|
||||||
"env": {
|
"env": {
|
||||||
"es6": true,
|
"es2020": true,
|
||||||
"node": true
|
"node": true
|
||||||
},
|
},
|
||||||
"extends": [
|
"extends": [
|
||||||
"eslint:recommended",
|
"eslint:recommended",
|
||||||
"plugin:react/recommended"
|
"plugin:react/recommended",
|
||||||
|
"plugin:promise/recommended",
|
||||||
|
"plugin:import/errors",
|
||||||
|
"plugin:import/warnings",
|
||||||
|
"plugin:eslint-comments/recommended"
|
||||||
],
|
],
|
||||||
"globals": {
|
"globals": {
|
||||||
"Atomics": "readonly",
|
"Atomics": "readonly",
|
||||||
@ -16,11 +20,14 @@
|
|||||||
"ecmaFeatures": {
|
"ecmaFeatures": {
|
||||||
"jsx": true
|
"jsx": true
|
||||||
},
|
},
|
||||||
"ecmaVersion": 2018,
|
"ecmaVersion": 2020,
|
||||||
"sourceType": "module"
|
"sourceType": "module"
|
||||||
},
|
},
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"react"
|
"react",
|
||||||
|
"promise",
|
||||||
|
"import",
|
||||||
|
"eslint-comments"
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"react": {
|
"react": {
|
||||||
@ -28,6 +35,22 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rules": {
|
"rules": {
|
||||||
"react/prop-types": ["error", { "ignore": ["navigation"] }]
|
"react/prop-types": ["error", { "ignore": ["navigation"] }],
|
||||||
|
|
||||||
|
"block-spacing": ["error"],
|
||||||
|
"brace-style": ["error"],
|
||||||
|
"comma-dangle": ["error", "never"],
|
||||||
|
"comma-spacing": ["error"],
|
||||||
|
"eol-last": ["error"],
|
||||||
|
"indent": ["error", 2, { "SwitchCase": 1 }],
|
||||||
|
"keyword-spacing": ["error"],
|
||||||
|
"max-statements-per-line": ["error"],
|
||||||
|
"no-floating-decimal": ["error"],
|
||||||
|
"no-multi-spaces": ["error"],
|
||||||
|
"no-multiple-empty-lines": ["error", { "max": 1 }],
|
||||||
|
"no-trailing-spaces": ["error"],
|
||||||
|
"one-var": ["error", "never"],
|
||||||
|
"semi": ["error"],
|
||||||
|
"space-before-blocks": ["error"]
|
||||||
}
|
}
|
||||||
}
|
}
|
8
App.js
8
App.js
@ -48,10 +48,10 @@ export default class App extends React.Component {
|
|||||||
} else {
|
} else {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider theme={Theme}>
|
<ThemeProvider theme={Theme}>
|
||||||
<View style={styles.container}>
|
<View style={styles.container}>
|
||||||
{Platform.OS === 'ios' && <StatusBar barStyle="light-content" />}
|
{Platform.OS === 'ios' && <StatusBar barStyle="light-content" />}
|
||||||
<AppNavigator />
|
<AppNavigator />
|
||||||
</View>
|
</View>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,6 @@
|
|||||||
module.exports = function(api) {
|
module.exports = function(api) {
|
||||||
api.cache(true);
|
api.cache(true);
|
||||||
return {
|
return {
|
||||||
presets: ['babel-preset-expo'],
|
presets: ['babel-preset-expo']
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -44,7 +44,7 @@ export default class ServerInput extends React.Component {
|
|||||||
try {
|
try {
|
||||||
url = JellyfinValidator.parseUrl(host);
|
url = JellyfinValidator.parseUrl(host);
|
||||||
console.log('parsed url', url);
|
console.log('parsed url', url);
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
console.info(err);
|
console.info(err);
|
||||||
this.setState({
|
this.setState({
|
||||||
isValidating: false,
|
isValidating: false,
|
||||||
@ -70,7 +70,7 @@ export default class ServerInput extends React.Component {
|
|||||||
let servers = await CachingStorage.getInstance().getItem(StorageKeys.Servers) || [];
|
let servers = await CachingStorage.getInstance().getItem(StorageKeys.Servers) || [];
|
||||||
servers = servers.concat([{ url }]);
|
servers = servers.concat([{ url }]);
|
||||||
await CachingStorage.getInstance().setItem(StorageKeys.Servers, servers);
|
await CachingStorage.getInstance().setItem(StorageKeys.Servers, servers);
|
||||||
await CachingStorage.getInstance().setItem(StorageKeys.ActiveServer, servers.length - 1)
|
await CachingStorage.getInstance().setItem(StorageKeys.ActiveServer, servers.length - 1);
|
||||||
// Call the success callback if present
|
// Call the success callback if present
|
||||||
if (this.props.onSuccess) {
|
if (this.props.onSuccess) {
|
||||||
this.props.onSuccess();
|
this.props.onSuccess();
|
||||||
@ -81,7 +81,7 @@ export default class ServerInput extends React.Component {
|
|||||||
this.setState({
|
this.setState({
|
||||||
isValid: false,
|
isValid: false,
|
||||||
validationMessage: 'Server Address cannot be empty'
|
validationMessage: 'Server Address cannot be empty'
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,4 +39,4 @@ const styles = StyleSheet.create({
|
|||||||
marginLeft: 15,
|
marginLeft: 15,
|
||||||
marginRight: 15
|
marginRight: 15
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -20,5 +20,5 @@ export default {
|
|||||||
warningBackground: '#EAEB5E',
|
warningBackground: '#EAEB5E',
|
||||||
warningText: '#666804',
|
warningText: '#666804',
|
||||||
noticeBackground: tintColor,
|
noticeBackground: tintColor,
|
||||||
noticeText: '#fff',
|
noticeText: '#fff'
|
||||||
};
|
};
|
||||||
|
@ -11,7 +11,7 @@ const height = Dimensions.get('window').height;
|
|||||||
export default {
|
export default {
|
||||||
window: {
|
window: {
|
||||||
width,
|
width,
|
||||||
height,
|
height
|
||||||
},
|
},
|
||||||
isSmallDevice: width < 375,
|
isSmallDevice: width < 375
|
||||||
};
|
};
|
||||||
|
@ -8,4 +8,4 @@ const prefix = 'org.jellyfin.expo';
|
|||||||
export default {
|
export default {
|
||||||
ActiveServer: `${prefix}:ActiveServer`,
|
ActiveServer: `${prefix}:ActiveServer`,
|
||||||
Servers: `${prefix}:Servers`
|
Servers: `${prefix}:Servers`
|
||||||
}
|
};
|
||||||
|
@ -15,4 +15,4 @@ export default createAppContainer(createSwitchNavigator({
|
|||||||
Main: MainTabNavigator
|
Main: MainTabNavigator
|
||||||
}, {
|
}, {
|
||||||
initialRouteName: 'ServerLoading'
|
initialRouteName: 'ServerLoading'
|
||||||
}));
|
}));
|
||||||
|
@ -7,7 +7,7 @@ import React from 'react';
|
|||||||
import { Platform } from 'react-native';
|
import { Platform } from 'react-native';
|
||||||
import { createStackNavigator, createBottomTabNavigator } from 'react-navigation';
|
import { createStackNavigator, createBottomTabNavigator } from 'react-navigation';
|
||||||
|
|
||||||
import Colors from '../constants/Colors'
|
import Colors from '../constants/Colors';
|
||||||
import TabBarIcon from '../components/TabBarIcon';
|
import TabBarIcon from '../components/TabBarIcon';
|
||||||
import HomeScreen from '../screens/HomeScreen';
|
import HomeScreen from '../screens/HomeScreen';
|
||||||
import SettingsScreen from '../screens/SettingsScreen';
|
import SettingsScreen from '../screens/SettingsScreen';
|
||||||
@ -17,10 +17,10 @@ const defaultNavigationOptions = {
|
|||||||
backgroundColor: Colors.backgroundColor
|
backgroundColor: Colors.backgroundColor
|
||||||
},
|
},
|
||||||
headerTintColor: Colors.headerTintColor
|
headerTintColor: Colors.headerTintColor
|
||||||
}
|
};
|
||||||
|
|
||||||
const HomeStack = createStackNavigator({
|
const HomeStack = createStackNavigator({
|
||||||
Home: HomeScreen,
|
Home: HomeScreen
|
||||||
}, {
|
}, {
|
||||||
defaultNavigationOptions
|
defaultNavigationOptions
|
||||||
});
|
});
|
||||||
@ -55,15 +55,15 @@ HomeStack.navigationOptions = ({ navigation }) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const SettingsStack = createStackNavigator({
|
const SettingsStack = createStackNavigator({
|
||||||
Settings: SettingsScreen,
|
Settings: SettingsScreen
|
||||||
}, {
|
}, {
|
||||||
defaultNavigationOptions
|
defaultNavigationOptions
|
||||||
});
|
});
|
||||||
|
|
||||||
SettingsStack.navigationOptions = {
|
SettingsStack.navigationOptions = {
|
||||||
tabBarLabel: 'Settings',
|
tabBarLabel: 'Settings',
|
||||||
// eslint-disable-next-line react/display-name, react/prop-types
|
// eslint-disable-next-line react/display-name, react/prop-types
|
||||||
tabBarIcon: ({ focused }) => (
|
tabBarIcon: ({ focused }) => (
|
||||||
<TabBarIcon
|
<TabBarIcon
|
||||||
focused={focused}
|
focused={focused}
|
||||||
name={
|
name={
|
||||||
@ -72,12 +72,12 @@ SettingsStack.navigationOptions = {
|
|||||||
: 'md-cog'
|
: 'md-cog'
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
),
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
export default createBottomTabNavigator({
|
export default createBottomTabNavigator({
|
||||||
HomeStack,
|
HomeStack,
|
||||||
SettingsStack,
|
SettingsStack
|
||||||
}, {
|
}, {
|
||||||
tabBarOptions: {
|
tabBarOptions: {
|
||||||
activeTintColor: Colors.tabIconSelected,
|
activeTintColor: Colors.tabIconSelected,
|
||||||
|
@ -35,6 +35,9 @@
|
|||||||
"babel-eslint": "^10.0.2",
|
"babel-eslint": "^10.0.2",
|
||||||
"babel-preset-expo": "^8.1.0",
|
"babel-preset-expo": "^8.1.0",
|
||||||
"eslint": "^6.1.0",
|
"eslint": "^6.1.0",
|
||||||
|
"eslint-plugin-eslint-comments": "^3.1.2",
|
||||||
|
"eslint-plugin-import": "^2.20.2",
|
||||||
|
"eslint-plugin-promise": "^4.2.1",
|
||||||
"eslint-plugin-react": "^7.14.3",
|
"eslint-plugin-react": "^7.14.3",
|
||||||
"expo-cli": "^3.17.17",
|
"expo-cli": "^3.17.17",
|
||||||
"jest-expo": "^37.0.0"
|
"jest-expo": "^37.0.0"
|
||||||
|
@ -17,7 +17,7 @@ export default class AddServerScreen extends React.Component {
|
|||||||
<Image
|
<Image
|
||||||
style={styles.logoImage}
|
style={styles.logoImage}
|
||||||
source={require('../assets/images/logowhite.png')}
|
source={require('../assets/images/logowhite.png')}
|
||||||
fadeDuration={0} // we need to adjust Android devices (https://facebook.github.io/react-native/docs/image#fadeduration) fadeDuration prop to `0` as it's default value is `300`
|
fadeDuration={0} // we need to adjust Android devices (https://facebook.github.io/react-native/docs/image#fadeduration) fadeDuration prop to `0` as it's default value is `300`
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
<ServerInput
|
<ServerInput
|
||||||
@ -25,7 +25,7 @@ export default class AddServerScreen extends React.Component {
|
|||||||
containerStyle={styles.serverTextContainer}
|
containerStyle={styles.serverTextContainer}
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -47,4 +47,4 @@ const styles = StyleSheet.create({
|
|||||||
// Aspect ration of the logo
|
// Aspect ration of the logo
|
||||||
aspectRatio: 3.18253
|
aspectRatio: 3.18253
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -123,7 +123,7 @@ export default class HomeScreen extends React.Component {
|
|||||||
default:
|
default:
|
||||||
console.debug('[HomeScreen.onMessage]', event, data);
|
console.debug('[HomeScreen.onMessage]', event, data);
|
||||||
}
|
}
|
||||||
} catch(ex) {
|
} catch (ex) {
|
||||||
console.warn('Exception handling message', state.data);
|
console.warn('Exception handling message', state.data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -146,7 +146,7 @@ export default class HomeScreen extends React.Component {
|
|||||||
console.debug('locking orientation to landscape');
|
console.debug('locking orientation to landscape');
|
||||||
ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.LANDSCAPE);
|
ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.LANDSCAPE);
|
||||||
} else {
|
} else {
|
||||||
console.debug('removing orientation lock')
|
console.debug('removing orientation lock');
|
||||||
// Remove the orientation lock
|
// Remove the orientation lock
|
||||||
ScreenOrientation.unlockAsync();
|
ScreenOrientation.unlockAsync();
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@ export default class ServerLoadingScreen extends React.Component {
|
|||||||
if (!this.state.areResourcesReady) {
|
if (!this.state.areResourcesReady) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={styles.container}>
|
<View style={styles.container}>
|
||||||
<Image
|
<Image
|
||||||
@ -52,7 +52,7 @@ export default class ServerLoadingScreen extends React.Component {
|
|||||||
// wait for image's content to fully load [`Image#onLoadEnd`] (https://facebook.github.io/react-native/docs/image#onloadend)
|
// wait for image's content to fully load [`Image#onLoadEnd`] (https://facebook.github.io/react-native/docs/image#onloadend)
|
||||||
SplashScreen.hide();
|
SplashScreen.hide();
|
||||||
}}
|
}}
|
||||||
fadeDuration={0} // we need to adjust Android devices (https://facebook.github.io/react-native/docs/image#fadeduration) fadeDuration prop to `0` as it's default value is `300`
|
fadeDuration={0} // we need to adjust Android devices (https://facebook.github.io/react-native/docs/image#fadeduration) fadeDuration prop to `0` as it's default value is `300`
|
||||||
/>
|
/>
|
||||||
<ActivityIndicator />
|
<ActivityIndicator />
|
||||||
</View>
|
</View>
|
||||||
@ -65,4 +65,4 @@ const styles = StyleSheet.create({
|
|||||||
flex: 1,
|
flex: 1,
|
||||||
backgroundColor: Colors.backgroundColor
|
backgroundColor: Colors.backgroundColor
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -30,7 +30,7 @@ import { openBrowser } from '../utils/WebBrowser';
|
|||||||
|
|
||||||
export default class SettingsScreen extends React.Component {
|
export default class SettingsScreen extends React.Component {
|
||||||
static navigationOptions = {
|
static navigationOptions = {
|
||||||
title: 'Settings',
|
title: 'Settings'
|
||||||
};
|
};
|
||||||
|
|
||||||
state = {
|
state = {
|
||||||
@ -40,24 +40,28 @@ export default class SettingsScreen extends React.Component {
|
|||||||
|
|
||||||
_keyExtractor = (item, index) => `${item.name}-${index}`;
|
_keyExtractor = (item, index) => `${item.name}-${index}`;
|
||||||
|
|
||||||
_renderLink = ({ item, index }) => {console.log('renderLink', item); return (
|
_renderLink = ({ item, index }) => {
|
||||||
<ListItem
|
console.log('renderLink', item);
|
||||||
title={item.name}
|
return (
|
||||||
leftIcon={item.icon}
|
<ListItem
|
||||||
topDivider={index === 0}
|
title={item.name}
|
||||||
bottomDivider
|
leftIcon={item.icon}
|
||||||
chevron
|
topDivider={index === 0}
|
||||||
onPress={() => {
|
bottomDivider
|
||||||
openBrowser(item.url)
|
chevron
|
||||||
}}
|
onPress={() => {
|
||||||
/>
|
openBrowser(item.url);
|
||||||
)};
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
_renderServer = ({ item, index }) => {
|
_renderServer = ({ item, index }) => {
|
||||||
const { info, serverUrl, online = false } = item;
|
const { info, serverUrl, online = false } = item;
|
||||||
console.log('renderServer', info, serverUrl, online);
|
console.log('renderServer', info, serverUrl, online);
|
||||||
|
|
||||||
let title, subtitle;
|
let title;
|
||||||
|
let subtitle;
|
||||||
if (info) {
|
if (info) {
|
||||||
title = info.ServerName;
|
title = info.ServerName;
|
||||||
subtitle = `Version: ${info.Version}\n${serverUrl}`;
|
subtitle = `Version: ${info.Version}\n${serverUrl}`;
|
||||||
@ -117,7 +121,7 @@ export default class SettingsScreen extends React.Component {
|
|||||||
let serverUrl;
|
let serverUrl;
|
||||||
try {
|
try {
|
||||||
serverUrl = JellyfinValidator.getServerUrl(server);
|
serverUrl = JellyfinValidator.getServerUrl(server);
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
serverUrl = '';
|
serverUrl = '';
|
||||||
}
|
}
|
||||||
// Try to fetch the server's public info
|
// Try to fetch the server's public info
|
||||||
@ -132,7 +136,7 @@ export default class SettingsScreen extends React.Component {
|
|||||||
online: true
|
online: true
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
return Object.assign(
|
return Object.assign(
|
||||||
{},
|
{},
|
||||||
server,
|
server,
|
||||||
|
@ -52,4 +52,4 @@ export default class CachingStorage {
|
|||||||
await AsyncStorage.setItem(key, JSON.stringify(item));
|
await AsyncStorage.setItem(key, JSON.stringify(item));
|
||||||
this.cache.set(key, item);
|
this.cache.set(key, item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,7 @@ export default class JellyfinValidator {
|
|||||||
|
|
||||||
const responseJson = await request.then(response => {
|
const responseJson = await request.then(response => {
|
||||||
clearTimeout(timeoutId);
|
clearTimeout(timeoutId);
|
||||||
return response.json()
|
return response.json();
|
||||||
});
|
});
|
||||||
console.log('response', responseJson);
|
console.log('response', responseJson);
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ export default class JellyfinValidator {
|
|||||||
|
|
||||||
static getServerUrl(server = {}) {
|
static getServerUrl(server = {}) {
|
||||||
if (!server || !server.url || !server.url.href) {
|
if (!server || !server.url || !server.url.href) {
|
||||||
throw new Error(`Cannot get server url for invalid server ${server}`)
|
throw new Error(`Cannot get server url for invalid server ${server}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Strip the query string or hash if present
|
// Strip the query string or hash if present
|
||||||
@ -84,7 +84,7 @@ export default class JellyfinValidator {
|
|||||||
try {
|
try {
|
||||||
// Does the server have a valid url?
|
// Does the server have a valid url?
|
||||||
this.getServerUrl(server);
|
this.getServerUrl(server);
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
return {
|
return {
|
||||||
isValid: false,
|
isValid: false,
|
||||||
message: 'Invalid URL'
|
message: 'Invalid URL'
|
||||||
@ -108,10 +108,10 @@ export default class JellyfinValidator {
|
|||||||
isValid
|
isValid
|
||||||
};
|
};
|
||||||
if (!isValid) {
|
if (!isValid) {
|
||||||
answer.message = 'Not a Jellyfin server'
|
answer.message = 'Not a Jellyfin server';
|
||||||
}
|
}
|
||||||
return answer;
|
return answer;
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
return {
|
return {
|
||||||
isValid: false,
|
isValid: false,
|
||||||
message: 'Could not connect to server'
|
message: 'Could not connect to server'
|
||||||
|
@ -60,4 +60,4 @@ export default {
|
|||||||
color: Colors.textColor
|
color: Colors.textColor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -15,14 +15,14 @@ export async function openBrowser(url, options) {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
await WebBrowser.openBrowserAsync(url, finalOptions);
|
await WebBrowser.openBrowserAsync(url, finalOptions);
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
// Workaround issue where swiping browser closed does not dismiss it.
|
// Workaround issue where swiping browser closed does not dismiss it.
|
||||||
// https://github.com/expo/expo/issues/6918
|
// https://github.com/expo/expo/issues/6918
|
||||||
if (err.message === 'Another WebBrowser is already being presented.') {
|
if (err.message === 'Another WebBrowser is already being presented.') {
|
||||||
try {
|
try {
|
||||||
await WebBrowser.dismissBrowser();
|
await WebBrowser.dismissBrowser();
|
||||||
return WebBrowser.openBrowserAsync(url, finalOptions);
|
return WebBrowser.openBrowserAsync(url, finalOptions);
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
console.warn('Could not dismiss and reopen browser', err);
|
console.warn('Could not dismiss and reopen browser', err);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
84
yarn.lock
84
yarn.lock
@ -3399,6 +3399,14 @@ array-unique@^0.3.2:
|
|||||||
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
||||||
integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
|
integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
|
||||||
|
|
||||||
|
array.prototype.flat@^1.2.1:
|
||||||
|
version "1.2.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b"
|
||||||
|
integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
|
||||||
|
dependencies:
|
||||||
|
define-properties "^1.1.3"
|
||||||
|
es-abstract "^1.17.0-next.1"
|
||||||
|
|
||||||
arrify@^1.0.1:
|
arrify@^1.0.1:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
||||||
@ -4760,6 +4768,11 @@ constants-browserify@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
|
resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
|
||||||
integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
|
integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
|
||||||
|
|
||||||
|
contains-path@^0.1.0:
|
||||||
|
version "0.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
|
||||||
|
integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=
|
||||||
|
|
||||||
content-disposition@0.5.2:
|
content-disposition@0.5.2:
|
||||||
version "0.5.2"
|
version "0.5.2"
|
||||||
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
|
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
|
||||||
@ -5180,7 +5193,7 @@ debounce@^1.2.0:
|
|||||||
resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.0.tgz#44a540abc0ea9943018dc0eaa95cce87f65cd131"
|
resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.0.tgz#44a540abc0ea9943018dc0eaa95cce87f65cd131"
|
||||||
integrity sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==
|
integrity sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==
|
||||||
|
|
||||||
debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0:
|
debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
|
||||||
version "2.6.9"
|
version "2.6.9"
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
||||||
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
|
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
|
||||||
@ -5515,6 +5528,14 @@ dns-txt@^2.0.2:
|
|||||||
dependencies:
|
dependencies:
|
||||||
buffer-indexof "^1.0.0"
|
buffer-indexof "^1.0.0"
|
||||||
|
|
||||||
|
doctrine@1.5.0:
|
||||||
|
version "1.5.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
|
||||||
|
integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=
|
||||||
|
dependencies:
|
||||||
|
esutils "^2.0.2"
|
||||||
|
isarray "^1.0.0"
|
||||||
|
|
||||||
doctrine@^2.1.0:
|
doctrine@^2.1.0:
|
||||||
version "2.1.0"
|
version "2.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
|
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
|
||||||
@ -5842,6 +5863,53 @@ escodegen@^1.9.1:
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
source-map "~0.6.1"
|
source-map "~0.6.1"
|
||||||
|
|
||||||
|
eslint-import-resolver-node@^0.3.2:
|
||||||
|
version "0.3.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404"
|
||||||
|
integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg==
|
||||||
|
dependencies:
|
||||||
|
debug "^2.6.9"
|
||||||
|
resolve "^1.13.1"
|
||||||
|
|
||||||
|
eslint-module-utils@^2.4.1:
|
||||||
|
version "2.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6"
|
||||||
|
integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==
|
||||||
|
dependencies:
|
||||||
|
debug "^2.6.9"
|
||||||
|
pkg-dir "^2.0.0"
|
||||||
|
|
||||||
|
eslint-plugin-eslint-comments@^3.1.2:
|
||||||
|
version "3.1.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.1.2.tgz#4ef6c488dbe06aa1627fea107b3e5d059fc8a395"
|
||||||
|
integrity sha512-QexaqrNeteFfRTad96W+Vi4Zj1KFbkHHNMMaHZEYcovKav6gdomyGzaxSDSL3GoIyUOo078wRAdYlu1caiauIQ==
|
||||||
|
dependencies:
|
||||||
|
escape-string-regexp "^1.0.5"
|
||||||
|
ignore "^5.0.5"
|
||||||
|
|
||||||
|
eslint-plugin-import@^2.20.2:
|
||||||
|
version "2.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz#91fc3807ce08be4837141272c8b99073906e588d"
|
||||||
|
integrity sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg==
|
||||||
|
dependencies:
|
||||||
|
array-includes "^3.0.3"
|
||||||
|
array.prototype.flat "^1.2.1"
|
||||||
|
contains-path "^0.1.0"
|
||||||
|
debug "^2.6.9"
|
||||||
|
doctrine "1.5.0"
|
||||||
|
eslint-import-resolver-node "^0.3.2"
|
||||||
|
eslint-module-utils "^2.4.1"
|
||||||
|
has "^1.0.3"
|
||||||
|
minimatch "^3.0.4"
|
||||||
|
object.values "^1.1.0"
|
||||||
|
read-pkg-up "^2.0.0"
|
||||||
|
resolve "^1.12.0"
|
||||||
|
|
||||||
|
eslint-plugin-promise@^4.2.1:
|
||||||
|
version "4.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz#845fd8b2260ad8f82564c1222fce44ad71d9418a"
|
||||||
|
integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==
|
||||||
|
|
||||||
eslint-plugin-react@^7.14.3:
|
eslint-plugin-react@^7.14.3:
|
||||||
version "7.18.3"
|
version "7.18.3"
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.18.3.tgz#8be671b7f6be095098e79d27ac32f9580f599bc8"
|
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.18.3.tgz#8be671b7f6be095098e79d27ac32f9580f599bc8"
|
||||||
@ -7634,6 +7702,11 @@ ignore@^4.0.6:
|
|||||||
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
|
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
|
||||||
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
|
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
|
||||||
|
|
||||||
|
ignore@^5.0.5:
|
||||||
|
version "5.1.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf"
|
||||||
|
integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==
|
||||||
|
|
||||||
image-size@^0.6.0:
|
image-size@^0.6.0:
|
||||||
version "0.6.3"
|
version "0.6.3"
|
||||||
resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2"
|
resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2"
|
||||||
@ -11072,6 +11145,13 @@ pixelmatch@^4.0.2:
|
|||||||
dependencies:
|
dependencies:
|
||||||
pngjs "^3.0.0"
|
pngjs "^3.0.0"
|
||||||
|
|
||||||
|
pkg-dir@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
|
||||||
|
integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
|
||||||
|
dependencies:
|
||||||
|
find-up "^2.1.0"
|
||||||
|
|
||||||
pkg-dir@^3.0.0:
|
pkg-dir@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
|
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
|
||||||
@ -12488,7 +12568,7 @@ resolve@1.1.7:
|
|||||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
||||||
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
|
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
|
||||||
|
|
||||||
resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.5.0, resolve@^1.8.1:
|
resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.5.0, resolve@^1.8.1:
|
||||||
version "1.15.1"
|
version "1.15.1"
|
||||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"
|
||||||
integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==
|
integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==
|
||||||
|
Loading…
Reference in New Issue
Block a user