Mailspring/internal_packages/composer-scheduler
Ben Gotow 585dab7cdf refactor(composer): Make session, draft available everywhere
Summary:
Up until now, we've been requiring that every plugin control in the composer take the draftClientId, retreive the session, listen to it, build state from the draft, etc. This is a huge pain and is hard to explain to newcomers becaus it frankly makes no sense.

In 0.3.45 we made it so that the ComposerView always has a non-null draft and session. (It isn't rendered until they're available). In this diff, I just pass those through to all the plugins and remove all the session retrieval cruft.

Almost none of the buttons have state of their own, which I think is appropriate.

They do render on every keystroke, but they were already running code (to recompute their state) on each keystroke and profiling suggests this has no impact.

Prepare for immutable

In preparation for Immutable models, make the draft store proxy returns a !== draft if any changes have been made. This means you can safely know that a draft has changed if `props.draft !== nextProps.draft`

Test Plan: Run tests

Reviewers: juan, evan

Reviewed By: juan, evan

Differential Revision: https://phab.nylas.com/D2902
2016-04-19 16:05:15 -07:00
..
assets refactor(scheduler): move all event data into metadata 2016-04-09 21:19:01 -04:00
lib refactor(composer): Make session, draft available everywhere 2016-04-19 16:05:15 -07:00
spec refactor(composer): Make session, draft available everywhere 2016-04-19 16:05:15 -07:00
stylesheets fix(scheduler): Make popover width even so it's not blurry 2016-04-11 18:33:53 -07:00
icon.png refactor(scheduler): move all event data into metadata 2016-04-09 21:19:01 -04:00
package.json refactor(scheduler): move all event data into metadata 2016-04-09 21:19:01 -04:00
README.md refactor(scheduler): move all event data into metadata 2016-04-09 21:19:01 -04:00

QuickSchedule

Say goodbye to the hassle of scheduling! This new plugin lets you avoid the typical back-and-forth of picking a time to meet. Just select a few options, and your recipient confirms with one click. It's the best way to instantly schedule meetings.

This plugin works by adding a small "Schedule" button next to the Send button in the composer. Clicking the button will prompt the creation of a quick event creator.

You can even select a set of proposed times. When you do this a calendar pops up with your availability. You can then select some proposed times for the receipient to choose from.

Enable this plugin

  1. Download and run N1

  2. Navigate to Preferences > Plugins and click "Enable" beside the plugin.

Who is this for?

Anyone who makes a lot of appointments! If you are a developer, this is also a great example of a more complicated plugin that requires a backend service, and demonstrates how arbitrary JavaScript can be inserted to create custom functionality.