diff --git a/LICENSE b/LICENSE index 08b5886..eb958df 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017-2018 LBRY Inc +Copyright (c) 2017-2019 LBRY Inc Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish,distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/package-lock.json b/package-lock.json index 1d0eb6f..b742d5b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5640,8 +5640,8 @@ } }, "lbry-redux": { - "version": "github:lbryio/lbry-redux#23bcde0539a27fb19bf3a7d87683279194e02046", - "from": "github:lbryio/lbry-redux#23bcde0539a27fb19bf3a7d87683279194e02046", + "version": "github:lbryio/lbry-redux#f06e1e64a8587a183bd7333f628fca821fe81fa4", + "from": "github:lbryio/lbry-redux#f06e1e64a8587a183bd7333f628fca821fe81fa4", "requires": { "proxy-polyfill": "0.1.6", "reselect": "^3.0.0", @@ -5649,8 +5649,8 @@ } }, "lbryinc": { - "version": "github:lbryio/lbryinc#67bb3e215be3f13605c5e3f9f2b0e2fb880724cf", - "from": "github:lbryio/lbryinc#67bb3e215be3f13605c5e3f9f2b0e2fb880724cf", + "version": "github:lbryio/lbryinc#02d8571cd7fafd00d1a60f133d884eb8c5f1a306", + "from": "github:lbryio/lbryinc#02d8571cd7fafd00d1a60f133d884eb8c5f1a306", "requires": { "reselect": "^3.0.0" } diff --git a/src/component/modalSuggestedSubscriptions/index.js b/src/component/modalSuggestedSubscriptions/index.js new file mode 100644 index 0000000..6eef7f4 --- /dev/null +++ b/src/component/modalSuggestedSubscriptions/index.js @@ -0,0 +1,4 @@ +import { connect } from 'react-redux'; +import ModalSuggestedSubscriptions from './view'; + +export default connect()(ModalSuggestedSubscriptions); diff --git a/src/component/modalSuggestedSubscriptions/view.js b/src/component/modalSuggestedSubscriptions/view.js new file mode 100644 index 0000000..0c8765e --- /dev/null +++ b/src/component/modalSuggestedSubscriptions/view.js @@ -0,0 +1,26 @@ +import React from 'react'; +import { ScrollView, Text, TouchableOpacity, View } from 'react-native'; +import modalStyle from 'styles/modal'; +import subscriptionsStyle from 'styles/subscriptions'; +import Button from 'component/button'; +import Colors from 'styles/colors'; +import SuggestedSubscriptions from 'component/suggestedSubscriptions'; +import Constants from 'constants'; // eslint-disable-line node/no-deprecated-api +import Icon from 'react-native-vector-icons/FontAwesome5'; + +export default class ModalSuggestedSubcriptions extends React.PureComponent { + render() { + const { navigation, onDonePress, onOverlayPress } = this.props; + + return ( + + + + +