Update CharCounter.plugin.js

This commit is contained in:
Mirco Wittrien 2020-07-07 17:15:39 +02:00
parent 7a27356a0a
commit 2db7b5e190
1 changed files with 4 additions and 5 deletions

View File

@ -2,9 +2,9 @@
var CharCounter = (_ => { var CharCounter = (_ => {
const maxLenghts = { const maxLenghts = {
chat: 2000, normal: 2000,
edit: 2000, edit: 2000,
upload: 2000, form: 2000,
nick: 32, nick: 32,
popoutnote: 256, popoutnote: 256,
profilenote: 256 profilenote: 256
@ -17,7 +17,7 @@ var CharCounter = (_ => {
return class CharCounter { return class CharCounter {
getName () {return "CharCounter";} getName () {return "CharCounter";}
getVersion () {return "1.4.7";} getVersion () {return "1.4.8";}
getAuthor () {return "DevilBro";} getAuthor () {return "DevilBro";}
@ -147,10 +147,9 @@ var CharCounter = (_ => {
injectCounter (parent, children, type, refClass, parsing) { injectCounter (parent, children, type, refClass, parsing) {
if (!children) return; if (!children) return;
type = typeMap[type] || type;
parent.props.className = BDFDB.DOMUtils.formatClassName(parent.props.className, BDFDB.disCN._charcountercounteradded); parent.props.className = BDFDB.DOMUtils.formatClassName(parent.props.className, BDFDB.disCN._charcountercounteradded);
children.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.CharCounter, { children.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.CharCounter, {
className: BDFDB.DOMUtils.formatClassName(BDFDB.disCN._charcountercounter, type && BDFDB.disCN[`_charcounter${type}counter`]), className: BDFDB.DOMUtils.formatClassName(BDFDB.disCN._charcountercounter, type && BDFDB.disCN[`_charcounter${typeMap[type] || type}counter`]),
refClass: refClass, refClass: refClass,
parsing: parsing, parsing: parsing,
max: maxLenghts[type], max: maxLenghts[type],