Added pop-out Canopy Panels.
Also added un-pin button to pinned Canopy Panel
This commit is contained in:
parent
9a17dc5c86
commit
3c185b4e28
10 changed files with 213 additions and 48 deletions
|
|
@ -39,7 +39,6 @@ class channel{
|
|||
}
|
||||
|
||||
defineListeners(){
|
||||
//This function should serve mostly to glue functions from channel and it's children to it's socket's listeners.
|
||||
this.socket.on("connect", () => {
|
||||
document.title = `${this.channelName} - Connected`
|
||||
});
|
||||
|
|
|
|||
|
|
@ -27,10 +27,13 @@ class chatBox{
|
|||
|
||||
//Element Nodes
|
||||
this.chatPanel = document.querySelector("#chat-panel-div");
|
||||
this.highLevel = document.querySelector("#chat-panel-high-level-select");
|
||||
this.chatBuffer = document.querySelector("#chat-panel-buffer-div");
|
||||
this.chatPrompt = document.querySelector("#chat-panel-prompt");
|
||||
this.settingsIcon = document.querySelector("#chat-panel-settings-icon");
|
||||
this.adminIcon = document.querySelector("#chat-panel-admin-icon");
|
||||
this.emoteIcon = document.querySelector("#chat-panel-emote-icon");
|
||||
this.sendButton = document.querySelector("#chat-panel-send-button");
|
||||
this.highLevel = document.querySelector("#chat-panel-high-level-select");
|
||||
//Seems weird to stick this in here, but the split is dictated by chat width :P
|
||||
this.aspectLockIcon = document.querySelector("#media-panel-aspect-lock-icon");
|
||||
this.hideChatIcon = document.querySelector("#chat-panel-div-hide");
|
||||
|
|
@ -46,6 +49,9 @@ class chatBox{
|
|||
//Chat bar
|
||||
this.chatPrompt.addEventListener("keydown", this.send.bind(this));
|
||||
this.sendButton.addEventListener("click", this.send.bind(this));
|
||||
this.settingsIcon.addEventListener("click", ()=>{this.client.cPanel.setActivePanel(new panelObj)});
|
||||
this.adminIcon.addEventListener("click", ()=>{this.client.cPanel.setActivePanel(new panelObj)});
|
||||
this.emoteIcon.addEventListener("click", ()=>{this.client.cPanel.setActivePanel(new panelObj)});
|
||||
|
||||
//Header icons
|
||||
this.aspectLockIcon.addEventListener("click", this.lockAspect.bind(this));
|
||||
|
|
|
|||
|
|
@ -30,11 +30,14 @@ class cPanel{
|
|||
this.activePanelTitle = document.querySelector("#cpanel-active-title");
|
||||
this.activePanelDoc = document.querySelector("#cpanel-active-doc");
|
||||
this.activePanelPinIcon = document.querySelector("#cpanel-active-pin-icon");
|
||||
this.activePanelPopoutIcon = document.querySelector("#cpanel-active-popout-icon");
|
||||
this.activePanelCloseIcon = document.querySelector("#cpanel-active-close-icon");
|
||||
//Pinned Panel
|
||||
this.pinnedPanelDiv = document.querySelector("#cpanel-pinned-div");
|
||||
this.pinnedPanelTitle = document.querySelector("#cpanel-pinned-title");
|
||||
this.pinnedPanelDoc = document.querySelector("#cpanel-pinned-doc");
|
||||
this.activePanelUnpinIcon = document.querySelector("#cpanel-pinned-unpin-icon");
|
||||
this.pinnedPanelPopoutIcon = document.querySelector("#cpanel-pinned-popout-icon");
|
||||
this.pinnedPanelCloseIcon = document.querySelector("#cpanel-pinned-close-icon");
|
||||
|
||||
this.setupInput();
|
||||
|
|
@ -42,16 +45,20 @@ class cPanel{
|
|||
|
||||
setupInput(){
|
||||
this.activePanelCloseIcon.addEventListener("click", this.hideActivePanel.bind(this));
|
||||
this.activePanelPinIcon.addEventListener("click", this.pinActivePanel.bind(this));
|
||||
this.activePanelPinIcon.addEventListener("click", this.pinPanel.bind(this));
|
||||
this.activePanelPopoutIcon.addEventListener("click", this.popActivePanel.bind(this));
|
||||
this.pinnedPanelCloseIcon.addEventListener("click", this.hidePinnedPanel.bind(this));
|
||||
this.activePanelUnpinIcon.addEventListener("click", this.unpinPanel.bind(this));
|
||||
this.pinnedPanelPopoutIcon.addEventListener("click", this.popPinnedPanel.bind(this));
|
||||
}
|
||||
|
||||
async setActivePanel(panel){
|
||||
async setActivePanel(panel, panelBody){
|
||||
//Set active panel
|
||||
this.activePanel = panel;
|
||||
|
||||
//Grab panel hypertext content and load it into div
|
||||
this.activePanelDoc.innerHTML = await this.activePanel.getPage();
|
||||
this.activePanelDoc.innerHTML = (panelBody == null || panelBody == "") ? await this.activePanel.getPage() : panelBody;
|
||||
|
||||
|
||||
//Display panel
|
||||
this.activePanelDiv.style.display = "flex";
|
||||
|
|
@ -66,23 +73,17 @@ class cPanel{
|
|||
this.activePanel = null;
|
||||
}
|
||||
|
||||
pinActivePanel(){
|
||||
//Yoink panel object
|
||||
this.pinnedPanel = this.activePanel
|
||||
|
||||
//Yoink Content and Title
|
||||
this.pinnedPanelTitle.textContent = this.pinnedPanel.name;
|
||||
this.pinnedPanelDoc.innerHTML = this.activePanelDoc.innerHTML;
|
||||
|
||||
//Do a switchem
|
||||
this.pinnedPanelDiv.style.display = "flex";
|
||||
pinPanel(){
|
||||
this.setPinnedPanel(this.activePanel, this.activePanelDoc.innerHTML);
|
||||
this.hideActivePanel();
|
||||
|
||||
//Re-Run panel init function
|
||||
this.pinnedPanel.panelInit();
|
||||
}
|
||||
|
||||
async setPinnedPanel(panel){
|
||||
popActivePanel(){
|
||||
this.popPanel(this.activePanel, this.activePanelDoc.innerHTML);
|
||||
this.hideActivePanel();
|
||||
}
|
||||
|
||||
async setPinnedPanel(panel, panelBody){
|
||||
//Set pinned panel
|
||||
this.pinnedPanel = panel;
|
||||
|
||||
|
|
@ -90,7 +91,7 @@ class cPanel{
|
|||
this.pinnedPanelTitle.textContent = this.pinnedPanel.name;
|
||||
|
||||
//Grab panel hypertext content and load it into div
|
||||
this.pinnedPanelDoc.innerHTML = await this.pinnedPanel.getPage();
|
||||
this.pinnedPanelDoc.innerHTML = (panelBody == null || panelBody == "") ? await this.pinnedPanel.getPage() : panelBody;
|
||||
|
||||
//Display panel
|
||||
this.pinnedPanelDiv.style.display = "flex";
|
||||
|
|
@ -104,13 +105,29 @@ class cPanel{
|
|||
this.pinnedPanel = null;
|
||||
}
|
||||
|
||||
unpinPanel(){
|
||||
this.setActivePanel(this.pinnedPanel, this.pinnedPanelDoc.innerHTML);
|
||||
this.hidePinnedPanel();
|
||||
}
|
||||
|
||||
popPinnedPanel(){
|
||||
this.popPanel(this.pinnedPanel, this.pinnedPanelDoc.innerHTML);
|
||||
this.hidePinnedPanel();
|
||||
}
|
||||
|
||||
popPanel(panel, panelBody){
|
||||
var newPanel = new poppedPanel(panel, panelBody, this)
|
||||
|
||||
this.poppedPanels.push(newPanel);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class panelObj{
|
||||
constructor(name = "Placeholder Panel", pageURL = "/panel/placeholder"){
|
||||
constructor(name = "Placeholder Panel", pageURL = "/panel/placeholder", panelDocument = window.document){
|
||||
this.name = name;
|
||||
this.pageURL = pageURL;
|
||||
this.panelDocument = panelDocument;
|
||||
}
|
||||
|
||||
async getPage(){
|
||||
|
|
@ -123,4 +140,80 @@ class panelObj{
|
|||
|
||||
panelInit(){
|
||||
}
|
||||
}
|
||||
|
||||
class poppedPanel{
|
||||
constructor(panel, panelBody, cPanel){
|
||||
//Set Panel Object
|
||||
this.panel = panel;
|
||||
//Set Panel Body
|
||||
this.panelBody = panelBody;
|
||||
//Set Window Placeholder
|
||||
this.window = null;
|
||||
|
||||
//Element Node Placeholders
|
||||
this.pinnedPanelDiv = null;
|
||||
this.pinnedPanelTitle = null;
|
||||
this.pinnedPanelDoc = null;
|
||||
this.pinnedPanelCloseIcon = null;
|
||||
|
||||
//Functions
|
||||
this.cPanel = cPanel;
|
||||
|
||||
//Continue constructor asynchrnously
|
||||
this.asyncConstructor();
|
||||
}
|
||||
|
||||
async asyncConstructor(){
|
||||
//Set panel body properly
|
||||
this.panelBody = (this.panelBody == null || this.panelBody == "") ? await this.panel.getPage() : this.panelBody;
|
||||
|
||||
//Pop the panel
|
||||
this.popContainer();
|
||||
}
|
||||
|
||||
popContainer(){
|
||||
//Set Window Object
|
||||
this.window = window.open("/panel/popoutContainer","",`menubar=no,height=850,width=600`);
|
||||
this.window.addEventListener("load", this.fillContainer.bind(this));
|
||||
}
|
||||
|
||||
fillContainer(){
|
||||
//Set Element Nodes
|
||||
this.panelDiv = this.window.document.querySelector("#cpanel-div");
|
||||
this.panelTitle = this.window.document.querySelector("#cpanel-title");
|
||||
this.panelDoc = this.window.document.querySelector("#cpanel-doc");
|
||||
this.panelPopinIcon = this.window.document.querySelector("#cpanel-popin-icon");
|
||||
this.panelPinIcon = this.window.document.querySelector("#cpanel-pin-icon");
|
||||
|
||||
//Set Window Title
|
||||
this.window.document.title = this.window.document.title.replace("NULL_POPOUT", `${this.panel.name} (${client.channelName})`);
|
||||
//Set Panel Content
|
||||
this.panelTitle.innerText = this.panel.name;
|
||||
this.panelDoc.innerHTML = this.panelBody;
|
||||
|
||||
this.setupInput();
|
||||
}
|
||||
|
||||
setupInput(){
|
||||
this.panelPopinIcon.addEventListener("click", this.unpop.bind(this));
|
||||
this.panelPinIcon.addEventListener("click", this.pin.bind(this));
|
||||
this.window.addEventListener("unload", this.closer.bind(this));
|
||||
}
|
||||
|
||||
closer(){
|
||||
this.cPanel.poppedPanels.splice(this.cPanel.poppedPanels.indexOf(this),1);
|
||||
}
|
||||
|
||||
unpop(){
|
||||
//Set active panel
|
||||
this.cPanel.setActivePanel(this.panel, this.panelDoc.innerHTML);
|
||||
this.window.close();
|
||||
}
|
||||
|
||||
pin(){
|
||||
this.cPanel.setPinnedPanel(this.panel, this.panelDoc.innerHTML);
|
||||
this.window.close();
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue