From 16924a5ff55992cb17ff21ef2d4d333c21033bf3 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Sun, 30 Mar 2025 13:50:01 -0700 Subject: [PATCH] Refactor WebRTC and Webcam Feature into Vue Mixin * Move all WebRTC and webcam-related functionality from App.vue into an external Vue mixin. * Centralize the stand-alone functions videoIconClass and videoButtonClass into the new WebRTC mixin, which is called by WhoListRow and MessageBox. --- src/App.vue | 1787 +------------------------------ src/components/MessageBox.vue | 40 +- src/components/WhoListRow.vue | 40 +- src/lib/WebRTC.js | 1890 +++++++++++++++++++++++++++++++++ 4 files changed, 1906 insertions(+), 1851 deletions(-) create mode 100644 src/lib/WebRTC.js diff --git a/src/App.vue b/src/App.vue index b38b6d3..0561796 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,10 +1,7 @@