mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-12-21 21:30:08 +00:00
Merge branch 'suite55'
This commit is contained in:
commit
8a82aedb76
@ -1,10 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2010-2021 Tim Düsterhus.
|
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||||
*
|
*
|
||||||
* Use of this software is governed by the Business Source License
|
* Use of this software is governed by the Business Source License
|
||||||
* included in the LICENSE file.
|
* included in the LICENSE file.
|
||||||
*
|
*
|
||||||
* Change Date: 2026-03-10
|
* Change Date: 2026-08-10
|
||||||
*
|
*
|
||||||
* On the date above, in accordance with the Business Source
|
* On the date above, in accordance with the Business Source
|
||||||
* License, use of this software will be governed by version 2
|
* License, use of this software will be governed by version 2
|
||||||
@ -70,17 +70,31 @@ #tpl_chat_log {
|
|||||||
flex: 0.5 0 auto;
|
flex: 0.5 0 auto;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
max-width: 310px;
|
max-width: min(310px, 35%);
|
||||||
|
|
||||||
> .boxContainer {
|
> .boxContainer {
|
||||||
-webkit-columns: 1;
|
-webkit-columns: 1;
|
||||||
-moz-columns: 1;
|
-moz-columns: 1;
|
||||||
columns: 1;
|
columns: 1;
|
||||||
|
|
||||||
|
margin-bottom: 0;
|
||||||
|
|
||||||
|
> .box {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include screen-lg {
|
@include screen-sm-up {
|
||||||
|
.layoutBoundary {
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content + .sidebar.boxesSidebarRight {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.boxesSidebarRight {
|
.boxesSidebarRight {
|
||||||
&,
|
&,
|
||||||
> .boxContainer {
|
> .boxContainer {
|
||||||
@ -89,6 +103,7 @@ #tpl_chat_log {
|
|||||||
}
|
}
|
||||||
|
|
||||||
> .boxContainer {
|
> .boxContainer {
|
||||||
|
overflow: auto;
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
|
|
||||||
> .box {
|
> .box {
|
||||||
@ -96,15 +111,27 @@ #tpl_chat_log {
|
|||||||
flex: 2 0 0px;
|
flex: 2 0 0px;
|
||||||
min-height: 15rem;
|
min-height: 15rem;
|
||||||
|
|
||||||
|
html.fullscreen & {
|
||||||
|
flex: 1 1 content;
|
||||||
|
}
|
||||||
|
|
||||||
> .boxContent {
|
> .boxContent {
|
||||||
flex-basis: 6rem;
|
flex-basis: 6rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&[data-box-identifier='be.bastelstu.chat.roomListSidebar'] {
|
&[data-box-identifier='be.bastelstu.chat.roomListSidebar'] {
|
||||||
flex: 1 1 0px;
|
flex: 1 1 12rem;
|
||||||
min-height: 12rem;
|
min-height: 12rem;
|
||||||
|
|
||||||
|
html.fullscreen & {
|
||||||
|
flex: 1 1 content;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-height: 440px) {
|
||||||
|
min-height: 120px;
|
||||||
|
}
|
||||||
|
|
||||||
.badge {
|
.badge {
|
||||||
float: right;
|
float: right;
|
||||||
padding-left: 7px;
|
padding-left: 7px;
|
||||||
@ -128,7 +155,9 @@ #tpl_chat_log {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include screen-lg {
|
||||||
#chatQuickSettings {
|
#chatQuickSettings {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -157,6 +186,11 @@ #tpl_chat_log {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
> .contentInteraction:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatMessageStream > .scrollContainer,
|
#chatMessageStream > .scrollContainer,
|
||||||
@ -257,7 +291,8 @@ #tpl_chat_log {
|
|||||||
|
|
||||||
// Limit embedded images and videos to a reasonable size
|
// Limit embedded images and videos to a reasonable size
|
||||||
img:not(.smiley):not(.userAvatarImage) {
|
img:not(.smiley):not(.userAvatarImage) {
|
||||||
max-width: $chatEmbedMaxWidth;
|
// Workaround: `min` is an internal Sass function but we want the actual CSS function
|
||||||
|
max-width: min + unquote( '(' ) + "#{100%, $chatEmbedMaxWidth}" + unquote( ')' );
|
||||||
}
|
}
|
||||||
|
|
||||||
.videoContainer {
|
.videoContainer {
|
||||||
@ -371,15 +406,18 @@ #tpl_chat_log {
|
|||||||
|
|
||||||
#chatInputContainer {
|
#chatInputContainer {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
margin-bottom: 1.48 * $wcfFontSizeDefault; // 1.48 is the default line height
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|
||||||
textarea {
|
|
||||||
resize: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.charCounter {
|
.charCounter {
|
||||||
float: right;
|
float: right;
|
||||||
color: $wcfContentDimmedText;
|
color: $wcfContentDimmedText;
|
||||||
|
margin-bottom: -(1.48 * $wcfFontSizeDefault);
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
resize: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
@ -489,30 +527,21 @@ #tpl_chat_log {
|
|||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#smileyPickerContainer {
|
#chatUserList,
|
||||||
#smilies-text {
|
[data-box-identifier='be.bastelstu.chat.roomListSidebar'] {
|
||||||
@if variable_exists(wcfContentContainerBackground) {
|
.modalCloseButton {
|
||||||
background-color: $wcfContentContainerBackground;
|
margin: 0 -10px -20px -10px;
|
||||||
} @else {
|
}
|
||||||
// Compatibility with API_VERSION 3.0
|
}
|
||||||
background-color: rgba(255, 255, 255, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
border: 1px solid $wcfContentBorderInner;
|
@include screen-md-down {
|
||||||
padding: 20px;
|
#smileyPickerContainer[data-show='true'] > div {
|
||||||
margin-top: 20px;
|
margin: 0;
|
||||||
margin-bottom: 20px;
|
|
||||||
|
|
||||||
> .smileyList {
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#smileyPickerCloseButton {
|
#smileyPickerContainer,
|
||||||
display: none;
|
#chatUserList,
|
||||||
}
|
[data-box-identifier='be.bastelstu.chat.roomListSidebar'] {
|
||||||
|
|
||||||
@include screen-md-down {
|
|
||||||
&[data-show='true'] {
|
&[data-show='true'] {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -524,7 +553,10 @@ #tpl_chat_log {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
|
|
||||||
#smileyPickerCloseButton {
|
background-color: $wcfContentBackground;
|
||||||
|
|
||||||
|
.modalCloseButton {
|
||||||
|
border-top: 1px solid $wcfContentBorderInner;
|
||||||
background-color: $wcfSidebarBackground;
|
background-color: $wcfSidebarBackground;
|
||||||
color: $wcfSidebarLink;
|
color: $wcfSidebarLink;
|
||||||
display: block;
|
display: block;
|
||||||
@ -534,12 +566,9 @@ #tpl_chat_log {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#smilies-text {
|
> div {
|
||||||
border-top: none;
|
border: none;
|
||||||
border-right: none;
|
|
||||||
border-left: none;
|
|
||||||
|
|
||||||
margin: 0;
|
|
||||||
height: 0;
|
height: 0;
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -570,6 +599,24 @@ #tpl_chat_log {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#smileyPickerContainer {
|
||||||
|
> .messageTabMenuContent {
|
||||||
|
background-color: $wcfContentContainerBackground;
|
||||||
|
border: 1px solid $wcfContentBorderInner;
|
||||||
|
padding: 20px;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
> .smileyList {
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.modalCloseButton {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#chatAttachmentUploadDialog {
|
#chatAttachmentUploadDialog {
|
||||||
.attachmentPreview {
|
.attachmentPreview {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -607,7 +654,9 @@ html.fullscreen {
|
|||||||
|
|
||||||
.pageHeaderContainer,
|
.pageHeaderContainer,
|
||||||
.pageNavigation,
|
.pageNavigation,
|
||||||
.pageFooter {
|
.boxesFooterBoxes,
|
||||||
|
.pageFooter,
|
||||||
|
.contentInteraction {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2010-2021 Tim Düsterhus.
|
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||||
*
|
*
|
||||||
* Use of this software is governed by the Business Source License
|
* Use of this software is governed by the Business Source License
|
||||||
* included in the LICENSE file.
|
* included in the LICENSE file.
|
||||||
*
|
*
|
||||||
* Change Date: 2026-03-10
|
* Change Date: 2026-08-10
|
||||||
*
|
*
|
||||||
* On the date above, in accordance with the Business Source
|
* On the date above, in accordance with the Business Source
|
||||||
* License, use of this software will be governed by version 2
|
* License, use of this software will be governed by version 2
|
||||||
@ -135,6 +135,7 @@ define(['WoltLabSuite/Core/Date/Util', 'WoltLabSuite/Core/Language'], function (
|
|||||||
textarea.parentNode.classList.add('flexibleTextarea')
|
textarea.parentNode.classList.add('flexibleTextarea')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
textarea.removeAttribute('rows')
|
||||||
textarea.classList.add('flexibleTextareaContent')
|
textarea.classList.add('flexibleTextareaContent')
|
||||||
pre.classList.add('flexibleTextareaMirror')
|
pre.classList.add('flexibleTextareaMirror')
|
||||||
|
|
||||||
@ -377,6 +378,20 @@ define(['WoltLabSuite/Core/Date/Util', 'WoltLabSuite/Core/Language'], function (
|
|||||||
|
|
||||||
return out
|
return out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static getElementSiblings(element) {
|
||||||
|
if (!element || !element.parentNode) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const children = [ ...element.parentNode.children ]
|
||||||
|
const index = children.indexOf(element);
|
||||||
|
|
||||||
|
return [
|
||||||
|
...children.slice(0, index),
|
||||||
|
...children.slice(index + 1)
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Helper
|
return Helper
|
||||||
|
112
files_wcf/js/Bastelstu.be/Chat/Ui/Settings/RoomListButton.js
Normal file
112
files_wcf/js/Bastelstu.be/Chat/Ui/Settings/RoomListButton.js
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||||
|
*
|
||||||
|
* Use of this software is governed by the Business Source License
|
||||||
|
* included in the LICENSE file.
|
||||||
|
*
|
||||||
|
* Change Date: 2026-08-10
|
||||||
|
*
|
||||||
|
* On the date above, in accordance with the Business Source
|
||||||
|
* License, use of this software will be governed by version 2
|
||||||
|
* or later of the General Public License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
define([
|
||||||
|
'../../Helper',
|
||||||
|
'./Button',
|
||||||
|
'WoltLabSuite/Core/Dom/Util',
|
||||||
|
'WoltLabSuite/Core/Language',
|
||||||
|
'WoltLabSuite/Core/Ui/Screen'
|
||||||
|
], function (
|
||||||
|
Helper,
|
||||||
|
Button,
|
||||||
|
DomUtil,
|
||||||
|
Language,
|
||||||
|
UiScreen
|
||||||
|
) {
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
const DEPENDENCIES = [].concat(Button.DEPENDENCIES || [])
|
||||||
|
class RoomListButton extends Button {
|
||||||
|
constructor(element, ...superDeps) {
|
||||||
|
super(element, ...superDeps)
|
||||||
|
|
||||||
|
this.roomList = document.querySelector(`[data-box-identifier='be.bastelstu.chat.roomListSidebar']`)
|
||||||
|
if (!this.roomList) {
|
||||||
|
element.remove()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
this.mobile = false
|
||||||
|
this.open = false
|
||||||
|
this.sidebar = document.querySelector('.sidebar')
|
||||||
|
|
||||||
|
UiScreen.on('screen-xs', {
|
||||||
|
match: () => this.enableMobile(),
|
||||||
|
unmatch: () => this.disableMobile(),
|
||||||
|
setup: () => this.enableMobile(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
enableMobile() {
|
||||||
|
this.mobile = true
|
||||||
|
this.element.parentElement.hidden = false
|
||||||
|
}
|
||||||
|
|
||||||
|
disableMobile() {
|
||||||
|
if (this.open) {
|
||||||
|
this.show(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
this.element.parentElement.hidden = true
|
||||||
|
this.mobile = false
|
||||||
|
}
|
||||||
|
|
||||||
|
show(doShow = true) {
|
||||||
|
if (doShow) {
|
||||||
|
this.open = true
|
||||||
|
this.sidebar.style.setProperty('display', 'contents', '');
|
||||||
|
|
||||||
|
for (let sibling of Helper.getElementSiblings(this.roomList)) {
|
||||||
|
DomUtil.hide(sibling)
|
||||||
|
}
|
||||||
|
|
||||||
|
this.closeButton = document.createElement('span')
|
||||||
|
this.closeButton.classList.add('modalCloseButton')
|
||||||
|
this.closeButton.innerText = Language.get('wcf.global.button.close')
|
||||||
|
this.closeButton.addEventListener('click', () => this.show(false))
|
||||||
|
this.roomList.appendChild(this.closeButton)
|
||||||
|
|
||||||
|
this.roomList.dataset.show = 'true'
|
||||||
|
|
||||||
|
if (this.mobile) {
|
||||||
|
UiScreen.scrollDisable()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
delete this.roomList.dataset.show
|
||||||
|
this.closeButton.remove()
|
||||||
|
|
||||||
|
for (let sibling of Helper.getElementSiblings(this.roomList)) {
|
||||||
|
DomUtil.show(sibling)
|
||||||
|
}
|
||||||
|
|
||||||
|
this.sidebar.style.removeProperty('display')
|
||||||
|
this.open = false
|
||||||
|
|
||||||
|
if (this.mobile) {
|
||||||
|
UiScreen.scrollEnable()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async onClick(event) {
|
||||||
|
super.onClick(event)
|
||||||
|
|
||||||
|
this.show(!this.open)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
RoomListButton.DEPENDENCIES = DEPENDENCIES
|
||||||
|
|
||||||
|
return RoomListButton
|
||||||
|
})
|
@ -1,10 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2010-2021 Tim Düsterhus.
|
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||||
*
|
*
|
||||||
* Use of this software is governed by the Business Source License
|
* Use of this software is governed by the Business Source License
|
||||||
* included in the LICENSE file.
|
* included in the LICENSE file.
|
||||||
*
|
*
|
||||||
* Change Date: 2026-03-10
|
* Change Date: 2026-08-10
|
||||||
*
|
*
|
||||||
* On the date above, in accordance with the Business Source
|
* On the date above, in accordance with the Business Source
|
||||||
* License, use of this software will be governed by version 2
|
* License, use of this software will be governed by version 2
|
||||||
@ -97,7 +97,7 @@ define(['./ToggleButton', 'WoltLabSuite/Core/Ui/Screen'], function (
|
|||||||
enableMobile() {
|
enableMobile() {
|
||||||
this.mobile = true
|
this.mobile = true
|
||||||
|
|
||||||
elHide(this.element)
|
elHide(this.element.parentElement)
|
||||||
elShow(this.shadowToggleButton)
|
elShow(this.shadowToggleButton)
|
||||||
|
|
||||||
// Do not show the overlay when the viewport changes
|
// Do not show the overlay when the viewport changes
|
||||||
@ -114,7 +114,7 @@ define(['./ToggleButton', 'WoltLabSuite/Core/Ui/Screen'], function (
|
|||||||
disableMobile() {
|
disableMobile() {
|
||||||
this.mobile = false
|
this.mobile = false
|
||||||
|
|
||||||
elShow(this.element)
|
elShow(this.element.parentElement)
|
||||||
elHide(this.shadowToggleButton)
|
elHide(this.shadowToggleButton)
|
||||||
|
|
||||||
UiScreen.scrollEnable()
|
UiScreen.scrollEnable()
|
||||||
|
107
files_wcf/js/Bastelstu.be/Chat/Ui/Settings/UserListButton.js
Normal file
107
files_wcf/js/Bastelstu.be/Chat/Ui/Settings/UserListButton.js
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||||
|
*
|
||||||
|
* Use of this software is governed by the Business Source License
|
||||||
|
* included in the LICENSE file.
|
||||||
|
*
|
||||||
|
* Change Date: 2026-08-10
|
||||||
|
*
|
||||||
|
* On the date above, in accordance with the Business Source
|
||||||
|
* License, use of this software will be governed by version 2
|
||||||
|
* or later of the General Public License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
define([
|
||||||
|
'../../Helper',
|
||||||
|
'./Button',
|
||||||
|
'WoltLabSuite/Core/Dom/Util',
|
||||||
|
'WoltLabSuite/Core/Language',
|
||||||
|
'WoltLabSuite/Core/Ui/Screen'
|
||||||
|
], function (
|
||||||
|
Helper,
|
||||||
|
Button,
|
||||||
|
DomUtil,
|
||||||
|
Language,
|
||||||
|
UiScreen
|
||||||
|
) {
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
const DEPENDENCIES = [].concat(Button.DEPENDENCIES || [])
|
||||||
|
class UserListButton extends Button {
|
||||||
|
constructor(element, ...superDeps) {
|
||||||
|
super(element, ...superDeps)
|
||||||
|
|
||||||
|
this.mobile = false
|
||||||
|
this.open = false
|
||||||
|
this.userList = document.getElementById('chatUserList')
|
||||||
|
this.sidebar = document.querySelector('.sidebar')
|
||||||
|
|
||||||
|
UiScreen.on('screen-xs', {
|
||||||
|
match: () => this.enableMobile(),
|
||||||
|
unmatch: () => this.disableMobile(),
|
||||||
|
setup: () => this.enableMobile(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
enableMobile() {
|
||||||
|
this.mobile = true
|
||||||
|
this.element.parentElement.hidden = false
|
||||||
|
}
|
||||||
|
|
||||||
|
disableMobile() {
|
||||||
|
if (this.open) {
|
||||||
|
this.show(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
this.element.parentElement.hidden = true
|
||||||
|
this.mobile = false
|
||||||
|
}
|
||||||
|
|
||||||
|
show(doShow = true) {
|
||||||
|
if (doShow) {
|
||||||
|
this.open = true
|
||||||
|
this.sidebar.style.setProperty('display', 'contents', '');
|
||||||
|
|
||||||
|
for (let sibling of Helper.getElementSiblings(this.userList)) {
|
||||||
|
DomUtil.hide(sibling)
|
||||||
|
}
|
||||||
|
|
||||||
|
this.closeButton = document.createElement('span')
|
||||||
|
this.closeButton.classList.add('modalCloseButton')
|
||||||
|
this.closeButton.innerText = Language.get('wcf.global.button.close')
|
||||||
|
this.closeButton.addEventListener('click', () => this.show(false))
|
||||||
|
this.userList.appendChild(this.closeButton)
|
||||||
|
|
||||||
|
this.userList.dataset.show = 'true'
|
||||||
|
|
||||||
|
if (this.mobile) {
|
||||||
|
UiScreen.scrollDisable()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
delete this.userList.dataset.show
|
||||||
|
this.closeButton.remove()
|
||||||
|
|
||||||
|
for (let sibling of Helper.getElementSiblings(this.userList)) {
|
||||||
|
DomUtil.show(sibling)
|
||||||
|
}
|
||||||
|
|
||||||
|
this.sidebar.style.removeProperty('display')
|
||||||
|
this.open = false
|
||||||
|
|
||||||
|
if (this.mobile) {
|
||||||
|
UiScreen.scrollEnable()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async onClick(event) {
|
||||||
|
super.onClick(event)
|
||||||
|
|
||||||
|
this.show(!this.open)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
UserListButton.DEPENDENCIES = DEPENDENCIES
|
||||||
|
|
||||||
|
return UserListButton
|
||||||
|
})
|
@ -124,6 +124,8 @@
|
|||||||
<item name="chat.room.button.fullscreen"><![CDATA[Vollbild umschalten]]></item>
|
<item name="chat.room.button.fullscreen"><![CDATA[Vollbild umschalten]]></item>
|
||||||
<item name="chat.room.button.leave"><![CDATA[Chat verlassen]]></item>
|
<item name="chat.room.button.leave"><![CDATA[Chat verlassen]]></item>
|
||||||
<item name="chat.room.button.notifications"><![CDATA[Benachrichtigungen umschalten]]></item>
|
<item name="chat.room.button.notifications"><![CDATA[Benachrichtigungen umschalten]]></item>
|
||||||
|
<item name="chat.room.button.userList"><![CDATA[Nutzerliste anzeigen]]></item>
|
||||||
|
<item name="chat.room.button.roomList"><![CDATA[Raumliste anzeigen]]></item>
|
||||||
<item name="chat.room.userList"><![CDATA[Benutzer]]></item>
|
<item name="chat.room.userList"><![CDATA[Benutzer]]></item>
|
||||||
<item name="chat.room.userList.away"><![CDATA[Abwesend{if $user.away}: {$user.away}{/if}]]></item>
|
<item name="chat.room.userList.away"><![CDATA[Abwesend{if $user.away}: {$user.away}{/if}]]></item>
|
||||||
<item name="chat.room.userList.moderator"><![CDATA[Moderator]]></item>
|
<item name="chat.room.userList.moderator"><![CDATA[Moderator]]></item>
|
||||||
|
@ -124,6 +124,8 @@
|
|||||||
<item name="chat.room.button.fullscreen"><![CDATA[Toggle Fullscreen]]></item>
|
<item name="chat.room.button.fullscreen"><![CDATA[Toggle Fullscreen]]></item>
|
||||||
<item name="chat.room.button.leave"><![CDATA[Leave Chat]]></item>
|
<item name="chat.room.button.leave"><![CDATA[Leave Chat]]></item>
|
||||||
<item name="chat.room.button.notifications"><![CDATA[Toggle Notifications]]></item>
|
<item name="chat.room.button.notifications"><![CDATA[Toggle Notifications]]></item>
|
||||||
|
<item name="chat.room.button.userList"><![CDATA[Show User List]]></item>
|
||||||
|
<item name="chat.room.button.roomList"><![CDATA[Show Room List]]></item>
|
||||||
<item name="chat.room.userList"><![CDATA[Users]]></item>
|
<item name="chat.room.userList"><![CDATA[Users]]></item>
|
||||||
<item name="chat.room.userList.away"><![CDATA[Away{if $user.away}: {$user.away}{/if}]]></item>
|
<item name="chat.room.userList.away"><![CDATA[Away{if $user.away}: {$user.away}{/if}]]></item>
|
||||||
<item name="chat.room.userList.moderator"><![CDATA[Moderator]]></item>
|
<item name="chat.room.userList.moderator"><![CDATA[Moderator]]></item>
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
<li><a class="button" href="#" data-module="Bastelstu.be/Chat/Ui/Settings/FullscreenButton"><span class="icon icon16 fa-arrows-alt"></span> <span>{lang}chat.room.button.fullscreen{/lang}</span></a></li>
|
<li><a class="button" href="#" data-module="Bastelstu.be/Chat/Ui/Settings/FullscreenButton"><span class="icon icon16 fa-arrows-alt"></span> <span>{lang}chat.room.button.fullscreen{/lang}</span></a></li>
|
||||||
<li><a class="button" href="#" data-module="Bastelstu.be/Chat/Ui/Settings/NotificationsButton"><span class="icon icon16 fa-bell-o"></span> <span>{lang}chat.room.button.notifications{/lang}</span></a></li>
|
<li><a class="button" href="#" data-module="Bastelstu.be/Chat/Ui/Settings/NotificationsButton"><span class="icon icon16 fa-bell-o"></span> <span>{lang}chat.room.button.notifications{/lang}</span></a></li>
|
||||||
<li><a class="button" href="#" data-module="Bastelstu.be/Chat/Ui/Settings/AutoscrollButton"><span class="icon icon16 fa-arrow-down"></span> <span>{lang}chat.room.button.autoscroll{/lang}</span></a></li>
|
<li><a class="button" href="#" data-module="Bastelstu.be/Chat/Ui/Settings/AutoscrollButton"><span class="icon icon16 fa-arrow-down"></span> <span>{lang}chat.room.button.autoscroll{/lang}</span></a></li>
|
||||||
|
<li hidden><a class="button" href="#" data-module="Bastelstu.be/Chat/Ui/Settings/UserListButton"><span class="icon icon16 fa-users"></span> <span>{lang}chat.room.button.userList{/lang}</span></a></li>
|
||||||
|
<li hidden><a class="button" href="#" data-module="Bastelstu.be/Chat/Ui/Settings/RoomListButton"><span class="icon icon16 fa-comments"></span> <span>{lang}chat.room.button.roomList{/lang}</span></a></li>
|
||||||
{event name='buttons'}
|
{event name='buttons'}
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -10,19 +10,16 @@
|
|||||||
</section>
|
</section>
|
||||||
{/capture}
|
{/capture}
|
||||||
|
|
||||||
{capture assign='headerNavigation'}
|
{capture assign='contentInteractionButtons'}
|
||||||
{if $room->canSeeLog()}
|
{if $room->canSeeLog()}
|
||||||
<li>
|
<a href="{link controller='Log' application='chat' object=$room}{/link}" title="{lang}chat.log.title{/lang}" class="contentInteractionButton button small">
|
||||||
<a href="{link controller='Log' application='chat' object=$room}{/link}" title="{lang}chat.log.title{/lang}" class="jsTooltip">
|
<span class="icon icon16 fa-tasks"></span> <span>{lang}chat.log.title{/lang}</span>
|
||||||
<span class="icon icon16 fa-tasks"></span> <span class="invisible">{lang}chat.log.title{/lang}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{/if}
|
|
||||||
<li>
|
|
||||||
<a href="{link}{/link}" title="{lang}chat.room.button.leave{/lang}" class="jsTooltip chatLeaveButton">
|
|
||||||
<span class="icon icon16 fa-power-off"></span> <span class="invisible">{lang}chat.room.button.leave{/lang}</span>
|
|
||||||
</a>
|
</a>
|
||||||
</li>
|
{/if}
|
||||||
|
|
||||||
|
<a href="{link}{/link}" title="{lang}chat.room.button.leave{/lang}" class="contentInteractionButton button small chatLeaveButton">
|
||||||
|
<span class="icon icon16 fa-power-off"></span> <span>{lang}chat.room.button.leave{/lang}</span>
|
||||||
|
</a>
|
||||||
{/capture}
|
{/capture}
|
||||||
|
|
||||||
{capture assign='__pageDataAttributes'}data-room-id="{@$room->roomID}"{/capture}
|
{capture assign='__pageDataAttributes'}data-room-id="{@$room->roomID}"{/capture}
|
||||||
@ -63,7 +60,7 @@
|
|||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
<div class="chatInputWrapper">
|
<div class="chatInputWrapper">
|
||||||
<textarea maxlength="{CHAT_MAX_LENGTH}" class="long"></textarea>
|
<textarea maxlength="{CHAT_MAX_LENGTH}" class="long" rows="1"></textarea>
|
||||||
<span id="chatQuickSettings">
|
<span id="chatQuickSettings">
|
||||||
<span class="icon icon24 fa-ellipsis-v"></span>
|
<span class="icon icon24 fa-ellipsis-v"></span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{if MODULE_SMILEY && !$smileyCategories|empty}
|
{if MODULE_SMILEY && !$smileyCategories|empty}
|
||||||
<div id="smileyPickerContainer" style="display: none;">
|
<div id="smileyPickerContainer" style="display: none;">
|
||||||
{include file='messageFormSmilies'}
|
{include file='messageFormSmilies'}
|
||||||
<span id="smileyPickerCloseButton">{lang}wcf.global.button.close{/lang}</span>
|
<span id="smileyPickerCloseButton" class="modalCloseButton">{lang}wcf.global.button.close{/lang}</span>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
Loading…
Reference in New Issue
Block a user