Development of a multi-screen web interface - for example, Bloomberg terminal

I am looking to create a web application that requires a multi-screen interface.

To make this possible, I am looking for the following:

  • Any interface libraries that make this possible - for example, jQuery plugins.
  • Any design patterns that I should pay attention to.
  • Any successful open-source implementation of multi-screen web interfaces.

enter image description here

+4
source share
2 answers

Take a look at https://golden-layout.com/ , it supports pop-up component support in new browser windows.

+4
source

You should look at composite and decorating patterns. In fact, a case study (Lexi word processor) in GoF's book (Design Patters, Gamma, etc.) is of great importance - creating a hierarchy of user interface elements that may or may not contain a set of widgets inside them.

The case study provides an excellent point for such a user interface design and covers many things that you may not consider necessary to consider.

+1
source

All Articles