mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import {React, UpdateChannelStore} from 'nylas-exports';
|
|
import {Notification} from 'nylas-component-kit';
|
|
|
|
export default class UnstableChannelNotification extends React.Component {
|
|
static displayName = 'UnstableChannelNotification';
|
|
|
|
constructor() {
|
|
super();
|
|
this.state = {
|
|
isUnstableChannel: UpdateChannelStore.currentIsUnstable(),
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
this._unsub = UpdateChannelStore.listen(() => {
|
|
this.setState({
|
|
isUnstableChannel: UpdateChannelStore.currentIsUnstable(),
|
|
});
|
|
});
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this._unsub) {
|
|
this._unsub();
|
|
}
|
|
}
|
|
|
|
_onReportIssue = () => {
|
|
NylasEnv.windowEventHandler.openLink({href: 'mailto:support@nylas.com'})
|
|
}
|
|
|
|
render() {
|
|
if (!this.state.isUnstableChannel) {
|
|
return <span />
|
|
}
|
|
return (
|
|
<Notification
|
|
priority="0"
|
|
displayName={UnstableChannelNotification.displayName}
|
|
title="You're on a pre-release channel. We'd love your feedback."
|
|
subtitle="You can switch back to stable from N1's preferences."
|
|
icon="volstead-defaultclient.png"
|
|
actions={[{
|
|
label: "Feedback",
|
|
fn: this._onReportIssue,
|
|
}]}
|
|
isDismissable
|
|
isPermanentlyDismissable
|
|
/>
|
|
)
|
|
}
|
|
}
|