Fixed popup not showing

This commit is contained in:
SamTv12345 2024-07-16 12:43:21 +02:00
parent 5d0da514f9
commit ea5073ce13
5 changed files with 23 additions and 23 deletions

View file

@ -2,7 +2,7 @@
/** /**
* The Toolbar Module creates and renders the toolbars and buttons * The Toolbar Module creates and renders the toolbars and buttons
*/ */
const _ = require('underscore'); import {isString, reduce, each, isUndefined, map, first, last, extend, escape} from 'underscore';
const removeItem = (array: string[], what: string) => { const removeItem = (array: string[], what: string) => {
let ax; let ax;
@ -21,7 +21,7 @@ const defaultButtonAttributes = (name: string, overrides?: boolean) => ({
const tag = (name: string, attributes: AttributeObj, contents?: string) => { const tag = (name: string, attributes: AttributeObj, contents?: string) => {
const aStr = tagAttributes(attributes); const aStr = tagAttributes(attributes);
if (_.isString(contents) && contents!.length > 0) { if (isString(contents) && contents!.length > 0) {
return `<${name}${aStr}>${contents}</${name}>`; return `<${name}${aStr}>${contents}</${name}>`;
} else { } else {
return `<${name}${aStr}></${name}>`; return `<${name}${aStr}></${name}>`;
@ -34,14 +34,14 @@ type AttributeObj = {
} }
const tagAttributes = (attributes: AttributeObj) => { const tagAttributes = (attributes: AttributeObj) => {
attributes = _.reduce(attributes || {}, (o: AttributeObj, val: string, name: string) => { attributes = reduce(attributes || {}, (o: AttributeObj, val: string, name: string) => {
if (!_.isUndefined(val)) { if (!isUndefined(val)) {
o[name] = val; o[name] = val;
} }
return o; return o;
}, {}); }, {});
return ` ${_.map(attributes, (val: string, name: string) => `${name}="${_.escape(val)}"`).join(' ')}`; return ` ${map(attributes, (val: string, name: string) => `${name}="${escape(val)}"`).join(' ')}`;
}; };
type ButtonGroupType = { type ButtonGroupType = {
@ -58,7 +58,7 @@ class ButtonGroup {
public static fromArray = function (array: string[]) { public static fromArray = function (array: string[]) {
const btnGroup = new ButtonGroup(); const btnGroup = new ButtonGroup();
_.each(array, (btnName: string) => { each(array, (btnName: string) => {
const button = Button.load(btnName) as Button const button = Button.load(btnName) as Button
btnGroup.addButton(button); btnGroup.addButton(button);
}); });
@ -70,18 +70,19 @@ class ButtonGroup {
return this; return this;
} }
render() { render(): string {
if (this.buttons && this.buttons.length === 1) { if (this.buttons && this.buttons.length === 1) {
this.buttons[0].grouping = ''; this.buttons[0].grouping = '';
} else if (this.buttons && this.buttons.length > 1) { } else if (this.buttons && this.buttons.length > 1) {
_.first(this.buttons).grouping = 'grouped-left'; first(this.buttons)!.grouping = 'grouped-left';
_.last(this.buttons).grouping = 'grouped-right'; last(this.buttons)!.grouping = 'grouped-right';
_.each(this.buttons.slice(1, -1), (btn: Button) => { each(this.buttons.slice(1, -1), (btn: Button) => {
btn.grouping = 'grouped-middle'; btn.grouping = 'grouped-middle';
}); });
} }
return _.map(this.buttons, (btn: ButtonGroup) => { // @ts-ignore
return map(this.buttons, (btn: ButtonGroup) => {
if (btn) return btn.render(); if (btn) return btn.render();
}).join('\n'); }).join('\n');
} }
@ -151,8 +152,8 @@ class SelectButton extends Button {
select(attributes: AttributeObj) { select(attributes: AttributeObj) {
const options: string[] = []; const options: string[] = [];
_.each(this.options, (opt: AttributeSelect) => { each(this.options, (opt: AttributeSelect) => {
const a = _.extend({ const a = extend({
value: opt.value, value: opt.value,
}, opt.attributes); }, opt.attributes);
@ -299,7 +300,7 @@ module.exports = {
buttons[0].push('savedrevision'); buttons[0].push('savedrevision');
} }
const groups = _.map(buttons, (group: string[]) => ButtonGroup.fromArray(group).render()); const groups = map(buttons, (group: string[]) => ButtonGroup.fromArray(group).render());
return groups.join(this.separator()); return groups.join(this.separator());
}, },
}; };

View file

@ -3188,10 +3188,10 @@ function Ace2Inner(editorInfo, cssManagers) {
editorInfo.ace_getInInternationalComposition = () => inInternationalComposition; editorInfo.ace_getInInternationalComposition = () => inInternationalComposition;
const bindTheEventHandlers = () => { const bindTheEventHandlers = () => {
$(document).on('keydown', handleKeyEvent); $(targetDoc).on('keydown', handleKeyEvent);
$(document).on('keypress', handleKeyEvent); $(targetDoc).on('keypress', handleKeyEvent);
$(document).on('keyup', handleKeyEvent); $(targetDoc).on('keyup', handleKeyEvent);
$(document).on('click', handleClick); $(targetDoc).on('click', handleClick);
// dropdowns on edit bar need to be closed on clicks on both pad inner and pad outer // dropdowns on edit bar need to be closed on clicks on both pad inner and pad outer
$(outerDoc).on('click', hideEditBarDropdowns); $(outerDoc).on('click', hideEditBarDropdowns);

View file

@ -20,7 +20,7 @@ let pad;
exports.saveNow = () => { exports.saveNow = () => {
pad.collabClient.sendMessage({type: 'SAVE_REVISION'}); pad.collabClient.sendMessage({type: 'SAVE_REVISION'});
$.gritter.add({ window.$.gritter.add({
// (string | mandatory) the heading of the notification // (string | mandatory) the heading of the notification
title: html10n.get('pad.savedrevs.marked'), title: html10n.get('pad.savedrevs.marked'),
// (string | mandatory) the text inside the notification // (string | mandatory) the text inside the notification

View file

@ -356,7 +356,6 @@ const padutils = {
let globalExceptionHandler = null; let globalExceptionHandler = null;
padutils.setupGlobalExceptionHandler = () => { padutils.setupGlobalExceptionHandler = () => {
if (globalExceptionHandler == null) { if (globalExceptionHandler == null) {
require('./vendors/gritter');
globalExceptionHandler = (e) => { globalExceptionHandler = (e) => {
let type; let type;
let err; let err;

View file

@ -42,8 +42,8 @@
return Gritter.add(params || {}); return Gritter.add(params || {});
} catch(e) { } catch(e) {
var err = 'Gritter Error: ' + e; const err = 'Gritter Error: ' + e;
(typeof(console) != 'undefined' && console.error) ? (typeof(console) != 'undefined' && console.error) ?
console.error(err, params) : console.error(err, params) :
alert(err); alert(err);
@ -289,7 +289,7 @@
*/ */
_runSetup: function(){ _runSetup: function(){
for(opt in $.gritter.options){ for(let opt in $.gritter.options){
this[opt] = $.gritter.options[opt]; this[opt] = $.gritter.options[opt];
} }
this._is_setup = 1; this._is_setup = 1;