// dtp-plugin.js // Copyright (C) 2022 DTP Technologies, LLC // License: Apache-2.0 /** * I am just getting started roughing in the framework for DtpPlugin. * DtpPlugin will be the base class for developers to use when creating a plugin * intended to run within a DTP call. * * DtpApp will first create a data channel within the current call to implement * the plugin's communications among call participants. DtpApp will then * configure the view with a
and populate a plugin-safe object with * information about the call participants. * * The plugin will be given these objects. It will instantiate itself into the * parent
provided by DtpApp, wire up any event handlers it needs, etc. It * can then immediately begin sending and receiving data among the call * participants and indicate whatever is needed within the
provided. * * Some plugins may instantiate a within the
. Canvas2D, WebGL, * Web Audio API, Gamepad API, and the rest of the web are available directly to * DTP plugins. */ 'use strict'; window.dtp = window.dtp || { }; import DtpLog from 'dtp/dtp-log.js'; export default class DtpPlugin { constructor (app, context, component) { this.app = app; this.context = context; this.component = component; this.log = new DtpLog(component); } } window.dtp.DtpPlugin = DtpPlugin;