aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/tx-view.js
blob: 36c22897e31817179ca753aaf58e3def5dc819ee (plain) (tree)
1
2
3
4
5
6
7
8
9



                                              




                                                       



                                                                           






                                                                     
 





                                                         
 







                                                    








                                       

                    
                         


                            
                                       


                                                                                    

        
 
                       

                                          
                             


        


                                     
                


          










                                        
 





                                          
 

                                       
 







                                       


                                  
                    
 
                                 


                                  
                     
 
           

         
 

       
                       
              
                                          
       
        
 

                         
          
 

                  

                                               
           



                           
                                 

                     
 
         


                   
 







                                     





            



















































                                                          
const Component = require('react').Component
const connect = require('react-redux').connect
const h = require('react-hyperscript')
const inherits = require('util').inherits
const actions = require('../actions')
// slideout menu
const SlideoutMenu = require('react-burger-menu').slide
const WalletView = require('./wallet-view')

// const Identicon = require('./identicon')
// const AccountDropdowns = require('./account-dropdowns').AccountDropdowns
// const Content = require('./wallet-content-display')

module.exports = connect(mapStateToProps, mapDispatchToProps)(TxView)

function mapStateToProps (state) {
  return {
    sidebarOpen: state.appState.sidebarOpen,
  }
}

function mapDispatchToProps (dispatch) {
  return {
    showSidebar: () => {dispatch(actions.showSidebar())},
    hideSidebar: () => {dispatch(actions.hideSidebar())},
  }
}

const contentDivider = h('div', {
  style: {
    marginLeft: '1.3em',
    marginRight: '1.3em',
    height:'1px',
    background:'#E7E7E7', // TODO: make custom color
  },
})

inherits(TxView, Component)
function TxView () {
  Component.call(this)
}

TxView.prototype.render = function () {
  return h('div.tx-view.flex-column', {
    style: {
      flexGrow: 2,
      flexShrink: 0,
      flexBasis: '230px',
      background: '#FFFFFF',
    }
  }, [
    h('div.phone-visible.fa.fa-bars', {
      onClick: () => {
        this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar()
      }
    }, [
    ]),

    h('div.flex-row', {
      style: {
        margin: '1.8em 1.3em 0.8em 1.3em',
        // flex: '1 0 520px',
      }
    }, [

      // laptop: flex-row
      // mobile: flex-column
      h('div.flex-row.flex-center', {
        style: {
        }
      }, [

        // laptop: 50px 50px
        // mobile: 100px 100px
        h('img', {
          src: '../images/eth_logo.svg',
          width: '50px',
          height: '50px',
          style: {
            borderRadius: '25px',
            border: '1px solid',
          }
        }),

        // laptop: 5vw?
        // phone: 50vw?
        h('div.flex-column.flex-center', {
          style: {}
        }, [
          h('div', {}, '1001.124 ETH'),

          h('div', {}, '$300,000 USD'),
        ]),

        // laptop: 10vw?
        // phone: 75vw?
        h('div.flex-row.flex-center', {
          style: {
            width: '100%',
          }
        }, [
          h('button.btn-clear', {
            style: {
              textAlign: 'center',
            },
          }, 'BUY'),

          h('button.btn-clear', {
            style: {
              textAlign: 'center',
            },
          }, 'SEND'),

        ]),
      ]),


    ]),

    h('div.flex-row', {
      style: {
        margin: '1.8em 1.3em 0.8em 1.3em',
      }
    }, [

      // tx-view-tab.js
      h('div.flex-row', {
      }, [

        h('div', {
          style: {
            borderBottom: '0.07em solid black',
            paddingBottom: '0.015em',
          }
        }, 'TRANSACTIONS'),

        h('div', {
          style: {
            marginLeft: '1.25em',
          }
        }, 'TOKENS'),

      ]),
    ]),

    contentDivider,

    this.renderTransactionListItem(),

    contentDivider,

    this.renderTransactionListItem(),

    contentDivider,

  ])
  // column
  // tab row
  // divider
  // item
}

TxView.prototype.renderTransactionListItem = function () {
  return h('div.flex-column', {
    style: {
      alignItems: 'stretch',
      margin: '0.6em 1.3em 0.6em 1.3em',
    }
  }, [

    h('div', {
      style: {
        flexGrow: 1,
        marginTop: '0.3em',
      }
    }, 'Jul 01, 2017'),

    h('div.flex-row', {
      style: {
        alignItems: 'stretch',
      }
    }, [

      h('div', {
        style: {
          flexGrow: 1,
        }
      }, 'icon'),

      h('div', {
        style: {
          flexGrow: 3,
        }
      }, 'Hash'),

      h('div', {
        style: {
          flexGrow: 5,
        }
      }, 'Status'),

      h('div', {
        style: {
          flexGrow: 2,
        }
      }, 'Details'),

    ])

  ])
}