DEV: Move isInside to private function (#15268)

This text manipulation library can be used by plugins
as well, so better to have this defined as a function
instead of floating above the class.
This commit is contained in:
Martin Brennan 2021-12-13 12:26:33 +10:00 committed by GitHub
parent fc01619bcb
commit 1c97a7fe43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -11,11 +11,6 @@ import {
} from "discourse/lib/utilities";
import { next, schedule } from "@ember/runloop";
const isInside = (text, regex) => {
const matches = text.match(regex);
return matches && matches.length % 2;
};
const INDENT_DIRECTION_LEFT = "left";
const INDENT_DIRECTION_RIGHT = "right";
@ -240,6 +235,11 @@ export default Mixin.create({
return null;
},
_isInside(text, regex) {
const matches = text.match(regex);
return matches && matches.length % 2;
},
@bind
paste(e) {
if (!this._$textarea.is(":focus") && !isTesting()) {
@ -259,7 +259,7 @@ export default Mixin.create({
const selected = this._getSelected(null, { lineVal: true });
const { pre, value: selectedValue, lineVal } = selected;
const isInlinePasting = pre.match(/[^\n]$/);
const isCodeBlock = isInside(pre, /(^|\n)```/g);
const isCodeBlock = this._isInside(pre, /(^|\n)```/g);
if (
plainText &&
@ -279,7 +279,7 @@ export default Mixin.create({
if (isInlinePasting) {
canPasteHtml = !(
lineVal.match(/^```/) ||
isInside(pre, /`/g) ||
this._isInside(pre, /`/g) ||
lineVal.match(/^ /)
);
} else {