ontime icon indicating copy to clipboard operation
ontime copied to clipboard

Send messages anywhere

Open cpvalente opened this issue 1 year ago • 2 comments

Currently you can send a fullscreen message to all screens that are viewing the timer.

We would like to expand that feature, to allow users to send a message to most screen types

The UI would need to allow the user to enter a message and select from multiple possible targets. We need to study the specifics of the design, but I suggest a list of Chips that the user can select from

messages anywhere

From a data perspective, the user would be able to target a predefined list of screens

enum ScreenTargets {
  Presenter = "presenter",
  Public = "audience",
  Backstage = "backstage",
}

In the Message Service we can modify the data to hold a message and its targets, as well as the current blink and blackout overrides

type ScreenMessage = {
  message: string;
  target: ScreenTargets[];
};

type PresenterScreenOverrides = {
  override: "blink" | "blackout";
};

cpvalente avatar Jun 12 '24 20:06 cpvalente

I would love to see this. Maybe even a 2 way communication so backstage crew can send messages to the OnTime operator.

Dogo69Dog avatar Sep 19 '24 01:09 Dogo69Dog

Hi @Dogo69Dog , the initial proposal for messages anywhere was discussed recently and met with luke-warm enthusiasm. Also note that the proposal exaggerates its value, it would be most accurate to say "messages in public / backstage and timer screens)

In short. we couldnt come up with a (good enough) use case to want to override the contents of those screens at runtime. Maybe you have an example that would change this assumption?

As for the 2 way communication, this was part of the investigation for v3. At the time we mentioned that entertainment tools are very well served with (often unused) communication tools. With this in mind, we decided that it was not worth introducing this to ontime

cpvalente avatar Sep 19 '24 10:09 cpvalente

It didnt seem we could get enough support behind this feature, I will close it for now

cpvalente avatar Jun 20 '25 14:06 cpvalente