mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
f6c1e2738d
Migrate spelling to ES modules GitOrigin-RevId: 4a200c8d1c28be44027cc8a3097e42575ab6593f
31 lines
1,009 B
JavaScript
31 lines
1,009 B
JavaScript
// 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'
|
|
|
|
// The max number of words checked in a single request
|
|
const REQUEST_LIMIT = 10000
|
|
|
|
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)
|