From 2e9ea19207a7410f929bb908759d48cb2340f29c Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 25 Feb 2024 11:20:44 -0500 Subject: "isJapanese" check move (#730) * Move isStringPartiallyJapanese out of ClipboardMonitor * Create isStringPartiallyJapanese function * Add textMayBeTranslatable * Rename API function * Rename internal function * Add helper * Update translatable check * Pass language to TextScanner * Pass language explicitly * Use textMayBeTranslatable * No redundant translatable check * Update eslint * Remove double newline * Collapse * Rename --- ext/js/comm/api.js | 9 +++++---- ext/js/comm/clipboard-monitor.js | 3 +-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'ext/js/comm') diff --git a/ext/js/comm/api.js b/ext/js/comm/api.js index 30fcfc29..e8db7846 100644 --- a/ext/js/comm/api.js +++ b/ext/js/comm/api.js @@ -321,11 +321,12 @@ export class API { } /** - * @param {import('api').ApiParam<'textHasJapaneseCharacters', 'text'>} text - * @returns {Promise>} + * @param {import('api').ApiParam<'isTextLookupWorthy', 'text'>} text + * @param {import('api').ApiParam<'isTextLookupWorthy', 'language'>} language + * @returns {Promise>} */ - textHasJapaneseCharacters(text) { - return this._invoke('textHasJapaneseCharacters', {text}); + isTextLookupWorthy(text, language) { + return this._invoke('isTextLookupWorthy', {text, language}); } /** diff --git a/ext/js/comm/clipboard-monitor.js b/ext/js/comm/clipboard-monitor.js index d101b467..067ecb67 100644 --- a/ext/js/comm/clipboard-monitor.js +++ b/ext/js/comm/clipboard-monitor.js @@ -17,7 +17,6 @@ */ import {EventDispatcher} from '../core/event-dispatcher.js'; -import {isStringPartiallyJapanese} from '../language/ja/japanese.js'; /** * @augments EventDispatcher @@ -71,7 +70,7 @@ export class ClipboardMonitor extends EventDispatcher { text !== this._previousText ) { this._previousText = text; - if (canChange && isStringPartiallyJapanese(text)) { + if (canChange) { this.trigger('change', {text}); } } -- cgit v1.2.3