@praxisui/table 8.0.0-beta.30 → 8.0.0-beta.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,335 +0,0 @@
1
- import { firstValueFrom } from 'rxjs';
2
-
3
- class TableAgenticAuthoringTurnFlow {
4
- adapter;
5
- aiApi;
6
- mode = 'config';
7
- constructor(adapter, aiApi) {
8
- this.adapter = adapter;
9
- this.aiApi = aiApi;
10
- }
11
- async submit(request) {
12
- const prompt = (request.prompt ?? '').trim();
13
- if (!prompt) {
14
- return {
15
- state: 'listening',
16
- phase: 'capture',
17
- statusText: '',
18
- };
19
- }
20
- const componentId = this.adapter.componentId || request.componentId || 'praxis-table';
21
- const componentType = this.adapter.componentType || request.componentType || 'table';
22
- const currentState = this.toAiJsonObject(this.adapter.getCurrentConfig());
23
- const dataProfile = this.optionalJsonObject(this.adapter.getDataProfile?.());
24
- const runtimeState = this.optionalJsonObject(this.adapter.getRuntimeState?.());
25
- const schemaFields = this.adapter.getSchemaFields?.()
26
- ?.map((field) => this.toAiJsonObject(field))
27
- .filter((field) => Object.keys(field).length > 0);
28
- const contextHints = this.mergeJsonObjects(this.optionalJsonObject(this.adapter.getAuthoringContext?.()), this.optionalJsonObject(request.action?.contextHints));
29
- const response = await firstValueFrom(this.aiApi.getPatch({
30
- componentId,
31
- componentType,
32
- userPrompt: prompt,
33
- sessionId: request.sessionId,
34
- clientTurnId: request.clientTurnId,
35
- messages: this.toChatMessages(request.messages, prompt),
36
- currentState,
37
- currentStateDigest: this.buildCurrentStateDigest(currentState, dataProfile),
38
- uiContextRef: {
39
- componentId,
40
- componentType,
41
- },
42
- ...(dataProfile ? { dataProfile } : {}),
43
- ...(runtimeState ? { runtimeState } : {}),
44
- ...(schemaFields?.length ? { schemaFields } : {}),
45
- ...(contextHints ? { contextHints } : {}),
46
- }));
47
- return this.toTurnResult(this.compileAdapterResponse(response), request);
48
- }
49
- async apply(request) {
50
- const patch = this.toRecord(request.pendingPatch);
51
- if (!patch) {
52
- return {
53
- state: 'error',
54
- phase: 'apply',
55
- assistantMessage: 'Nao ha alteracao de tabela pronta para aplicar.',
56
- errorText: 'Nao ha alteracao de tabela pronta para aplicar.',
57
- canApply: false,
58
- };
59
- }
60
- const result = await this.adapter.applyPatch(patch, request.prompt);
61
- if (!result.success) {
62
- return {
63
- state: 'error',
64
- phase: 'apply',
65
- assistantMessage: result.error || 'Nao foi possivel aplicar as alteracoes na tabela.',
66
- errorText: result.error || 'Nao foi possivel aplicar as alteracoes na tabela.',
67
- canApply: true,
68
- pendingPatch: patch,
69
- };
70
- }
71
- return {
72
- state: 'success',
73
- phase: 'summarize',
74
- assistantMessage: 'Alteracoes aplicadas na tabela.',
75
- statusText: 'Alteracoes aplicadas na tabela.',
76
- canApply: false,
77
- pendingPatch: null,
78
- diagnostics: result.warnings?.length ? { warnings: result.warnings } : undefined,
79
- };
80
- }
81
- cancel() {
82
- return Promise.resolve({
83
- state: 'listening',
84
- phase: 'capture',
85
- assistantMessage: 'Solicitacao cancelada.',
86
- statusText: '',
87
- canApply: false,
88
- pendingPatch: null,
89
- pendingClarification: null,
90
- });
91
- }
92
- retry(request) {
93
- const lastPrompt = [...(request.messages ?? [])].reverse()
94
- .find((message) => message.role === 'user')?.text;
95
- return this.submit({
96
- ...request,
97
- prompt: lastPrompt ?? request.prompt,
98
- action: { kind: 'retry' },
99
- });
100
- }
101
- toTurnResult(response, request) {
102
- if (!response) {
103
- return {
104
- state: 'error',
105
- phase: 'capture',
106
- assistantMessage: 'Resposta vazia da IA.',
107
- errorText: 'Resposta vazia da IA.',
108
- };
109
- }
110
- if (response.sessionId && response.sessionId !== request.sessionId) {
111
- request = { ...request, sessionId: response.sessionId };
112
- }
113
- if (response.type === 'clarification') {
114
- const questions = this.toClarificationQuestions(response);
115
- return {
116
- state: 'clarification',
117
- phase: 'clarify',
118
- sessionId: response.sessionId ?? request.sessionId,
119
- assistantMessage: response.message || 'Preciso de mais detalhes para continuar.',
120
- clarificationQuestions: questions,
121
- quickReplies: this.toQuickReplies(response),
122
- canApply: false,
123
- };
124
- }
125
- if (response.type === 'info') {
126
- const message = response.message || response.explanation || 'Informacao gerada.';
127
- return {
128
- state: 'success',
129
- phase: 'summarize',
130
- sessionId: response.sessionId ?? request.sessionId,
131
- assistantMessage: message,
132
- statusText: message,
133
- quickReplies: this.toQuickReplies(response),
134
- canApply: false,
135
- };
136
- }
137
- if (response.type === 'error') {
138
- const message = response.message || 'Falha ao gerar alteracao de tabela.';
139
- return {
140
- state: 'error',
141
- phase: 'capture',
142
- sessionId: response.sessionId ?? request.sessionId,
143
- assistantMessage: message,
144
- errorText: message,
145
- diagnostics: response.warnings?.length ? { warnings: response.warnings } : undefined,
146
- };
147
- }
148
- if (response.patch && Object.keys(response.patch).length > 0) {
149
- const warnings = response.warnings?.filter(Boolean) ?? [];
150
- return {
151
- state: 'review',
152
- phase: 'review',
153
- sessionId: response.sessionId ?? request.sessionId,
154
- assistantMessage: response.explanation || 'Proposta de alteracao pronta para revisar.',
155
- statusText: 'Revise a proposta antes de aplicar.',
156
- canApply: true,
157
- pendingPatch: response.patch,
158
- preview: {
159
- kind: 'table-config-patch',
160
- diff: response.diff ?? [],
161
- },
162
- diagnostics: warnings.length ? { warnings } : undefined,
163
- };
164
- }
165
- return {
166
- state: 'success',
167
- phase: 'summarize',
168
- sessionId: response.sessionId ?? request.sessionId,
169
- assistantMessage: response.message || response.explanation || 'Nenhuma alteracao necessaria.',
170
- statusText: response.message || response.explanation || 'Nenhuma alteracao necessaria.',
171
- canApply: false,
172
- };
173
- }
174
- compileAdapterResponse(response) {
175
- const compiled = this.adapter.compileAiResponse?.(response);
176
- if (!compiled && response.patch && Object.keys(response.patch).length > 0) {
177
- return {
178
- type: 'error',
179
- message: 'A tabela exige componentEditPlan validado pelo manifesto antes de gerar patch local.',
180
- warnings: [
181
- 'free-table-patch-rejected',
182
- 'Use componentEditPlan validado contra PRAXIS_TABLE_AUTHORING_MANIFEST.',
183
- ],
184
- };
185
- }
186
- if (!compiled) {
187
- return response;
188
- }
189
- if (compiled.type === 'error') {
190
- return {
191
- type: 'error',
192
- message: compiled.message || 'O componentEditPlan da tabela nao passou na validacao de capacidades.',
193
- warnings: compiled.warnings,
194
- };
195
- }
196
- const warnings = [
197
- ...(response.warnings ?? []),
198
- ...(compiled.warnings ?? []),
199
- ];
200
- return {
201
- ...response,
202
- ...compiled,
203
- patch: compiled.patch,
204
- warnings: warnings.length ? warnings : undefined,
205
- };
206
- }
207
- toChatMessages(messages, prompt) {
208
- const supported = (messages ?? [])
209
- .filter((message) => message.role === 'user' || message.role === 'assistant' || message.role === 'system')
210
- .map((message) => ({
211
- role: message.role,
212
- content: message.text,
213
- }))
214
- .filter((message) => message.content.trim().length > 0);
215
- return supported.length ? supported : [{ role: 'user', content: prompt }];
216
- }
217
- toClarificationQuestions(response) {
218
- const labels = response.questions?.length
219
- ? response.questions
220
- : response.message
221
- ? [response.message]
222
- : ['Qual ajuste voce quer aplicar na tabela?'];
223
- const options = this.toQuickReplies(response).map((reply) => ({
224
- id: reply.id,
225
- label: reply.label,
226
- value: reply.prompt,
227
- }));
228
- return labels.map((label, index) => ({
229
- id: `table-clarification-${index + 1}`,
230
- type: options.length ? 'single-choice' : 'text',
231
- label,
232
- allowCustom: true,
233
- options,
234
- }));
235
- }
236
- toQuickReplies(response) {
237
- const payloads = response.optionPayloads ?? [];
238
- if (payloads.length) {
239
- return payloads
240
- .map((option, index) => {
241
- const label = option.label?.trim() || option.value?.trim() || `Opcao ${index + 1}`;
242
- const prompt = option.value?.trim() || option.example?.trim() || label;
243
- return {
244
- id: `option-${index + 1}`,
245
- label,
246
- prompt,
247
- kind: 'clarification-option',
248
- description: this.optionDescription(option),
249
- icon: this.optionIcon(option),
250
- tone: this.optionTone(option),
251
- presentation: this.optionPresentation(option),
252
- contextHints: this.optionContextHints(option),
253
- };
254
- });
255
- }
256
- return (response.options ?? [])
257
- .filter((option) => !!option?.trim())
258
- .map((option, index) => ({
259
- id: `option-${index + 1}`,
260
- label: option.trim(),
261
- prompt: option.trim(),
262
- kind: 'clarification-option',
263
- }));
264
- }
265
- optionContextHints(option) {
266
- return this.toRecord(option.contextHints);
267
- }
268
- optionPresentation(option) {
269
- const hints = this.optionContextHints(option);
270
- return this.toRecord(hints?.['presentation']);
271
- }
272
- optionDescription(option) {
273
- const presentation = this.optionPresentation(option);
274
- const value = presentation?.['description'];
275
- return typeof value === 'string' && value.trim() ? value.trim() : null;
276
- }
277
- optionIcon(option) {
278
- const presentation = this.optionPresentation(option);
279
- const value = presentation?.['icon'];
280
- return typeof value === 'string' && value.trim() ? value.trim() : null;
281
- }
282
- optionTone(option) {
283
- const presentation = this.optionPresentation(option);
284
- const value = presentation?.['tone'];
285
- return typeof value === 'string' && value.trim() ? value.trim() : null;
286
- }
287
- buildCurrentStateDigest(currentState, dataProfile) {
288
- const columns = Array.isArray(currentState['columns'])
289
- ? currentState['columns']
290
- .map((column) => this.toRecord(column)?.['field'])
291
- .filter((field) => typeof field === 'string' && field.length > 0)
292
- : undefined;
293
- const rowCount = typeof dataProfile?.['rowCount'] === 'number' ? dataProfile['rowCount'] : undefined;
294
- return {
295
- ...(columns?.length ? { columns } : {}),
296
- ...(rowCount !== undefined ? { rowCount } : {}),
297
- };
298
- }
299
- optionalJsonObject(value) {
300
- if (value === undefined || value === null) {
301
- return undefined;
302
- }
303
- const object = this.toAiJsonObject(value);
304
- return Object.keys(object).length ? object : undefined;
305
- }
306
- mergeJsonObjects(base, overlay) {
307
- if (!base)
308
- return overlay;
309
- if (!overlay)
310
- return base;
311
- return {
312
- ...base,
313
- ...overlay,
314
- };
315
- }
316
- toAiJsonObject(value) {
317
- const record = this.toRecord(value);
318
- if (!record) {
319
- return {};
320
- }
321
- try {
322
- return JSON.parse(JSON.stringify(record));
323
- }
324
- catch {
325
- return {};
326
- }
327
- }
328
- toRecord(value) {
329
- return value && typeof value === 'object' && !Array.isArray(value)
330
- ? value
331
- : null;
332
- }
333
- }
334
-
335
- export { TableAgenticAuthoringTurnFlow };