We now have a global OctoPrintClient, which is the class from which
all clients are derived, and a global OctoPrint, which is a single
instance already setup and ready to use in case we only need one.
It would be cleaner to have clients create that singular instance
themselves, but we need to maintain backward compatibility for now
with how we established the client to work with the 1.3.0 release.
New clients can be create with
client = new OctoPrintClient({ /* options */ });
Alternatively the options can be left out and set at a later point:
client = new OctoPrintClient();
/* ... */
client.options = { /* options */ };
Individual client components register themselves with OctoPrintClient
via OctoPrintClient.registerComponent(name, component) from the
component JS files. Just like before their instances are then
available in the individual client instances under "<client>.<name>",
e.g. "OctoPrint.files".
Plugin components register themselves with OctoPrintClient via
OctoPrintClient.registerPluginComponent(name, component) from the
component JS files. Just like before their instances are then
available in the individual client instances under "<client>.plugins
.<name>", e.g. "OctoPrint.plugins.softwareupdate".
This should make it possible to create dashboard pages utilizing the
JS client that monitor the status of multiple OctoPrint instances,
without workarounds such as having to swap out the options globally
before each request.
See #1681 for the corresponding discussion.
107 lines
3.9 KiB
ReStructuredText
107 lines
3.9 KiB
ReStructuredText
.. _sec-jsclientlib:
|
|
|
|
#########################
|
|
JavaScript Client Library
|
|
#########################
|
|
|
|
The JS Client Library provides an interface to all of OctoPrint's API, including the SockJS based socket to send
|
|
push messages from the server to connected clients. It is available as packed web
|
|
asset file at ``/static/webassets/packed_client.js`` or as individual
|
|
component files at ``/static/js/app/client/<component>.js`` relative to your
|
|
OctoPrint instance's base URL (e.g. ``http://octopi.local/static/webassets/packed_client.js``).
|
|
|
|
If you are using it from a web page hosted on OctoPrint as a Jinja2 template, you should use one of the following
|
|
methods to embed it instead of manually entering the URL, in order to have OctoPrint take care of setting the
|
|
correct URL prefix:
|
|
|
|
.. code-block:: html
|
|
|
|
<!--
|
|
full client library or all individual files, depending
|
|
on the server mode - should be the preferred variant
|
|
-->
|
|
{% assets "js_client" %}<script type="text/javascript" src="{{ ASSET_URL }}"></script>{% endassets %}
|
|
|
|
<!--
|
|
full client library
|
|
-->
|
|
<script type="text/javascript" src="{{ url_for("static", filename="webassets/packed_client.js") }}"></script>
|
|
|
|
<!--
|
|
individual components (do not forget base!)
|
|
-->
|
|
<script type="text/javascript" src="{{ url_for("static", filename="js/app/client/<component>.js") }}"></script>
|
|
|
|
Regardless of which way you use to include the library, you'll also need to make sure you included JQuery and lodash,
|
|
because the library depends on those to be available (as ``$`` and ``_``). You can embed those like this:
|
|
|
|
.. code-block:: html
|
|
|
|
<script src="{{ url_for("static", filename="js/lib/jquery/jquery.min.js") }}"></script>
|
|
<script src="{{ url_for("static", filename="js/lib/lodash.min.js") }}"></script>
|
|
|
|
Note that all components depend on the ``base`` component to be present, so if you are only including a select
|
|
number of components, make sure to at the very least include that one to be able to utilize the client.
|
|
|
|
When you import the client library as described above, a global variable ``OctoPrint`` will become available, which is
|
|
a prepared instance of the ``OctoPrintClient`` class the library assembles from registered components. You can directly
|
|
used that singular ``OctoPrint`` instance if you only need to talk to one OctoPrint server:
|
|
|
|
.. code-block:: javascript
|
|
|
|
OctoPrint.options.baseurl = "http://example.com/octoprint/"
|
|
OctoPrint.options.apikey = "apikey";
|
|
|
|
OctoPrint.files.list()
|
|
.done(function(response) {
|
|
// do something with the response
|
|
});
|
|
|
|
If you want to access multiple servers, you should however instead instantiate your own clients. You can provide the
|
|
connection options (``baseurl`` and ``apikey``) directly in the constructor or set them later:
|
|
|
|
.. code-block:: javascript
|
|
|
|
var client1 = new OctoPrintClient({baseurl: "http://example.com/octoprint1/", apikey: "apikey1"});
|
|
|
|
var client2 = new OctoPrintClient();
|
|
client2.options.baseurl = "http://example.com/octoprint2/";
|
|
client2.options.apikey = "apikey2";
|
|
|
|
client1.files.list()
|
|
.done(function(response) {
|
|
// do something with the response for server 1
|
|
});
|
|
|
|
client2.files.list()
|
|
.done(function(response) {
|
|
// do something with the response for server 2
|
|
});
|
|
|
|
.. seealso::
|
|
|
|
`OctoPrint-ForceLogin <https://github.com/OctoPrint/OctoPrint-ForceLogin>`_
|
|
A plugin that disables anonymous access to the regular OctoPrint UI by implementing a custom UI. Utilizes the
|
|
client library's :ref:`browser component <sec-jsclientlib-browser>` to login the user.
|
|
|
|
.. toctree::
|
|
:maxdepth: 3
|
|
|
|
base.rst
|
|
browser.rst
|
|
connection.rst
|
|
control.rst
|
|
files.rst
|
|
job.rst
|
|
languages.rst
|
|
logs.rst
|
|
printer.rst
|
|
printerprofiles.rst
|
|
settings.rst
|
|
slicing.rst
|
|
socket.rst
|
|
system.rst
|
|
timelapse.rst
|
|
users.rst
|
|
util.rst
|
|
wizard.rst
|