-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRubyProcessor.ts
65 lines (53 loc) · 1.41 KB
/
RubyProcessor.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import type { TextlintPluginOptions, TextlintPluginProcessor } from '@textlint/types'
import { rubyToAST } from './rubyToAST'
import { Client } from './Client'
interface ClientBuilder {
get(execCommand: string[]): Client
shutdown(): void
}
const clientBuilder = ((): ClientBuilder => {
let client: Client | undefined
return {
shutdown: () => {
if (client) {
client.enqueueShutdown().then(() => {
client = undefined
})
}
},
get: (execCommand: string[]) => {
if (!client) {
client = new Client(execCommand)
}
return client
},
}
})()
export class RubyProcessor implements TextlintPluginProcessor {
execCommand: string[]
extensions: string[]
constructor(options?: TextlintPluginOptions) {
this.execCommand = options?.execCommand ?? ['textlint-ruby', '--stdio']
this.extensions = options?.extensions ?? []
}
public availableExtensions() {
return ['.rb', ...this.extensions]
}
public processor() {
return {
preProcess: (text: string, filePath?: string) => {
return rubyToAST(this.process, text, filePath)
},
postProcess: (messages: any[], filePath?: string) => {
clientBuilder.shutdown()
return {
messages,
filePath: filePath ?? '<ruby>',
}
},
}
}
private get process(): Client {
return clientBuilder.get(this.execCommand)
}
}