1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
//!
//! Node Webkit application helper provided by the [`Application`] struct.
//!
//!
//!
use crate::media::MediaStreamTrackKind;
use crate::result::Result;
use nw_sys::{prelude::*, utils};
use std::rc::Rc;
use wasm_bindgen::prelude::*;
use wasm_bindgen::JsCast;
use web_sys::{MediaStream, MediaStreamTrack, MouseEvent};
use workflow_core::channel::*;
use workflow_wasm::prelude::*;
static mut APP: Option<Arc<Application>> = None;
/// get saved [Application](Application) instance.
pub fn app() -> Option<Arc<Application>> {
unsafe { APP.clone() }
}
/// Application helper. This struct contains a map of callbacks that
/// can be used to retain different application callbacks as well as
/// media stream helper functions for controlling media playback.
///
/// For usage example please refer to [Examples](crate)
#[derive(Clone)]
pub struct Application {
/// a storage for [MediaStream](web_sys::MediaStream)
pub media_stream: Rc<Mutex<Option<MediaStream>>>,
/// holds references to [Callback](workflow_wasm::callback::Callback)
pub callbacks: CallbackMap,
}
unsafe impl Send for Application {}
unsafe impl Sync for Application {}
impl Application {
/// Create [Application](Application) object.
/// if instance is allready created then it will return saved application.
pub fn new() -> Result<Arc<Self>> {
if let Some(app) = app() {
return Ok(app);
}
let app = Arc::new(Self {
callbacks: CallbackMap::new(),
media_stream: Rc::new(Mutex::new(None)),
});
unsafe {
APP = Some(app.clone());
};
Ok(app)
}
/// Store or Clear saved [MediaStream](web_sys::MediaStream)
pub fn set_media_stream(&self, media_stream: Option<MediaStream>) -> Result<()> {
*self.media_stream.lock()? = media_stream;
Ok(())
}
/// Get saved [MediaStream](web_sys::MediaStream)
pub fn get_media_stream(&self) -> Result<Option<MediaStream>> {
let media_stream = self.media_stream.lock()?.clone();
Ok(media_stream)
}
/// Stop [MediaStream](web_sys::MediaStream) tracks ([MediaStreamTrack](web_sys::MediaStreamTrack))
/// of given kind or [All](MediaStreamTrackKind::All)
/// you can provide any [MediaStream](web_sys::MediaStream) or it will get internal saved stream.
pub fn stop_media_stream(
&self,
track_kind: Option<MediaStreamTrackKind>,
mut stream: Option<MediaStream>,
) -> Result<()> {
if stream.is_none() {
stream = self.get_media_stream()?;
}
if let Some(media_stream) = stream {
let tracks = media_stream.get_tracks();
let kind = track_kind.unwrap_or(MediaStreamTrackKind::All);
let mut all = false;
let mut video = false;
let mut audio = false;
match kind {
MediaStreamTrackKind::All => {
all = true;
}
MediaStreamTrackKind::Video => {
video = true;
}
MediaStreamTrackKind::Audio => {
audio = true;
}
}
for index in 0..tracks.length() {
if let Ok(track) = tracks.get(index).dyn_into::<MediaStreamTrack>() {
let k = track.kind();
if all || (k.eq("video") && video) || (k.eq("audio") && audio) {
track.stop();
}
}
}
}
Ok(())
}
/// Create window with given [Options](nw_sys::window::Options)
/// and callback closure
pub fn create_window_with_callback<F>(
&self,
url: &str,
option: &nw_sys::window::Options,
callback: F,
) -> Result<()>
where
F: FnMut(nw_sys::Window) -> std::result::Result<(), JsValue> + 'static,
{
let callback = Callback::new(callback);
nw_sys::window::open_with_options_and_callback(url, option, callback.as_ref());
self.callbacks.retain(callback)?;
Ok(())
}
// pub async fn create_window_async(
// &self,
// url: &str,
// option: &nw_sys::window::Options,
// ) -> Result<nw_sys::window::Window> {
// let (sender, receiver) = oneshot();
// let callback = Callback::new(move |window: nw_sys::Window| {
// sender.try_send(window).unwrap();
// });
// nw_sys::window::open_with_options_and_callback(url, option, callback.as_ref());
// Ok(receiver.recv().await?)
// }
pub async fn create_window_async(
url: &str,
option: &nw_sys::window::Options,
) -> Result<nw_sys::window::Window> {
let (sender, receiver) = oneshot();
let callback = Callback::new(move |window: nw_sys::Window| {
sender.try_send(window).unwrap();
});
nw_sys::window::open_with_options_and_callback(url, option, callback.as_ref());
Ok(receiver.recv().await?)
}
/// Create window with given [Options](nw_sys::window::Options)
/// The resulting window handle is not retained. Please use [`Application::create_window_with_callback`]
/// or [`Application::create_window`] to retain the window handle.
pub fn create_window(url: &str, option: &nw_sys::window::Options) -> Result<()> {
nw_sys::window::open_with_options(url, option);
Ok(())
}
/// Create context menu
pub fn create_context_menu(&self, menus: Vec<nw_sys::MenuItem>) -> Result<()> {
let popup_menu = nw_sys::Menu::new();
for menu_item in menus {
popup_menu.append(&menu_item);
}
self.on_context_menu(move |ev: MouseEvent| -> std::result::Result<(), JsValue> {
ev.prevent_default();
popup_menu.popup(ev.x(), ev.y());
Ok(())
})?;
Ok(())
}
/// A utility for adding callback for `contextmenu` event
pub fn on_context_menu<F>(&self, callback: F) -> Result<()>
where
F: Sized + FnMut(MouseEvent) -> std::result::Result<(), JsValue> + 'static,
{
let win = nw_sys::window::get();
let dom_win = win.window();
let body = utils::body(Some(dom_win));
let callback = callback!(callback);
body.add_event_listener_with_callback("contextmenu", callback.as_ref())?;
self.callbacks.retain(callback)?;
Ok(())
}
/// Choose desktop media
///
/// Screen sharing by selection; Currently only working in Windows and OSX
/// and some linux distribution.
///
/// ⧉ [NWJS Documentation](https://docs.nwjs.io/en/latest/References/Screen/#screenchoosedesktopmedia-sources-callback)
///
pub fn choose_desktop_media<F>(
&self,
sources: nw_sys::screen::MediaSources,
mut callback: F,
) -> Result<()>
where
F: 'static + FnMut(Option<String>) -> Result<()>,
{
let callback_ = Callback::new(move |value: JsValue| -> std::result::Result<(), JsValue> {
let mut stream_id = None;
if value.is_string() {
if let Some(id) = value.as_string() {
if !id.is_empty() {
stream_id = Some(id);
}
}
}
callback(stream_id)?;
Ok(())
});
nw_sys::screen::choose_desktop_media(sources, callback_.as_ref())?;
self.callbacks.retain(callback_)?;
Ok(())
}
}