aboutsummaryrefslogblamecommitdiffstats
path: root/app/scripts/lib/notifications.js
blob: 0b55417b262efaa7b71f8f05102e94530e66eb25 (plain) (tree)
1
2
3
4
5
6
7
8
9
                               
                                               

                             
                  
                                                                   


                                               

















                                                                                       












                                                                                        























                                                         
 























                                                                    
const createId = require('hat')
const uiUtils = require('../../../ui/app/util')
var notificationHandlers = {}

module.exports = {
  createUnlockRequestNotification: createUnlockRequestNotification,
  createTxNotification: createTxNotification,
  createMsgNotification: createMsgNotification,
}

// notification button press
chrome.notifications.onButtonClicked.addListener(function(notificationId, buttonIndex){
  var handlers = notificationHandlers[notificationId]
  if (buttonIndex === 0) {
    handlers.confirm()
  } else {
    handlers.cancel()
  }
  chrome.notifications.clear(notificationId)
})

// notification teardown
chrome.notifications.onClosed.addListener(function(notificationId){
  delete notificationHandlers[notificationId]
})

// creation helper
function createUnlockRequestNotification(opts){
  var message = 'An Ethereum app has requested a signature. Please unlock your account.'

  var id = createId()
  chrome.notifications.create(id, {
    type: 'basic',
    iconUrl: '/images/icon-128.png',
    title: opts.title,
    message: message,
  })
  
}

function createTxNotification(opts){
  var message = [
    'to: '+uiUtils.addressSummary(opts.txParams.to),
    'from: '+uiUtils.addressSummary(opts.txParams.from),
    'value: '+uiUtils.formatBalance(opts.txParams.value),
    'data: '+uiUtils.dataSize(opts.txParams.data),
  ].join('\n')

  var id = createId()
  chrome.notifications.create(id, {
    type: 'basic',
    iconUrl: '/images/icon-128.png',
    title: opts.title,
    message: message,
    buttons: [{
      title: 'confirm',
    },{
      title: 'cancel',
    }]
  })
  notificationHandlers[id] = {
    confirm: opts.confirm,
    cancel: opts.cancel,
  }
}

function createMsgNotification(opts){
  var message = [
    'to be signed by: '+uiUtils.addressSummary(opts.msgParams.from),
    'message:\n'+opts.msgParams.data,
  ].join('\n')

  var id = createId()
  chrome.notifications.create(id, {
    type: 'basic',
    iconUrl: '/images/icon-128.png',
    title: opts.title,
    message: message,
    buttons: [{
      title: 'confirm',
    },{
      title: 'cancel',
    }]
  })
  notificationHandlers[id] = {
    confirm: opts.confirm,
    cancel: opts.cancel,
  }
}