Started work on PM Panel layout

This commit is contained in:
rainbow napkin 2025-09-25 23:32:04 -04:00
parent 67edef9035
commit e19ae74412
11 changed files with 198 additions and 0 deletions

View file

@ -47,12 +47,14 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. %>
<script src="/js/channel/userlist.js"></script>
<script src="/js/channel/mediaHandler.js"></script>
<script src="/js/channel/player.js"></script>
<script src="/js/channel/pmHandler.js"></script>
<script src="/js/channel/cpanel.js"></script>
<%# panels %>
<script src="/js/channel/panels/emotePanel.js"></script>
<script src="/js/channel/panels/queuePanel/playlistManager.js"></script>
<script src="/js/channel/panels/queuePanel/queuePanel.js"></script>
<script src="/js/channel/panels/settingsPanel.js"></script>
<script src="/js/channel/panels/pmPanel.js"></script>
<%# main client %>
<script src="/js/channel/channel.js"></script>
</footer>

View file

@ -74,6 +74,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. %>
</div>
<div class="chat-panel control-prompt" id="chat-panel-control-div">
<i class="chat-panel chat-panel-control control-prompt bi-gear-fill" id="chat-panel-settings-icon"></i>
<i class="chat-panel chat-panel-control control-prompt bi-chat-left-quote-fill" id="chat-panel-pm-icon"></i>
<i class="chat-panel chat-panel-control control-prompt bi-magic" id="chat-panel-admin-icon"></i>
<i class="chat-panel chat-panel-control control-prompt bi-images" id="chat-panel-emote-icon"></i>
<span id="chat-panel-prompt-span">

View file

@ -0,0 +1,37 @@
<%# Canopy - The next generation of stoner streaming software
Copyright (C) 2024-2025 Rainbownapkin and the TTN Community
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. %>
<link rel="stylesheet" type="text/css" href="/css/panel/pm.css">
<div id="pm-panel-main-div">
<div id="pm-panel-sesh-list-container">
<div class="interactive" id="pm-panel-start-sesh">
<i class="bi-person-plus-fill"></i>
<span>Start Sesh</span>
</div>
<div id="pm-panel-sesh-list">
</div>
</div>
<div id="pm-panel-sesh-container">
<div id="pm-panel-sesh-buffer">
</div>
<div class="control-prompt" id="pm-panel-sesh-control-div">
<input class="control-prompt" id="pm-panel-message-prompt" placeholder="Chat...">
<button class="positive-button" id="pm-panel-send-button">Send</button>
</div>
</div>
</div>
</div>