Skip to content
This repository was archived by the owner on Aug 14, 2021. It is now read-only.

Commit 204ac48

Browse files
author
Zhiheng Lu
committed
chore: reverting accidental push to master
This reverts commit 6d72a72.
1 parent 6d72a72 commit 204ac48

File tree

5 files changed

+15
-44
lines changed

5 files changed

+15
-44
lines changed

lib/Context/index.ts

+3-12
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ import { Choice, DataConfig, ResponseContext, TraceType } from '@/lib/types';
33

44
import VariableManager from '../Variables';
55

6-
export type GetTraceOptions = {
7-
sanitize?: boolean;
8-
};
9-
106
export class Context<S extends Record<string, any> = Record<string, any>> {
117
private dataFilterer: DataFilterer;
128

@@ -25,14 +21,9 @@ export class Context<S extends Record<string, any> = Record<string, any>> {
2521
return this.dataFilterer.filterTraces(this.context.trace);
2622
}
2723

28-
// returns the entire unfiltered list of traces of the context; can configure whether trace data should be sanitized or not
29-
getTrace(options: GetTraceOptions = {}) {
30-
const { sanitize = true } = options;
31-
32-
let result = this.context.trace;
33-
if (sanitize) result = this.dataFilterer.sanitizeTraces(result);
34-
35-
return result;
24+
// returns the entire raw trace of the context
25+
getTrace() {
26+
return this.context.trace;
3627
}
3728

3829
// returns the raw context object

lib/DataFilterer/index.ts

+8-11
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,15 @@ class DataFilterer {
2222
}
2323
}
2424

25-
sanitizeTraces(traces: GeneralTrace[]): GeneralTrace[] {
26-
return traces.map((trace) => {
27-
this.traceFilters.forEach((filter) => {
28-
trace = filter(trace);
29-
});
30-
return trace;
31-
});
32-
}
33-
3425
filterTraces(traces: GeneralTrace[]): GeneralTrace[] {
35-
const filteredTraces = traces.filter(({ type }) => this.includeTypes!.has(type));
36-
return this.sanitizeTraces(filteredTraces);
26+
return traces
27+
.filter(({ type }) => this.includeTypes!.has(type))
28+
.map((trace) => {
29+
this.traceFilters.forEach((filter) => {
30+
trace = filter(trace);
31+
});
32+
return trace;
33+
});
3734
}
3835
}
3936

lib/Events/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { GeneralTrace, TraceMap, TraceType } from '@/lib/types';
44

55
import Context from '../Context';
66

7-
export type TraceEventHandler<T extends TraceType, V extends Record<string, any>> = (trace: TraceMap[T], context: Context<V>) => void;
7+
export type TraceEventHandler<T extends TraceType, V extends Record<string, any>> = (object: TraceMap[T], context: Context<V>) => void;
88

9-
export type GeneralTraceEventHandler<V extends Record<string, any>> = (trace: GeneralTrace, context: Context<V>) => void;
9+
export type GeneralTraceEventHandler<V extends Record<string, any>> = (object: GeneralTrace, context: Context<V>) => void;
1010

1111
type _Map<T extends Record<string, any>, K extends TraceType = TraceType> = Map<K, Array<TraceEventHandler<K, T>>>;
1212

tests/lib/Context/Context.unit.ts

+1-10
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
START_RESPONSE_BODY_WITH_MULTIPLE_CHOICES,
1313
VF_APP_NEXT_STATE_1,
1414
} from './fixtures';
15-
import { SPEAK_TRACE, SPEAK_TRACE_UNSANITIZED, VFAppVariablesSchema } from '../fixtures';
15+
import { SPEAK_TRACE, VFAppVariablesSchema } from '../fixtures';
1616

1717
describe('Context', () => {
1818
afterEach(() => {
@@ -29,15 +29,6 @@ describe('Context', () => {
2929
expect(context.getChips()).to.eql([...CHOICES_1, ...CHOICES_2, ...CHOICES_3]);
3030
});
3131

32-
it('getTrace(), sanitize option', () => {
33-
const context = new Context({
34-
...START_RESPONSE_BODY,
35-
trace: [SPEAK_TRACE_UNSANITIZED]
36-
})
37-
38-
expect(context.getTrace({ sanitize: false })[0]).to.eql(SPEAK_TRACE_UNSANITIZED);
39-
});
40-
4132
it('end state', () => {
4233
const context1 = new Context(START_RESPONSE_BODY);
4334

tests/lib/fixtures.ts

+1-9
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,7 @@ export const SPEAK_TRACE: SpeakTrace = {
2323
payload: {
2424
message: 'Books ought to have to have good endings.',
2525
src: 'data:audio/mpeg:some-large-tts-audio-file',
26-
},
27-
}
28-
29-
export const SPEAK_TRACE_UNSANITIZED: SpeakTrace = {
30-
...SPEAK_TRACE,
31-
payload: {
32-
...SPEAK_TRACE.payload,
33-
message: `<voice>${SPEAK_TRACE.payload.message}</voice>`
34-
}
26+
},
3527
};
3628

3729
export const MAKE_SPEAK_TRACE = (payload: SpeakTrace['payload']): SpeakTrace => ({

0 commit comments

Comments
 (0)