mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
// import {DraftStore, React, Actions, NylasAPI, DatabaseStore, Message, Rx} from 'nylas-exports'
|
|
import {React, APIError, NylasAPI} from 'nylas-exports'
|
|
import {MetadataComposerToggleButton} from 'nylas-component-kit'
|
|
import {PLUGIN_ID, PLUGIN_NAME} from './open-tracking-constants'
|
|
import uuid from 'node-uuid';
|
|
|
|
export default class OpenTrackingButton extends React.Component {
|
|
static displayName = 'OpenTrackingButton';
|
|
|
|
static propTypes = {
|
|
draftClientId: React.PropTypes.string.isRequired,
|
|
};
|
|
|
|
_title(enabled) {
|
|
const dir = enabled ? "Disable" : "Enable";
|
|
return `${dir} read receipts`
|
|
}
|
|
|
|
_errorMessage(error) {
|
|
if (error instanceof APIError && error.statusCode === NylasAPI.TimeoutErrorCode) {
|
|
return `Read receipts do not work offline. Please re-enable when you come back online.`
|
|
}
|
|
return `Unfortunately, read receipts are currently not available. Please try again later. Error: ${error.message}`
|
|
}
|
|
|
|
render() {
|
|
const enabledValue = {
|
|
uid: uuid.v4().replace(/-/g, ""),
|
|
open_count: 0,
|
|
open_data: [],
|
|
};
|
|
|
|
return (
|
|
<MetadataComposerToggleButton
|
|
title={this._title}
|
|
iconUrl="nylas://open-tracking/assets/icon-composer-eye@2x.png"
|
|
pluginId={PLUGIN_ID}
|
|
pluginName={PLUGIN_NAME}
|
|
metadataEnabledValue={enabledValue}
|
|
stickyToggle
|
|
errorMessage={this._errorMessage}
|
|
draftClientId={this.props.draftClientId} />
|
|
)
|
|
}
|
|
}
|