You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
2.5 KiB
JavaScript
47 lines
2.5 KiB
JavaScript
// This file defines all of the RPC calls which are used between the inner and outer iframe.
|
|
// Define *querys* (which expect a response) using Q_<query name>
|
|
// Define *events* (which expect no response) using EV_<event name>
|
|
// Please document the queries and events you create, and please please avoid making generic
|
|
// "do stuff" events/queries which are used for many different things because it makes the
|
|
// protocol unclear.
|
|
//
|
|
// WARNING: At this point, this protocol is still EXPERIMENTAL. This is not it's final form.
|
|
// We need to define protocol one piece at a time and then when we are satisfied that we
|
|
// fully understand the problem, we will define the *right* protocol and this file will be dynomited.
|
|
//
|
|
define({
|
|
// When the iframe first launches, this query is sent repeatedly by the controller
|
|
// to wait for it to awake and give it the requirejs config to use.
|
|
'Q_INIT': true,
|
|
|
|
// When either the outside or inside registers a query handler, this is sent.
|
|
'EV_REGISTER_HANDLER': true,
|
|
|
|
// Realtime events called from the outside.
|
|
// When someone joins the pad, argument is a string with their netflux id.
|
|
'EV_RT_JOIN': true,
|
|
// When someone leaves the pad, argument is a string with their netflux id.
|
|
'EV_RT_LEAVE': true,
|
|
// When you have been disconnected, no arguments.
|
|
'EV_RT_DISCONNECT': true,
|
|
// When you have connected, argument is an object with myID: string, members: list, readOnly: boolean.
|
|
'EV_RT_CONNECT': true,
|
|
// Called after the history is finished synchronizing, no arguments.
|
|
'EV_RT_READY': true,
|
|
// Called from both outside and inside, argument is a (string) chainpad message.
|
|
'Q_RT_MESSAGE': true,
|
|
|
|
// Called from the outside, this informs the inside whenever the user's data has been changed.
|
|
// The argument is the object representing the content of the user profile minus the netfluxID
|
|
// which changes per-reconnect.
|
|
'EV_METADATA_UPDATE': true,
|
|
|
|
// Takes one argument only, the title to set for the CURRENT pad which the user is looking at.
|
|
// This changes the pad title in drive ONLY, the pad title needs to be changed inside of the
|
|
// iframe and synchronized with the other users. This will not trigger a EV_METADATA_UPDATE
|
|
// because the metadata contained in EV_METADATA_UPDATE does not contain the pad title.
|
|
'Q_SET_PAD_TITLE_IN_DRIVE': true,
|
|
|
|
// Update the user's display-name which will be shown to contacts and people in the same pads.
|
|
'Q_SETTINGS_SET_DISPLAY_NAME': true,
|
|
}); |