Mailspring/internal_packages/open-tracking/lib/open-tracking-button.jsx
Evan Morikawa f0e76019fd fix(error-handling): handle offline for link tracking & read-receipts
Fix offline error handling of link tracking and read receipts

Fix ellipses for tooltips

Allow you to change the title in the error box
2016-02-24 16:06:08 -08:00

39 lines
1.3 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'
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.`
}
render() {
return (
<MetadataComposerToggleButton
title={this._title}
iconUrl="nylas://open-tracking/assets/icon-composer-eye@2x.png"
pluginId={PLUGIN_ID}
pluginName={PLUGIN_NAME}
metadataKey="tracked"
stickyToggle
errorMessage={this._errorMessage}
draftClientId={this.props.draftClientId} />
)
}
}