overleaf/services/spelling/app/js/SpellingAPIManager.js

32 lines
1,009 B
JavaScript
Raw Normal View History

2019-07-03 08:41:01 -04:00
// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* DS207: Consider shorter variations of null checks
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
import { callbackify } from 'node:util'
import OError from '@overleaf/o-error'
import * as ASpell from './ASpell.js'
2019-07-03 08:41:01 -04:00
// The max number of words checked in a single request
const REQUEST_LIMIT = 10000
2019-07-03 08:41:01 -04:00
export const promises = {}
promises.runRequest = async (token, request) => {
if (!request.words) {
throw new OError('malformed JSON')
}
const lang = request.language || 'en'
// only the first 10K words are checked
const wordSlice = request.words.slice(0, REQUEST_LIMIT)
const misspellings = await ASpell.promises.checkWords(lang, wordSlice)
return { misspellings }
}
export const runRequest = callbackify(promises.runRequest)