-
Notifications
You must be signed in to change notification settings - Fork 5
refactor(VLE): Remove modules part 2 #2246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
… unnecessary RouterModule dep
…alogComponent. Should be re-written from scratch.
…ert lesson before button orientation
…t step before button orientation
❌ 1 blocking issue (1 total)
|
| spyOn(componentTypeService, 'getComponentTypes').and.returnValue([ | ||
| { type: 'AiChat', name: 'AI Chat' }, | ||
| { type: 'Animation', name: 'Animation' }, | ||
| { type: 'AudioOscillator', name: 'Audio Oscillator' }, | ||
| { type: 'ConceptMap', name: 'Concept Map' }, | ||
| { type: 'DialogGuidance', name: 'Dialog Guidance' }, | ||
| { type: 'Discussion', name: 'Discussion' }, | ||
| { type: 'Draw', name: 'Draw' }, | ||
| { type: 'Embedded', name: 'Embedded' }, | ||
| { type: 'Graph', name: 'Graph' }, | ||
| { type: 'Label', name: 'Label' }, | ||
| { type: 'Match', name: 'Match' }, | ||
| { type: 'MultipleChoice', name: 'Multiple Choice' }, | ||
| { type: 'OpenResponse', name: 'Open Response' }, | ||
| { type: 'OutsideURL', name: 'Outside URL' }, | ||
| { type: 'PeerChat', name: 'Peer Chat' }, | ||
| { type: 'HTML', name: 'HTML' }, | ||
| { type: 'ShowGroupWork', name: 'Show Group Work' }, | ||
| { type: 'ShowMyWork', name: 'Show My Work' }, | ||
| { type: 'Summary', name: 'Summary' }, | ||
| { type: 'Table', name: 'Table' } | ||
| ]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps this could be done without hard-coding. Because we'll need to update whenever a component type is added, removed, or edited, correct?
breity
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good 👍
This is part 2 of the work to remove modules from WISE-Client and replacing them with standalone components. Also, I removed RoutingModules and replaced them with simple arrays instead. Since the change set has already grown large, I broke up this work into multiple parts to make it easier to review.
Changes
Test