Implement await indicator and message display logic

This commit is contained in:
Dennis Schoepf 2021-07-21 11:05:04 +02:00
parent d471600c0f
commit e62b549185
5 changed files with 59 additions and 14 deletions

View file

@ -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() {

View file

@ -1,4 +1,6 @@
export enum Scenes {
OVERVIEW = 'OVERVIEW',
LEGACY = 'LEGACY',
PACKAGES = 'PACKAGES',
CONTRIBUTORS = 'CONTRIBUTORS',
}