generated from ubiquity/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 29
/
formatting-evaluator-config.ts
158 lines (149 loc) · 5.19 KB
/
formatting-evaluator-config.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
import { Static, TLiteral, TUnion, Type } from "@sinclair/typebox";
import { CommentAssociation, CommentKind, CommentType } from "./comment-types";
type IntoStringLiteralUnion<T> = { [K in keyof T]: T[K] extends string ? TLiteral<T[K]> : never };
function stringLiteralUnion<T extends string[]>(values: [...T]): TUnion<IntoStringLiteralUnion<T>> {
const literals = values.map((value) => Type.Literal(value));
return Type.Union(literals) as TUnion<IntoStringLiteralUnion<T>>;
}
export const commentType = stringLiteralUnion(
Object.keys(CommentKind).flatMap((kind) =>
Object.keys(CommentAssociation).map((association) => `${kind}_${association}`)
) as CommentType[]
);
export const wordRegex = /\b\w+\b/;
export const urlRegex = /https?:\/\/\S+/g;
const htmlEntity = Type.Object({
score: Type.Number({ description: "Score per word in the entity", examples: ["0.1"] }),
countWords: Type.Boolean({ default: true, description: "Whether to count words in the entity" }),
});
/**
* Attributed score per HTML entity
*/
const htmlType = Type.Record(Type.String(), htmlEntity, {
description: "Attributed score per HTML entity",
default: {
br: { score: 0, countWords: true },
code: { score: 5, countWords: false },
p: { score: 0, countWords: true },
em: { score: 0, countWords: true },
img: { score: 5, countWords: true },
strong: { score: 0, countWords: false },
blockquote: { score: 0, countWords: false },
h1: { score: 1, countWords: true },
h2: { score: 1, countWords: true },
h3: { score: 1, countWords: true },
h4: { score: 1, countWords: true },
h5: { score: 1, countWords: true },
h6: { score: 1, countWords: true },
a: { score: 5, countWords: true },
li: { score: 0.5, countWords: true },
ul: { score: 1, countWords: true },
td: { score: 0, countWords: true },
hr: { score: 0, countWords: true },
pre: { score: 0, countWords: false },
ol: { score: 1, countWords: true },
},
});
const rewardsType = Type.Object(
{
html: htmlType,
wordValue: Type.Number({ default: 0.1, description: "Value multiplier for each word" }),
},
{ default: {} }
);
export const formattingEvaluatorConfigurationType = Type.Object(
{
/**
* Multipliers applied to different parts of the comment body content
*/
multipliers: Type.Transform(
Type.Array(
Type.Object({
role: Type.Array(commentType, {
minItems: 1,
description: "The list of roles this multiplier applies to",
examples: ['["PULL_ASSIGNEE", "PULL_AUTHOR", "PULL_COLLABORATOR"]'],
}),
multiplier: Type.Number({ examples: ["1"], description: "Multiplier for the given list of roles" }),
rewards: rewardsType,
}),
{
description: "Multipliers applied to different parts of the comment according the role of the author",
default: [
{
role: ["ISSUE_SPECIFICATION"],
multiplier: 1,
rewards: { wordValue: 0.1, html: htmlType.default },
},
{
role: ["ISSUE_AUTHOR"],
multiplier: 1,
rewards: { wordValue: 0.2, html: htmlType.default },
},
{
role: ["ISSUE_ASSIGNEE"],
multiplier: 1,
rewards: { wordValue: 0.1, html: htmlType.default },
},
{
role: ["ISSUE_COLLABORATOR"],
multiplier: 1,
rewards: { wordValue: 0.1, html: htmlType.default },
},
{
role: ["ISSUE_CONTRIBUTOR"],
multiplier: 0.25,
rewards: { wordValue: 0.1, html: htmlType.default },
},
{
role: ["PULL_SPECIFICATION"],
multiplier: 0,
rewards: { wordValue: 0, html: htmlType.default },
},
{
role: ["PULL_AUTHOR"],
multiplier: 0,
rewards: { wordValue: 0.2, html: htmlType.default },
},
{
role: ["PULL_ASSIGNEE"],
multiplier: 1,
rewards: { wordValue: 0.1, html: htmlType.default },
},
{
role: ["PULL_COLLABORATOR"],
multiplier: 1,
rewards: { wordValue: 0.1, html: htmlType.default },
},
{
role: ["PULL_CONTRIBUTOR"],
multiplier: 0.25,
rewards: { wordValue: 0.1, html: htmlType.default },
},
],
}
)
)
.Decode((value) => {
const resultMap = new Map();
for (const item of value) {
for (const role of item.role) {
if (!resultMap.has(role)) {
resultMap.set(role, { ...item, role: [role] });
}
}
}
return Array.from(resultMap.values());
})
.Encode((value) => {
return value;
}),
wordCountExponent: Type.Number({
default: 0.85,
description: "Exponent applied to the word count total",
examples: ["0.85"],
}),
},
{ default: {} }
);
export type FormattingEvaluatorConfiguration = Static<typeof formattingEvaluatorConfigurationType>;