Skip to content

Commit

Permalink
Make watching focus active state dependent on user focus
Browse files Browse the repository at this point in the history
  • Loading branch information
faebiedev committed Jan 14, 2024
1 parent 91f4264 commit 845a84b
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 8 deletions.
10 changes: 2 additions & 8 deletions assets/chat/js/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import {
import ChatAutoComplete from './autocomplete';
import ChatInputHistory from './history';
import ChatUserFocus from './focus';
import ChatWatchingFocus from './watching-focus';
import ChatStore from './store';
import Settings from './settings';
import ChatWindow from './window';
Expand Down Expand Up @@ -103,7 +104,6 @@ class Chat {
this.regexhighlightnicks = null;
this.regexhighlightself = null;
this.replyusername = null;
this.watchingfocus = false;

// An interface to tell the chat to do things via chat commands, or via emit
// e.g. control.emit('CONNECT', 'ws://localhost:9001') is essentially chat.cmdCONNECT('ws://localhost:9001')
Expand Down Expand Up @@ -290,6 +290,7 @@ class Chat {
this.windowselect = this.ui.find('#chat-windows-select');
this.inputhistory = new ChatInputHistory(this);
this.userfocus = new ChatUserFocus(this, this.css);
this.watchingfocus = new ChatWatchingFocus(this.ui);
this.mainwindow = new ChatWindow('main').into(this);
this.mutedtimer = new MutedTimer(this);
this.chatpoll = new ChatPoll(this);
Expand Down Expand Up @@ -368,13 +369,6 @@ class Chat {
}
});

// Watching focus
this.ui.on('click touch', '#chat-watching-focus-btn', () => {
this.watchingfocus = !this.watchingfocus;
this.ui.toggleClass('watching-focus', this.watchingfocus);
this.ui.find('#chat-watching-focus-btn').toggleClass('active');
});

// Chat focus / menu close when clicking on some areas
let downinoutput = false;
this.output.on('mousedown', () => {
Expand Down
76 changes: 76 additions & 0 deletions assets/chat/js/watching-focus.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/**
* Handles the dimming of chat messages from users not watching the same embedded stream
*/
class ChatWatchingFocus {
constructor(ui) {
this.ui = ui;

// constant vars
this.watchingFocusClassName = 'watching-focus';
this.userFocusClassName = 'focus';
this.observer = new MutationObserver(this.mutationCallback);

// mutable class vars
this.watchingFocusActive = null;
this.lastClassState = null;

this.init();
}

// Initialize variables & methods
init() {
this.watchingFocusActive = false;
this.lastClassState = this.ui[0].classList.contains(
this.userFocusClassName,
);

// Start mutation observer
this.observe(this.ui[0]);

// Watching focus button action
this.ui.on('click touch', '#chat-watching-focus-btn', () =>
this.toggleWatchingFocus(),
);
}

observe(element) {
this.observer.observe(element, { attributes: true });
}

toggleWatchingFocus() {
this.watchingFocusActive = !this.watchingFocusActive;
this.ui.toggleClass(this.watchingFocusClassName, this.watchingFocusActive);
this.ui.find('#chat-watching-focus-btn').toggleClass('active');
}

mutationCallback = (mutationsList) => {
for (const mutation of mutationsList) {
if (
mutation.type === 'attributes' &&
mutation.attributeName === 'class'
) {
const currentClassState = mutation.target.classList.contains(
this.userFocusClassName,
);

// If focus class has been added or removed, do stuff
if (this.lastClassState !== currentClassState) {
this.lastClassState = currentClassState;

// If 'focus' added to class list, disable 'watching-focus'
// else if 'focus' is removed, toggle 'watching-focus' according to previous boolean value
if (currentClassState) {
this.ui.removeClass(this.watchingFocusClassName);
} else {
this.ui.toggleClass(
this.watchingFocusClassName,
this.watchingFocusActive,
);
}
}
}
}
};
}

export default ChatWatchingFocus;

0 comments on commit 845a84b

Please sign in to comment.