mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
78 lines
2.1 KiB
JavaScript
78 lines
2.1 KiB
JavaScript
/** @babel */
|
|
import NylasStore from 'nylas-store'
|
|
import {
|
|
NylasAPI,
|
|
Actions,
|
|
Message,
|
|
DatabaseStore,
|
|
} from 'nylas-exports'
|
|
import SendLaterActions from './send-later-actions'
|
|
import {PLUGIN_ID, PLUGIN_NAME} from './send-later-constants'
|
|
|
|
|
|
class SendLaterStore extends NylasStore {
|
|
|
|
constructor(pluginId = PLUGIN_ID, pluginName = PLUGIN_NAME) {
|
|
super()
|
|
this.pluginId = pluginId;
|
|
this.pluginName = pluginName;
|
|
}
|
|
|
|
activate() {
|
|
this.unsubscribers = [
|
|
SendLaterActions.sendLater.listen(this.onSendLater),
|
|
SendLaterActions.cancelSendLater.listen(this.onCancelSendLater),
|
|
];
|
|
}
|
|
|
|
setMetadata = (draftClientId, metadata) => {
|
|
return DatabaseStore.modelify(Message, [draftClientId])
|
|
.then((messages) => {
|
|
const message = messages[0];
|
|
|
|
return NylasAPI.authPlugin(this.pluginId, this.pluginName, message.accountId)
|
|
.then(() => {
|
|
Actions.setMetadata(message, this.pluginId, metadata);
|
|
Actions.ensureDraftSynced(message.clientId);
|
|
})
|
|
.catch((error) => {
|
|
NylasEnv.reportError(error);
|
|
NylasEnv.showErrorDialog(`Sorry, we were unable to schedule this message. ${error.message}`);
|
|
});
|
|
});
|
|
};
|
|
|
|
recordAction(sendLaterDate, dateLabel) {
|
|
try {
|
|
if (sendLaterDate) {
|
|
const min = Math.round(((new Date(sendLaterDate)).valueOf() - Date.now()) / 1000 / 60);
|
|
Actions.recordUserEvent("Send Later", {
|
|
sendLaterTime: min,
|
|
optionLabel: dateLabel,
|
|
});
|
|
} else {
|
|
Actions.recordUserEvent("Send Later Cancel");
|
|
}
|
|
} catch (e) {
|
|
// Do nothing
|
|
}
|
|
}
|
|
|
|
onSendLater = (draftClientId, sendLaterDate, dateLabel) => {
|
|
this.recordAction(sendLaterDate, dateLabel)
|
|
this.setMetadata(draftClientId, {sendLaterDate}).then(() => {
|
|
Actions.closePopover();
|
|
});
|
|
};
|
|
|
|
onCancelSendLater = (draftClientId) => {
|
|
this.recordAction(null)
|
|
this.setMetadata(draftClientId, {sendLaterDate: null});
|
|
};
|
|
|
|
deactivate = () => {
|
|
this.unsubscribers.forEach(unsub => unsub());
|
|
};
|
|
}
|
|
|
|
export default SendLaterStore
|