etherpad-lite/src/static/js/ace2_common.ts

66 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-12-15 15:37:28 +00:00
'use strict';
/**
* This code is mostly from the old Etherpad. Please help us to comment this code.
* This helps other people to understand this code better and helps them to improve it.
* TL;DR COMMENTS ON THIS FILE ARE HIGHLY APPRECIATED
*/
import {MapArrayType} from "../../node/types/MapType";
2011-03-26 13:10:41 +00:00
/**
* Copyright 2009 Google Inc.
2011-07-07 18:59:34 +01:00
*
2011-03-26 13:10:41 +00:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2011-07-07 18:59:34 +01:00
*
2011-03-26 13:10:41 +00:00
* http://www.apache.org/licenses/LICENSE-2.0
2011-07-07 18:59:34 +01:00
*
2011-03-26 13:10:41 +00:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export const isNodeText = (node: {
nodeType: number
}) => (node.nodeType === 3);
2011-03-26 13:10:41 +00:00
export const getAssoc = (obj: MapArrayType<any>, name: string) => obj[`_magicdom_${name}`];
2011-03-26 13:10:41 +00:00
export const setAssoc = (obj: MapArrayType<any>, name: string, value: string) => {
2011-03-26 13:10:41 +00:00
// note that in IE designMode, properties of a node can get
// copied to new nodes that are spawned during editing; also,
// properties representable in HTML text can survive copy-and-paste
2020-11-23 13:24:19 -05:00
obj[`_magicdom_${name}`] = value;
2020-12-15 15:37:28 +00:00
};
2011-03-26 13:10:41 +00:00
// "func" is a function over 0..(numItems-1) that is monotonically
// "increasing" with index (false, then true). Finds the boundary
// between false and true, a number between 0 and numItems inclusive.
2011-07-07 18:59:34 +01:00
export const binarySearch = (numItems: number, func: (num: number)=>boolean) => {
2011-03-26 13:10:41 +00:00
if (numItems < 1) return 0;
if (func(0)) return 0;
2011-07-07 18:59:34 +01:00
if (!func(numItems - 1)) return numItems;
2020-11-23 13:24:19 -05:00
let low = 0; // func(low) is always false
let high = numItems - 1; // func(high) is always true
while ((high - low) > 1) {
const x = Math.floor((low + high) / 2); // x != low, x != high
2011-03-26 13:10:41 +00:00
if (func(x)) high = x;
else low = x;
}
return high;
2020-12-15 15:37:28 +00:00
};
2011-03-26 13:10:41 +00:00
export const binarySearchInfinite = (expectedLength: number, func: (num: number)=>boolean) => {
2020-11-23 13:24:19 -05:00
let i = 0;
2011-03-26 13:10:41 +00:00
while (!func(i)) i += expectedLength;
return binarySearch(i, func);
2020-12-15 15:37:28 +00:00
};
2011-03-26 13:10:41 +00:00
export const noop = () => {};