1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

Merge branch 'master' into feature/consume-flow

This commit is contained in:
Jernej Pregelj 2019-03-25 15:25:31 +01:00 committed by GitHub
commit c6f1e35c54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 7 deletions

7
CHANGELOG.md Normal file
View File

@ -0,0 +1,7 @@
History
=======
0.1.0 (Mar 31th, 2019)
-------------------------
* First version

View File

@ -160,11 +160,10 @@ class App extends Component<{}, AppState> {
isLoading: false,
ocean
})
// TODO: squid-js balance retrieval fix
const accounts = await ocean.accounts.list()
const balance = await accounts[0].getBalance()
this.setState({ balance })
// TODO: squid-js expose keeper for getNetworkName
const network = await ocean.keeper.getNetworkName()
this.setState({ balance, network })
} catch (e) {
Logger.log('ocean/balance error', e)
this.setState({

View File

@ -50,8 +50,8 @@ export default class AssetsUser extends PureComponent {
<div className={styles.assets}>
{this.state.results
.filter(asset => !!asset)
.map((asset, index) => (
<Asset key={index} asset={asset} />
.map((asset: any) => (
<Asset key={asset.id} asset={asset} />
))
}
</div>

View File

@ -4,6 +4,7 @@ import Route from '../components/templates/Route'
import { User } from '../context/User'
import Asset from '../components/molecules/Asset'
import styles from './Search.module.scss'
import { Logger } from '@oceanprotocol/squid'
interface SearchState {
results: any[]
@ -26,8 +27,8 @@ export default class Search extends Component<SearchProps, SearchState> {
public renderResults = () =>
this.state.results.length ? (
<div className={styles.results}>
{this.state.results.map(asset => (
<Asset key={asset} asset={asset} />
{this.state.results.map((asset: any) => (
<Asset key={asset.id} asset={asset} />
))}
</div>
) : (