Implement await indicator and message display logic
This commit is contained in:
parent
d471600c0f
commit
e62b549185
5 changed files with 59 additions and 14 deletions
|
|
@ -35,12 +35,6 @@ export class OverviewScene {
|
|||
store.setState({ currentScene: edge.scene });
|
||||
}
|
||||
});
|
||||
|
||||
store.getState().addUserMessage({
|
||||
text: `Test Message ${Math.random()}`,
|
||||
inputWanted: false,
|
||||
timestamp: Date.now(),
|
||||
});
|
||||
}
|
||||
|
||||
private drawLocations() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
export enum Scenes {
|
||||
OVERVIEW = 'OVERVIEW',
|
||||
LEGACY = 'LEGACY',
|
||||
PACKAGES = 'PACKAGES',
|
||||
CONTRIBUTORS = 'CONTRIBUTORS',
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue