-
Notifications
You must be signed in to change notification settings - Fork 84
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
WIP: Dev trade chat module #14
base: master
Are you sure you want to change the base?
Conversation
private readonly snackbar: SnackBarService) { | ||
} | ||
|
||
public open(external: boolean): Observable<void> { |
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.
completely to rewrite ctrl+c just so UI works
public run(feature: string, _: TradeUserSettings): void { | ||
switch (feature) { | ||
case 'chat-read-client-file': | ||
this.chat.open(feature === 'chat-read-client-file').subscribe(); |
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.
we need to trigger the read file service here
this.chat.open(feature === 'chat-read-client-file').subscribe(); | ||
break; | ||
case 'chat-client-file-path': | ||
this.chat.open(feature === 'chat-client-file-path').subscribe(); |
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.
add validation if file exists, if it does start reading in file service
@@ -0,0 +1,3 @@ | |||
body { |
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.
to remove import or clear the file, unnecessary
}; | ||
} | ||
|
||
public getFeatures(settings: TradeUserSettings): Feature[] { |
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.
add other features
Bugs:
TODO: