This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String file contents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String file contents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function updateGist(gistId, gist) { | |
const xhrOptions = { | |
url: `https://api.github.com/gists/${gistId}`, | |
json: true, | |
body: gist, | |
headers | |
}; | |
const actionCreators = createActionCreators('create', { | |
resourceName: 'gists', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This will explode if the browser doesn't support `fetch`, so be sure to test for that first. | |
var canAbortFetch = 'signal' in Request.prototype; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
calcEndPortfolio: function(form, i, j) { | |
var feesIncurred = this.roundTwoDecimals((this.sim[i][j].portfolio.start + this.sim[i][j].equities.growth + this.sim[i][j].bonds.growth + this.sim[i][j].cash.growth + this.sim[i][j].gold.growth) * (form.portfolio.percentFees / 100)); | |
this.sim[i][j].portfolio.fees = feesIncurred; | |
var curValue = this.sim[i][j].equities.end + this.sim[i][j].bonds.end + this.sim[i][j].cash.end + this.sim[i][j].gold.end; | |
var curPercEquities = this.sim[i][j].equities.end / curValue; | |
var currPercCash = this.sim[i][j].cash.end / curValue; | |
var currPercBonds = this.sim[i][j].bonds.end / curValue; | |
var currPercGold = this.sim[i][j].gold.end / curValue; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const books = await fetchInitialBooks(); | |
const booksReducer = resourceReducer('books', { | |
initialState: { | |
resources: books | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { connect } from 'react-redux'; | |
import { bindActionCreators } from 'redux'; | |
import { readBook } from '../redux/books/action-creators'; | |
class App extends Component { | |
render() { | |
const { isFetchingBook, book } = this.props; | |
return ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ModalContext from './modal-context'; | |
class Parent extends Component { | |
render() { | |
return ( | |
<ModalContext.Provider value={this.state.modalContext}> | |
<Child/> | |
</ModalContext.Provider> | |
); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String file contents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String file contents |