2013-10-26 02:31:48 +08:00
|
|
|
"""Base Widget class. Allows user to create widgets in the backend that render
|
|
|
|
in the IPython notebook frontend.
|
|
|
|
"""
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Copyright (c) 2013, the IPython Development Team.
|
|
|
|
#
|
|
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
#
|
|
|
|
# The full license is in the file COPYING.txt, distributed with this software.
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Imports
|
|
|
|
#-----------------------------------------------------------------------------
|
2013-10-10 23:23:19 +08:00
|
|
|
from copy import copy
|
2013-10-17 14:09:20 +08:00
|
|
|
from glob import glob
|
2014-01-08 20:59:48 +08:00
|
|
|
from contextlib import contextmanager
|
2013-10-10 23:23:19 +08:00
|
|
|
import uuid
|
|
|
|
import sys
|
2013-10-17 14:09:20 +08:00
|
|
|
import os
|
2013-11-07 13:59:58 +08:00
|
|
|
import inspect
|
2013-11-08 23:26:36 +08:00
|
|
|
import types
|
2013-10-10 23:23:19 +08:00
|
|
|
|
2013-10-17 14:09:20 +08:00
|
|
|
import IPython
|
2013-10-16 01:14:04 +08:00
|
|
|
from IPython.kernel.comm import Comm
|
|
|
|
from IPython.config import LoggingConfigurable
|
2013-11-01 08:00:34 +08:00
|
|
|
from IPython.utils.traitlets import Unicode, Dict, List, Instance, Bool
|
2013-10-16 01:14:04 +08:00
|
|
|
from IPython.display import Javascript, display
|
2013-10-17 14:09:20 +08:00
|
|
|
from IPython.utils.py3compat import string_types
|
|
|
|
|
2013-10-26 02:31:48 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Classes
|
|
|
|
#-----------------------------------------------------------------------------
|
2014-01-08 20:59:48 +08:00
|
|
|
@contextmanager
|
|
|
|
def PropertyLock(instance, key, value):
|
|
|
|
instance._property_lock = (key, value)
|
2014-01-14 02:06:19 +08:00
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
del instance._property_lock
|
2014-01-08 20:59:48 +08:00
|
|
|
|
|
|
|
def should_send_property(instance, key, value):
|
2014-01-14 02:06:19 +08:00
|
|
|
return not hasattr(instance, '_property_lock') or \
|
2014-01-08 20:59:48 +08:00
|
|
|
key != instance._property_lock[0] or \
|
|
|
|
value != instance._property_lock[1]
|
|
|
|
|
2013-12-29 13:46:06 +08:00
|
|
|
|
2014-01-07 20:04:24 +08:00
|
|
|
class Widget(LoggingConfigurable):
|
2013-10-10 23:23:19 +08:00
|
|
|
|
2013-12-21 07:24:14 +08:00
|
|
|
# Shared declarations (Class level)
|
|
|
|
widget_construction_callback = None
|
2014-01-14 02:06:19 +08:00
|
|
|
widgets = []
|
2013-12-21 07:24:14 +08:00
|
|
|
|
2014-01-14 02:06:19 +08:00
|
|
|
keys = ['view_name'] # TODO: Sync = True
|
2014-01-05 12:22:42 +08:00
|
|
|
|
2013-12-21 07:24:14 +08:00
|
|
|
def on_widget_constructed(callback):
|
|
|
|
"""Class method, registers a callback to be called when a widget is
|
|
|
|
constructed. The callback must have the following signature:
|
|
|
|
callback(widget)"""
|
2014-01-07 20:04:24 +08:00
|
|
|
Widget.widget_construction_callback = callback
|
2013-12-21 07:24:14 +08:00
|
|
|
|
2014-01-07 20:09:41 +08:00
|
|
|
def _call_widget_constructed(widget):
|
2013-12-21 07:24:14 +08:00
|
|
|
"""Class method, called when a widget is constructed."""
|
2014-01-07 20:04:24 +08:00
|
|
|
if Widget.widget_construction_callback is not None and callable(Widget.widget_construction_callback):
|
|
|
|
Widget.widget_construction_callback(widget)
|
2013-12-21 07:24:14 +08:00
|
|
|
|
2013-11-02 04:46:00 +08:00
|
|
|
|
2013-12-21 07:24:14 +08:00
|
|
|
|
|
|
|
# Public declarations (Instance level)
|
2013-10-26 02:31:48 +08:00
|
|
|
target_name = Unicode('widget', help="""Name of the backbone model
|
|
|
|
registered in the frontend to create and sync this widget with.""")
|
2014-01-14 02:06:19 +08:00
|
|
|
# model_name
|
2014-01-07 20:08:15 +08:00
|
|
|
view_name = Unicode(help="""Default view registered in the frontend
|
2013-10-26 02:31:48 +08:00
|
|
|
to use to represent the widget.""")
|
2013-11-02 04:46:00 +08:00
|
|
|
|
2013-10-26 02:31:48 +08:00
|
|
|
# Private/protected declarations
|
2014-01-01 00:26:07 +08:00
|
|
|
_comm = Instance('IPython.kernel.comm.Comm')
|
2013-10-10 23:23:19 +08:00
|
|
|
|
2013-11-01 07:49:54 +08:00
|
|
|
def __init__(self, **kwargs):
|
2013-10-26 02:31:48 +08:00
|
|
|
"""Public constructor
|
|
|
|
"""
|
2014-01-14 02:06:19 +08:00
|
|
|
self.closed = False
|
2013-11-07 01:41:26 +08:00
|
|
|
self._display_callbacks = []
|
2013-11-19 05:07:32 +08:00
|
|
|
self._msg_callbacks = []
|
2014-01-07 20:04:24 +08:00
|
|
|
super(Widget, self).__init__(**kwargs)
|
2013-12-21 07:24:14 +08:00
|
|
|
|
2014-01-01 01:24:47 +08:00
|
|
|
self.on_trait_change(self._handle_property_changed, self.keys)
|
2014-01-14 02:06:19 +08:00
|
|
|
Widget.widgets.append(self)
|
2014-01-07 20:09:41 +08:00
|
|
|
Widget._call_widget_constructed(self)
|
2013-12-29 13:46:06 +08:00
|
|
|
|
2013-10-10 23:23:19 +08:00
|
|
|
def __del__(self):
|
2013-10-26 02:31:48 +08:00
|
|
|
"""Object disposal"""
|
2013-10-10 23:23:19 +08:00
|
|
|
self.close()
|
2013-12-29 13:46:06 +08:00
|
|
|
|
2013-10-10 23:23:19 +08:00
|
|
|
def close(self):
|
2013-10-26 02:31:48 +08:00
|
|
|
"""Close method. Closes the widget which closes the underlying comm.
|
2013-12-29 13:46:06 +08:00
|
|
|
When the comm is closed, all of the widget views are automatically
|
2013-10-26 02:31:48 +08:00
|
|
|
removed from the frontend."""
|
2014-01-14 02:06:19 +08:00
|
|
|
if not self.closed:
|
|
|
|
self.closed = True
|
|
|
|
self._close_communication()
|
|
|
|
Widget.widgets.remove(self)
|
2013-10-10 23:23:19 +08:00
|
|
|
|
2013-12-29 13:46:06 +08:00
|
|
|
@property
|
|
|
|
def comm(self):
|
|
|
|
if self._comm is None:
|
|
|
|
self._open_communication()
|
|
|
|
return self._comm
|
2014-01-03 06:34:42 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def model_id(self):
|
2014-01-04 05:53:35 +08:00
|
|
|
return self.comm.comm_id
|
2013-12-29 13:46:06 +08:00
|
|
|
|
2013-10-26 02:31:48 +08:00
|
|
|
# Event handlers
|
2013-10-10 23:23:19 +08:00
|
|
|
def _handle_msg(self, msg):
|
2013-10-26 02:31:48 +08:00
|
|
|
"""Called when a msg is recieved from the frontend"""
|
2013-11-19 05:07:32 +08:00
|
|
|
data = msg['content']['data']
|
2013-12-04 06:29:33 +08:00
|
|
|
method = data['method']
|
|
|
|
|
2014-01-14 02:06:19 +08:00
|
|
|
# TODO: Log unrecog.
|
|
|
|
|
2014-01-07 19:53:23 +08:00
|
|
|
# Handle backbone sync methods CREATE, PATCH, and UPDATE all in one.
|
|
|
|
if method == 'backbone' and 'sync_data' in data:
|
|
|
|
sync_data = data['sync_data']
|
|
|
|
self._handle_recieve_state(sync_data) # handles all methods
|
2013-11-19 05:07:32 +08:00
|
|
|
|
|
|
|
# Handle a custom msg from the front-end
|
2013-12-04 06:29:33 +08:00
|
|
|
elif method == 'custom':
|
|
|
|
if 'custom_content' in data:
|
|
|
|
self._handle_custom_msg(data['custom_content'])
|
2013-11-19 05:07:32 +08:00
|
|
|
|
2014-01-08 08:19:16 +08:00
|
|
|
|
|
|
|
def _handle_recieve_state(self, sync_data):
|
|
|
|
"""Called when a state is recieved from the frontend."""
|
|
|
|
for name in self.keys:
|
|
|
|
if name in sync_data:
|
2014-01-14 02:06:19 +08:00
|
|
|
value = self._unpack_widgets(sync_data[name])
|
2014-01-08 20:59:48 +08:00
|
|
|
with PropertyLock(self, name, value):
|
|
|
|
setattr(self, name, value)
|
2014-01-08 08:19:16 +08:00
|
|
|
|
|
|
|
|
2013-11-19 05:07:32 +08:00
|
|
|
def _handle_custom_msg(self, content):
|
|
|
|
"""Called when a custom msg is recieved."""
|
|
|
|
for handler in self._msg_callbacks:
|
|
|
|
if callable(handler):
|
|
|
|
argspec = inspect.getargspec(handler)
|
|
|
|
nargs = len(argspec[0])
|
|
|
|
|
|
|
|
# Bound methods have an additional 'self' argument
|
|
|
|
if isinstance(handler, types.MethodType):
|
|
|
|
nargs -= 1
|
|
|
|
|
|
|
|
# Call the callback
|
|
|
|
if nargs == 1:
|
|
|
|
handler(content)
|
|
|
|
elif nargs == 2:
|
|
|
|
handler(self, content)
|
|
|
|
else:
|
|
|
|
raise TypeError('Widget msg callback must ' \
|
|
|
|
'accept 1 or 2 arguments, not %d.' % nargs)
|
2013-12-29 13:46:06 +08:00
|
|
|
|
|
|
|
|
2013-10-10 23:23:19 +08:00
|
|
|
def _handle_property_changed(self, name, old, new):
|
2014-01-01 00:26:07 +08:00
|
|
|
"""Called when a property has been changed."""
|
2013-11-19 07:27:57 +08:00
|
|
|
# Make sure this isn't information that the front-end just sent us.
|
2014-01-08 20:59:48 +08:00
|
|
|
if should_send_property(self, name, new):
|
2013-10-10 23:23:19 +08:00
|
|
|
# Send new state to frontend
|
2013-10-23 01:30:30 +08:00
|
|
|
self.send_state(key=name)
|
2013-10-17 14:09:20 +08:00
|
|
|
|
2013-12-31 02:43:17 +08:00
|
|
|
def _handle_displayed(self, **kwargs):
|
2014-01-08 07:28:33 +08:00
|
|
|
"""Called when a view has been displayed for this widget instance"""
|
2013-11-19 05:07:32 +08:00
|
|
|
for handler in self._display_callbacks:
|
|
|
|
if callable(handler):
|
|
|
|
argspec = inspect.getargspec(handler)
|
|
|
|
nargs = len(argspec[0])
|
|
|
|
|
|
|
|
# Bound methods have an additional 'self' argument
|
|
|
|
if isinstance(handler, types.MethodType):
|
|
|
|
nargs -= 1
|
|
|
|
|
|
|
|
# Call the callback
|
|
|
|
if nargs == 0:
|
|
|
|
handler()
|
|
|
|
elif nargs == 1:
|
|
|
|
handler(self)
|
|
|
|
else:
|
2013-12-31 02:43:17 +08:00
|
|
|
handler(self, **kwargs)
|
2013-12-29 13:46:06 +08:00
|
|
|
|
2013-10-26 02:31:48 +08:00
|
|
|
# Public methods
|
|
|
|
def send_state(self, key=None):
|
|
|
|
"""Sends the widget state, or a piece of it, to the frontend.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
key : unicode (optional)
|
|
|
|
A single property's name to sync with the frontend.
|
|
|
|
"""
|
2013-12-21 09:05:48 +08:00
|
|
|
self._send({"method": "update",
|
2014-01-03 07:06:18 +08:00
|
|
|
"state": self.get_state()})
|
2013-10-26 02:31:48 +08:00
|
|
|
|
2014-01-01 00:26:07 +08:00
|
|
|
def get_state(self, key=None):
|
2013-12-29 13:46:06 +08:00
|
|
|
"""Gets the widget state, or a piece of it.
|
2013-10-26 02:31:48 +08:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
2013-12-29 13:46:06 +08:00
|
|
|
key : unicode (optional)
|
|
|
|
A single property's name to get.
|
2013-10-26 02:31:48 +08:00
|
|
|
"""
|
2013-12-29 13:46:06 +08:00
|
|
|
state = {}
|
2013-11-06 06:56:15 +08:00
|
|
|
|
2013-12-29 13:46:06 +08:00
|
|
|
# If a key is provided, just send the state of that key.
|
|
|
|
if key is None:
|
|
|
|
keys = self.keys[:]
|
2013-11-06 06:56:15 +08:00
|
|
|
else:
|
2014-01-01 01:24:47 +08:00
|
|
|
keys = [key]
|
2013-12-29 13:46:06 +08:00
|
|
|
for k in keys:
|
2014-01-14 02:06:19 +08:00
|
|
|
state[k] = self._pack_widgets(getattr(self, k))
|
2013-12-29 13:46:06 +08:00
|
|
|
return state
|
2013-10-26 02:31:48 +08:00
|
|
|
|
|
|
|
|
2014-01-14 02:06:19 +08:00
|
|
|
def _pack_widgets(self, values):
|
|
|
|
"""This function recursively converts all widget instances to model id
|
|
|
|
strings.
|
|
|
|
|
|
|
|
Children widgets will be stored and transmitted to the front-end by
|
|
|
|
their model ids."""
|
|
|
|
if isinstance(values, dict):
|
|
|
|
new_dict = {}
|
|
|
|
for key in values.keys():
|
|
|
|
new_dict[key] = self._pack_widgets(values[key])
|
|
|
|
return new_dict
|
|
|
|
elif isinstance(values, list):
|
|
|
|
new_list = []
|
|
|
|
for value in values:
|
|
|
|
new_list.append(self._pack_widgets(value))
|
|
|
|
return new_list
|
|
|
|
elif isinstance(values, Widget):
|
|
|
|
return values.model_id
|
|
|
|
else:
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
|
|
|
def _unpack_widgets(self, values):
|
|
|
|
"""This function recursively converts all model id strings to widget
|
|
|
|
instances.
|
|
|
|
|
|
|
|
Children widgets will be stored and transmitted to the front-end by
|
|
|
|
their model ids."""
|
|
|
|
if isinstance(values, dict):
|
|
|
|
new_dict = {}
|
|
|
|
for key in values.keys():
|
|
|
|
new_dict[key] = self._unpack_widgets(values[key])
|
|
|
|
return new_dict
|
|
|
|
elif isinstance(values, list):
|
|
|
|
new_list = []
|
|
|
|
for value in values:
|
|
|
|
new_list.append(self._unpack_widgets(value))
|
|
|
|
return new_list
|
|
|
|
elif isinstance(values, string_types):
|
|
|
|
for widget in Widget.widgets:
|
|
|
|
if widget.model_id == values:
|
|
|
|
return widget
|
|
|
|
return values
|
|
|
|
else:
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
2013-11-19 05:07:32 +08:00
|
|
|
def send(self, content):
|
|
|
|
"""Sends a custom msg to the widget model in the front-end.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
content : dict
|
|
|
|
Content of the message to send.
|
|
|
|
"""
|
2013-12-21 09:05:48 +08:00
|
|
|
self._send({"method": "custom",
|
2014-01-03 07:06:18 +08:00
|
|
|
"custom_content": content})
|
2013-11-19 05:07:32 +08:00
|
|
|
|
|
|
|
|
2014-01-14 02:06:19 +08:00
|
|
|
def on_msg(self, callback, remove=False): # TODO: Use lambdas and inspect here
|
|
|
|
"""Register or unregister a callback for when a custom msg is recieved
|
|
|
|
from the front-end.
|
2013-11-19 05:07:32 +08:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
callback: method handler
|
|
|
|
Can have a signature of:
|
|
|
|
- callback(content)
|
|
|
|
- callback(sender, content)
|
|
|
|
remove: bool
|
|
|
|
True if the callback should be unregistered."""
|
|
|
|
if remove and callback in self._msg_callbacks:
|
|
|
|
self._msg_callbacks.remove(callback)
|
|
|
|
elif not remove and not callback in self._msg_callbacks:
|
|
|
|
self._msg_callbacks.append(callback)
|
|
|
|
|
|
|
|
|
2013-11-07 01:41:26 +08:00
|
|
|
def on_displayed(self, callback, remove=False):
|
2014-01-14 02:06:19 +08:00
|
|
|
"""Register or unregister a callback to be called when the widget has
|
|
|
|
been displayed.
|
2013-11-07 01:41:26 +08:00
|
|
|
|
2013-11-07 01:48:22 +08:00
|
|
|
Parameters
|
|
|
|
----------
|
2013-11-07 01:41:26 +08:00
|
|
|
callback: method handler
|
|
|
|
Can have a signature of:
|
|
|
|
- callback()
|
|
|
|
- callback(sender)
|
2013-12-31 02:43:17 +08:00
|
|
|
- callback(sender, **kwargs)
|
|
|
|
kwargs from display call passed through without modification.
|
2013-11-07 01:41:26 +08:00
|
|
|
remove: bool
|
|
|
|
True if the callback should be unregistered."""
|
2013-11-19 05:07:32 +08:00
|
|
|
if remove and callback in self._display_callbacks:
|
2013-11-07 01:41:26 +08:00
|
|
|
self._display_callbacks.remove(callback)
|
2013-11-19 05:07:32 +08:00
|
|
|
elif not remove and not callback in self._display_callbacks:
|
2013-11-07 01:41:26 +08:00
|
|
|
self._display_callbacks.append(callback)
|
|
|
|
|
|
|
|
|
2013-10-26 02:31:48 +08:00
|
|
|
# Support methods
|
2013-12-31 02:43:17 +08:00
|
|
|
def _repr_widget_(self, **kwargs):
|
2013-10-26 02:31:48 +08:00
|
|
|
"""Function that is called when `IPython.display.display` is called on
|
2014-01-08 07:22:37 +08:00
|
|
|
the widget."""
|
2013-10-10 23:23:19 +08:00
|
|
|
|
2014-01-08 07:13:07 +08:00
|
|
|
# Show view. By sending a display message, the comm is opened and the
|
|
|
|
# initial state is sent.
|
2014-01-08 07:22:37 +08:00
|
|
|
self._send({"method": "display"})
|
2013-12-29 13:46:06 +08:00
|
|
|
self._handle_displayed(**kwargs)
|
2013-12-21 09:05:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
def _open_communication(self):
|
|
|
|
"""Opens a communication with the front-end."""
|
|
|
|
# Create a comm.
|
2014-01-14 02:06:19 +08:00
|
|
|
self._comm = Comm(target_name=self.target_name)
|
|
|
|
self._comm.on_msg(self._handle_msg)
|
|
|
|
self._comm.on_close(self._close_communication)
|
2013-12-21 09:05:48 +08:00
|
|
|
|
2014-01-01 00:26:07 +08:00
|
|
|
# first update
|
|
|
|
self.send_state()
|
|
|
|
|
2013-12-21 09:05:48 +08:00
|
|
|
|
|
|
|
def _close_communication(self):
|
|
|
|
"""Closes a communication with the front-end."""
|
2014-01-01 00:26:07 +08:00
|
|
|
if self._comm is not None:
|
2013-12-21 09:22:06 +08:00
|
|
|
try:
|
2014-01-14 02:06:19 +08:00
|
|
|
self._comm.close() # TODO: Check
|
2013-12-21 09:22:06 +08:00
|
|
|
finally:
|
|
|
|
self._comm = None
|
2013-12-21 09:05:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
def _send(self, msg):
|
|
|
|
"""Sends a message to the model in the front-end"""
|
2014-01-08 07:13:07 +08:00
|
|
|
self.comm.send(msg)
|
2014-01-03 07:36:24 +08:00
|
|
|
|
|
|
|
|
2014-01-07 20:04:24 +08:00
|
|
|
class DOMWidget(Widget):
|
2013-12-29 13:46:06 +08:00
|
|
|
visible = Bool(True, help="Whether or not the widget is visible.")
|
|
|
|
|
|
|
|
# Private/protected declarations
|
|
|
|
_css = Dict() # Internal CSS property dict
|
|
|
|
|
2014-01-07 20:04:24 +08:00
|
|
|
keys = ['visible', '_css'] + Widget.keys
|
2013-12-29 13:46:06 +08:00
|
|
|
|
|
|
|
def get_css(self, key, selector=""):
|
2014-01-08 22:05:34 +08:00
|
|
|
"""Get a CSS property of the widget.
|
|
|
|
|
|
|
|
Note: This function does not actually request the CSS from the
|
|
|
|
front-end; Only properties that have been set with set_css can be read.
|
2013-12-29 13:46:06 +08:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
key: unicode
|
|
|
|
CSS key
|
|
|
|
selector: unicode (optional)
|
|
|
|
JQuery selector used when the CSS key/value was set.
|
|
|
|
"""
|
|
|
|
if selector in self._css and key in self._css[selector]:
|
|
|
|
return self._css[selector][key]
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def set_css(self, *args, **kwargs):
|
2014-01-08 22:05:34 +08:00
|
|
|
"""Set one or more CSS properties of the widget.
|
|
|
|
|
|
|
|
This function has two signatures:
|
2014-01-08 07:29:38 +08:00
|
|
|
- set_css(css_dict, selector='')
|
|
|
|
- set_css(key, value, selector='')
|
2013-12-29 13:46:06 +08:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
css_dict : dict
|
|
|
|
CSS key/value pairs to apply
|
|
|
|
key: unicode
|
|
|
|
CSS key
|
|
|
|
value
|
|
|
|
CSS value
|
|
|
|
selector: unicode (optional)
|
2014-01-08 22:05:34 +08:00
|
|
|
JQuery selector to use to apply the CSS key/value. If no selector
|
|
|
|
is provided, an empty selector is used. An empty selector makes the
|
|
|
|
front-end try to apply the css to a default element. The default
|
|
|
|
element is an attribute unique to each view, which is a DOM element
|
|
|
|
of the view that should be styled with common CSS (see
|
|
|
|
`$el_to_style` in the Javascript code).
|
2013-12-29 13:46:06 +08:00
|
|
|
"""
|
|
|
|
selector = kwargs.get('selector', '')
|
|
|
|
|
2014-01-08 07:29:38 +08:00
|
|
|
# Signature 1: set_css(css_dict, selector='')
|
2013-12-29 13:46:06 +08:00
|
|
|
if len(args) == 1:
|
|
|
|
if isinstance(args[0], dict):
|
|
|
|
for (key, value) in args[0].items():
|
2014-01-14 02:06:19 +08:00
|
|
|
if not (key in self._css[selector] and value == self._css[selector][key]):
|
2014-01-08 07:33:54 +08:00
|
|
|
self._css[selector][key] = value
|
|
|
|
self.send_state('_css')
|
2013-12-29 13:46:06 +08:00
|
|
|
else:
|
|
|
|
raise Exception('css_dict must be a dict.')
|
|
|
|
|
2014-01-08 07:29:38 +08:00
|
|
|
# Signature 2: set_css(key, value, selector='')
|
2013-12-29 13:46:06 +08:00
|
|
|
elif len(args) == 2 or len(args) == 3:
|
|
|
|
|
|
|
|
# Selector can be a positional arg if it's the 3rd value
|
|
|
|
if len(args) == 3:
|
|
|
|
selector = args[2]
|
|
|
|
if selector not in self._css:
|
|
|
|
self._css[selector] = {}
|
|
|
|
|
|
|
|
# Only update the property if it has changed.
|
|
|
|
key = args[0]
|
|
|
|
value = args[1]
|
2014-01-14 02:06:19 +08:00
|
|
|
if not (key in self._css[selector] and value == self._css[selector][key]):
|
2013-12-29 13:46:06 +08:00
|
|
|
self._css[selector][key] = value
|
|
|
|
self.send_state('_css') # Send new state to client.
|
|
|
|
else:
|
|
|
|
raise Exception('set_css only accepts 1-3 arguments')
|
|
|
|
|
|
|
|
|
2014-01-07 19:58:24 +08:00
|
|
|
def add_class(self, class_names, selector=""):
|
2013-12-29 13:46:06 +08:00
|
|
|
"""Add class[es] to a DOM element
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
2014-01-07 19:58:24 +08:00
|
|
|
class_names: unicode or list
|
|
|
|
Class name(s) to add to the DOM element(s).
|
2013-12-29 13:46:06 +08:00
|
|
|
selector: unicode (optional)
|
|
|
|
JQuery selector to select the DOM element(s) that the class(es) will
|
|
|
|
be added to.
|
|
|
|
"""
|
2014-01-07 19:58:24 +08:00
|
|
|
class_list = class_names
|
2014-01-14 02:06:19 +08:00
|
|
|
if isinstance(class_list, list):
|
2014-01-07 19:58:24 +08:00
|
|
|
class_list = ' '.join(class_list)
|
|
|
|
|
2014-01-02 08:01:40 +08:00
|
|
|
self.send({"msg_type": "add_class",
|
2014-01-07 19:58:24 +08:00
|
|
|
"class_list": class_list,
|
2014-01-03 07:06:18 +08:00
|
|
|
"selector": selector})
|
2013-12-29 13:46:06 +08:00
|
|
|
|
|
|
|
|
2014-01-07 19:58:24 +08:00
|
|
|
def remove_class(self, class_names, selector=""):
|
2013-12-29 13:46:06 +08:00
|
|
|
"""Remove class[es] from a DOM element
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
2014-01-07 19:58:24 +08:00
|
|
|
class_names: unicode or list
|
|
|
|
Class name(s) to remove from the DOM element(s).
|
2013-12-29 13:46:06 +08:00
|
|
|
selector: unicode (optional)
|
|
|
|
JQuery selector to select the DOM element(s) that the class(es) will
|
|
|
|
be removed from.
|
|
|
|
"""
|
2014-01-07 19:58:24 +08:00
|
|
|
class_list = class_names
|
2014-01-14 02:06:19 +08:00
|
|
|
if isinstance(class_list, list):
|
2014-01-07 19:58:24 +08:00
|
|
|
class_list = ' '.join(class_list)
|
|
|
|
|
2014-01-02 08:01:40 +08:00
|
|
|
self.send({"msg_type": "remove_class",
|
2014-01-07 19:58:24 +08:00
|
|
|
"class_list": class_list,
|
2014-01-03 07:06:18 +08:00
|
|
|
"selector": selector})
|