Page MenuHomePhorge

Architecture and Design Considerations
Updated 3,077 Days AgoPublic

Version 1 of 4: You are viewing an older version of this document, as it appeared on Nov 23 2015, 2:44 PM.
NOTE: This is a draft and work in progress.

Roundcube Next is going to entertain a variety of applications ("apps"), integrated with one another to provide the best possible human experience for messaging and scheduling, among other things.

This builds an application suite that will need to be able to deal with intricate communication, data storage and presentation layers, existing (JavaScript) library's capabilities, potentially including issues or restrictions with multiple tabs and multiple windows.

The division of components that make up the complete Roundcube Next application suite has already been established, in that we will at first entertain email messaging, calendar-based scheduling and address books (milestone $x-$y), bearing in mind other object types and different contexts are on the roadmap as well (instant messaging, and others).

These components are seated in a Roundcube Shell, which for the purpose of a sustainable roadmap needs its horizon defined.

Application Model Design Considerations

Data Communication, Data Storage, Communication and Presentation Layers

For a given user, more than one account may be configured. Multiple "virtual folders" may aggregate the different types of messages from each account in to a merged view, meaning that the INBOX is an aggregate of all INBOX folders, Drafts and aggregate of all Drafts, and such and so forth.

This means that when a passive event is triggered (Data Communication, passive if something happens on the server and the client is told / notices), the representation in the internal structure (Data Storage) needs to be able to represent two things:

  1. The event happened for account A, updating the current local working copy of account A's (meta-)data.
  2. The internal virtual aggregate of the data associated with account A and the data (of the same type) from all other accounts will need to be updated.

This leads to new events to need to be triggered in the client software (Communication), which depending on the current view the user is looking at may or may not cause the presentation layer to need to be updated, and in a particular way as well.

Implications on Application Model Design

For example, we know that when a new email message comes in, we want to emit an event (publish) for other applications (subscribers) to consume.

To illustrate the complexity involved, consider what a notification mechanism may need to be able to deal with at its precipice of evolution;

  • If the user is already in a mail view;
    • and the real estate that needs updating to represent the new message(s) is within view;
      • an additional notification is superfluous;
        • unless the update of the presentation layer is insufficiently stimulating (compared to the importance of the event).
      • an additional notification may not hurt a user unless the notification blocks real estate in use or blocks work-flow.
    • and the real estate that needs updating to represent the new message(s) is outside the current view;
      • TODO
  • If the user is not already in a mail view;
    • Notifications of different sorts may be suitable for certain data types.
    • TODO
NOTE: In any case, the changes to the presentation may be subject to a reasonable rate-limit and/or level of smoothness and/or animation.
NOTE: In addition to the former considerations, also consider the effect of a notification that can be clicked on -- to either update the focal point or switch views.

So, when a new message comes in but the user is in a "mail" view already, however that mail view may end up being composed, it means little to both amend the list of messages in a folder display on the current real estate being viewed, and pop up a notification-like UI element to let the user know a new message arrived.

Additionally, the existing focus point (selected message UI element) should probably remain the focal point in all of this, to prevent the focal point moving on the X- or Y-axis.

Data Types and Treatment

In contrast, however, should the current list of messages displayed have scrolled beyond the slice in which the new message would have been inserted in to the current view, a notification UI element may be justified.

In another example, when a new message comes in to a "mail" app, other "apps" may want to interfere with the representation of that event;

  • An iTip invitation may need to be handed of to a "scheduling" app, which may or may not consider itself a terminal end-point for the particular event.
  • The same iTip invitation may need to be passed on to a notification mechanism but only after the "scheduling" app has treated the event (but considered itself not a terminal end-point).

The emission of "an event" that "is about to happen" and/or "happened" therefore deserves queuing priority capabilities as well as ordering event subscribers, each of them allowed to determine its own finality in treating the event.

Last Author
vanmeeuwen
Last Edited
Nov 23 2015, 2:44 PM