Mailspring/internal_packages/feedback/lib/feedback-button.cjsx
Drew Regitsky 09b91a0a28 feature(feedback): move feedback to a package, indicator for new msgs
Summary: Move all Intercom feedback code to a package. Change the appearance of the lower right question mark icon when a new intercom message is received (red, with repeating CSS bounce animation). New messages are detected by keeping the intercom window open (after the first time it's opened by the user), and listening for DOM mutations of particular classes.

Test Plan: manual

Reviewers: bengotow

Reviewed By: bengotow

Subscribers: evan

Differential Revision: https://phab.nylas.com/D2125
2015-10-07 13:55:54 -07:00

92 lines
2.7 KiB
CoffeeScript

{Utils,
React,
FocusedContactsStore,
AccountStore,
Actions} = require 'nylas-exports'
{RetinaImg} = require 'nylas-component-kit'
class FeedbackButton extends React.Component
@displayName: 'FeedbackButton'
constructor: (@props) ->
@state = {newMessages: false}
componentDidMount: =>
@unsubscribe = Actions.sendFeedback.listen(@_onSendFeedback)
componentWillUnmount: =>
@unsubscribe()
render: =>
<div style={position:"absolute",height:0}>
<div className={@_getClassName()} onClick={@_onSendFeedback}>?</div>
</div>
_getClassName: =>
return "btn-feedback" + if @state.newMessages then " newmsg" else ""
_onSendFeedback: =>
return if atom.inSpecMode()
BrowserWindow = require('remote').require('browser-window')
Screen = require('remote').require('screen')
path = require 'path'
qs = require 'querystring'
ipc_path = require.resolve("electron-safe-ipc/host")
ipc = require('remote').require(ipc_path)
if window.feedbackWindow?
window.feedbackWindow.show()
else
account = AccountStore.current()
params = qs.stringify({
name: account.name
email: account.emailAddress
accountId: account.id
accountProvider: account.provider
platform: process.platform
provider: account.displayProvider()
organizational_unit: account.organizationUnit
version: atom.getVersion()
})
parentBounds = atom.getCurrentWindow().getBounds()
parentScreen = Screen.getDisplayMatching(parentBounds)
width = 376
height = Math.min(550, parentBounds.height)
x = Math.min(parentScreen.workAreaSize.width - width, Math.max(0, parentBounds.x + parentBounds.width - 36 - width / 2))
y = Math.max(0, (parentBounds.y + parentBounds.height) - height - 60)
window.feedbackWindow = w = new BrowserWindow
'node-integration': false,
'web-preferences': {'web-security':false},
'x': x
'y': y
'width': width,
'height': height,
'title': 'Feedback'
# Disable window close, hide instead
w.on 'close', (event) ->
# inside the window we prevent close - here we route close to hide
event.preventDefault() # this does nothing, contrary to the docs
w.hide()
w.on 'closed', (event) ->
window.feedbackWindow = null # if the window does get closed, clear our ref to it
ipc.on "fromRenderer", (event,data) =>
if event == "newFeedbackMessages"
@setState(newMessages:data)
url = path.join __dirname, '..', 'feedback.html'
w.loadUrl("file://#{url}?#{params}")
w.show()
module.exports = FeedbackButton