get a webshare view working

This commit is contained in:
sawka 2023-04-05 00:48:34 -07:00
parent f492645530
commit ea8b61278b
6 changed files with 207 additions and 20 deletions

View File

@ -137,7 +137,7 @@ class Bookmark extends React.Component<{bookmark : BookmarkType}, {}> {
@mobxReact.observer
class BookmarksView extends React.Component<{}, {}> {
@boundMethod
clickHandler() : void {
closeView() : void {
GlobalModel.bookmarksModel.closeView();
}
@ -151,7 +151,7 @@ class BookmarksView extends React.Component<{}, {}> {
let bookmark : BookmarkType = null;
return (
<div className={cn("bookmarks-view", "alt-view", {"is-hidden": isHidden})}>
<div className="close-button" onClick={this.clickHandler}><i className="fa-sharp fa-solid fa-xmark"></i></div>
<div className="close-button" onClick={this.closeView}><i className="fa-sharp fa-solid fa-xmark"></i></div>
<div className="alt-title">
<i className="fa-sharp fa-solid fa-bookmark" style={{marginRight: 10}}/>
BOOKMARKS
@ -161,7 +161,7 @@ class BookmarksView extends React.Component<{}, {}> {
<Bookmark key={bookmark.bookmarkid} bookmark={bookmark}/>
</For>
<If condition={bookmarks.length == 0}>
<div className="no-bookmarks">
<div className="no-content">
No Bookmarks.<br/>
Use the <i className="fa-sharp fa-solid fa-bookmark"/> icon on commands to add your first bookmark.
</div>

View File

@ -1420,14 +1420,21 @@ class MainSideBar extends React.Component<{}, {}> {
@boundMethod
handleBookmarksClick() : void {
if (GlobalModel.activeMainView.get() == "bookmarks") {
mobx.action(() => {
GlobalModel.activeMainView.set("session");
})();
GlobalModel.showSessionView();
return;
}
GlobalCommandRunner.bookmarksView();
}
@boundMethod
handleWebSharingClick() : void {
if (GlobalModel.activeMainView.get() == "webshare") {
GlobalModel.showSessionView();
return;
}
GlobalModel.showWebShareView();
}
@boundMethod
handleWelcomeClick() : void {
mobx.action(() => {
@ -1530,8 +1537,8 @@ class MainSideBar extends React.Component<{}, {}> {
<ul className="menu-list">
<li className="menu-bookmarks"><a onClick={this.handleBookmarksClick} className={cn({"is-active": (mainView == "bookmarks")})}><i className="fa-sharp fa-solid fa-bookmark"/> BOOKMARKS <span className="hotkey">&#x2318;B</span></a></li>
</ul>
<ul className="menu-list" style={{display: "none"}}>
<li className="menu-websharing"><a onClick={this.handleBookmarksClick} className={cn({"is-active": (mainView == "bookmarks")})}><i className="fa-sharp fa-solid fa-share-nodes"/> WEB SHARING</a></li>
<ul className="menu-list">
<li className="menu-websharing"><a onClick={this.handleWebSharingClick} className={cn({"is-active": (mainView == "webshare")})}><i className="fa-sharp fa-solid fa-share-nodes"/> WEB SHARING</a></li>
</ul>
<p className="menu-label display-none">
Playbooks

View File

@ -1958,12 +1958,6 @@ class HistoryViewModel {
this.selectedItems.clear();
})();
}
showWebShareView() : void {
mobx.action(() => {
GlobalModel.activeMainView.set("webshare");
})();
}
}
class BookmarksModel {
@ -2486,6 +2480,16 @@ class Model {
activeScreen.giveFocus();
}
getWebSharedScreens() : Screen[] {
let rtn : Screen[] = [];
for (let screen of this.screenMap.values()) {
if (screen.shareMode.get() == "web") {
rtn.push(screen);
}
}
return rtn;
}
getHasClientStop() : boolean {
if (this.clientData.get() == null) {
return true;
@ -2533,6 +2537,12 @@ class Model {
})();
}
showWebShareView() : void {
mobx.action(() => {
this.activeMainView.set("webshare");
})();
}
getBaseHostPort() : string {
if (this.isDev) {
return DevServerEndpoint;
@ -3356,12 +3366,13 @@ class CommandRunner {
GlobalModel.submitCommand("screen", null, [screen], {"nohist": "1"}, false);
}
lineView(sessionId : string, screenId : string, lineNum : number) {
lineView(sessionId : string, screenId : string, lineNum? : number) {
let screen = GlobalModel.getScreenById(sessionId, screenId);
if (screen != null) {
if (screen != null && lineNum != null) {
screen.setAnchorFields(lineNum, 0, "line:view");
}
GlobalModel.submitCommand("line", "view", [sessionId, screenId, String(lineNum)], {"nohist": "1"}, false);
let lineNumStr = ((lineNum == null || lineNum == 0) ? "E" : String(lineNum));
GlobalModel.submitCommand("line", "view", [sessionId, screenId, lineNumStr], {"nohist": "1"}, false);
}
lineArchive(lineArg : string, archive : boolean) {

View File

@ -661,4 +661,4 @@ class ClientSettingsModal extends React.Component<{}, {}> {
}
}
export {ScreenSettingsModal, SessionSettingsModal, LineSettingsModal, ClientSettingsModal};
export {ScreenSettingsModal, SessionSettingsModal, LineSettingsModal, ClientSettingsModal, WebStopShareConfirmMarkdown};

View File

@ -205,6 +205,7 @@ body::-webkit-scrollbar {
.alt-view {
background-color: #111;
overflow-y: auto;
flex-grow: 1;
.alt-title {
margin: 20px 10px 0px 5px;
@ -215,6 +216,18 @@ body::-webkit-scrollbar {
border-bottom: 1px solid white;
}
.alt-list {
color: white;
margin: 4px 10px 5px 5px;
border-bottom: 1px solid white;
}
.no-content {
color: @term-white;
padding: 30px 10px 35px 10px;
border-bottom: 1px solid white;
}
.close-button {
position: absolute;
padding: 4px;
@ -700,6 +713,45 @@ body::-webkit-scrollbar {
}
}
.webshare-view {
.webshare-item {
padding: 4px 5px 8px 15px;
margin-bottom: 4px;
border-top: 1px solid white;
display: flex;
flex-direction: row;
position: relative;
min-height: 55px;
align-items: center;
&:first-child {
border-top: 0;
}
.webshare-vic {
width: 200px;
.webshare-vic-link {
cursor: pointer;
&:hover {
text-decoration: underline;
}
}
}
.actions {
display: none;
flex-direction: row;
gap: 10px;
}
&:hover .actions {
display: flex;
}
}
}
.bookmarks-view {
.bookmarks-list {
color: white;

View File

@ -7,22 +7,139 @@ import {v4 as uuidv4} from "uuid";
import dayjs from "dayjs";
import {If, For, When, Otherwise, Choose} from "tsx-control-statements/components";
import cn from "classnames";
import {GlobalModel, GlobalCommandRunner} from "./model";
import {GlobalModel, GlobalCommandRunner, Screen} from "./model";
import {WebStopShareConfirmMarkdown} from "./settings";
type OV<V> = mobx.IObservableValue<V>;
type OArr<V> = mobx.IObservableArray<V>;
type OMap<K,V> = mobx.ObservableMap<K,V>;
@mobxReact.observer
class WebShareView extends React.Component<{}, {}> {
shareCopied : OV<string> = mobx.observable.box(null, {name: "sw-shareCopied"});
@boundMethod
closeView() : void {
GlobalModel.showSessionView();
}
@boundMethod
viewInContext(screen : Screen) {
GlobalModel.historyViewModel.closeView();
GlobalCommandRunner.lineView(screen.sessionId, screen.screenId, screen.selectedLine.get());
}
getSSName(screen : Screen, snames : Record<string, string>) : string {
let sessionName = snames[screen.sessionId] ?? "unknown";
return sprintf("#%s[%s]", sessionName, screen.name.get())
}
@boundMethod
copyShareLink(screen : Screen) : void {
let shareLink = screen.getWebShareUrl();
if (shareLink == null) {
return;
}
navigator.clipboard.writeText(shareLink);
mobx.action(() => {
this.shareCopied.set(screen.screenId);
})();
setTimeout(() => {
mobx.action(() => {
this.shareCopied.set(null);
})();
}, 600)
}
@boundMethod
openScreenSettings(screen : Screen) : void {
mobx.action(() => {
GlobalModel.screenSettingsModal.set({sessionId: screen.sessionId, screenId: screen.screenId});
})();
}
@boundMethod
stopSharing(screen : Screen) : void {
let message = WebStopShareConfirmMarkdown;
let alertRtn = GlobalModel.showAlert({message: message, confirm: true, markdown: true});
alertRtn.then((result) => {
if (!result) {
return;
}
let prtn = GlobalCommandRunner.screenWebShare(screen.screenId, false);
prtn.then((crtn) => {
if (crtn.success) {
return;
}
GlobalModel.showAlert({message: crtn.error});
});
});
}
render() {
let isHidden = (GlobalModel.activeMainView.get() != "bookmarks");
let isHidden = (GlobalModel.activeMainView.get() != "webshare");
if (isHidden) {
return null;
}
let snames = GlobalModel.getSessionNames();
let screenList = GlobalModel.getWebSharedScreens();
let screen : Screen = null;
return (
<div className={cn("webshare-view", "alt-view")}>
<div className="close-button" onClick={this.closeView}><i className="fa-sharp fa-solid fa-xmark"></i></div>
<div className="alt-title">
<i className="fa-sharp fa-solid fa-share-nodes" style={{marginRight: 10}}/>
WEB SHARING<If condition={screenList.length > 0}> ({screenList.length})</If>
</div>
<If condition={screenList.length == 0}>
<div className="no-content">
No Active Web Shares.<br/>
Share a screen using the "web share" toggle in screen/tab settings <i className="fa-sharp fa-solid fa-gear"/>.
</div>
</If>
<If condition={screenList.length > 0}>
<div className="alt-list">
<For each="screen" of={screenList}>
<div key={screen.screenId} className="webshare-item">
<If condition={this.shareCopied.get() == screen.screenId}>
<div className="copied-indicator"/>
</If>
<div className="webshare-vic">
<span className="webshare-vic-link" onClick={() => this.viewInContext(screen)}>
{this.getSSName(screen, snames)}
</span>
</div>
<div className="actions">
<div className="button is-prompt-green is-outlined is-small" onClick={() => this.copyShareLink(screen)}>
<span>copy link</span>
<span className="icon">
<i className="fa-sharp fa-solid fa-copy"/>
</span>
</div>
<div className="button is-prompt-green is-outlined is-small" onClick={() => this.openScreenSettings(screen)}>
<span>open settings</span>
<span className="icon">
<i className="fa-sharp fa-solid fa-cog"/>
</span>
</div>
<div className="button is-prompt-danger is-outlined is-small ml-4" onClick={() => this.stopSharing(screen)}>
<span>stop sharing</span>
<span className="icon">
<i className="fa-sharp fa-solid fa-trash"/>
</span>
</div>
</div>
</div>
</For>
</div>
</If>
<div className="alt-help">
<div className="help-entry">
Currently limited to a maximum of 3 screens, each with up to 50 commands.<br/>
Contact us on <a target="_blank" href="https://discord.gg/XfvZ334gwU"><i className="fa-brands fa-discord"/> Discord</a> to get a higher limit.
</div>
</div>
</div>
);
}