Mercurial > libervia-web
view libervia/pages/chat/select/page_meta.py @ 1344:472267dcd4d8
browser (alt_media_player): native player support + poster + flags + restricted area:
- alt_media_player will now use native player when possible. This allows to use its controls
and behaviour instead of native ones.
- a poster can be specified when instanciated manually
- video is not preloaded anymore
- handle events propagation to plays nicely when used in slideshow
- a "restricted area" mode can be used to let click propagation on video border, and thus
catch only play/pause in the center. This is notably useful when used in the slideshow,
as border can be used to show/hide slideshow controls
- player can be reset, in which case the play button overlay is put back, and video
is put at its beginning
- once video is played at least once, a `in_use` class is added to the element, play
button overlay is removed then. This fix a bug when the overlay was still appearing when
using bottom play button.
- VideoPlayer has been renamed to MediaPlayer
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 24 Aug 2020 23:04:35 +0200 |
parents | f511f8fbbf8a |
children | 106bae41f5c8 |
line wrap: on
line source
#!/usr/bin/env python3 from sat.core.i18n import _ from libervia.server.constants import Const as C from twisted.internet import defer from twisted.words.protocols.jabber import jid from sat.tools.common import data_objects from sat.core.log import getLogger log = getLogger(__name__) name = "chat_select" access = C.PAGES_ACCESS_PROFILE template = "chat/select.html" @defer.inlineCallbacks def prepare_render(self, request): profile = self.getProfile(request) template_data = request.template_data rooms = template_data["rooms"] = [] bookmarks = yield self.host.bridgeCall("bookmarksList", "muc", "all", profile) for bm_values in list(bookmarks.values()): for room_jid, room_data in bm_values.items(): url = self.getPageByName("chat").getURL(room_jid) rooms.append(data_objects.Room(room_jid, name=room_data.get("name"), url=url)) rooms.sort(key=lambda r: r.name) @defer.inlineCallbacks def on_data_post(self, request): jid_ = self.getPostedData(request, "jid") if "@" not in jid_: profile = self.getProfile(request) service = yield self.host.bridgeCall("mucGetService", "", profile) if service: muc_jid = jid.JID(service) muc_jid.user = jid_ jid_ = muc_jid.full() else: log.warning(_("Invalid jid received: {jid}".format(jid=jid_))) defer.returnValue(C.POST_NO_CONFIRM) url = self.getPageByName("chat").getURL(jid_) self.HTTPRedirect(request, url)