refactor: rename states for clarity and consistency
- Updated state names in constants and related files from WAIT, REACT, TYPE, SLEEP to WAITING, REACTING, TYPING, SLEEPING. - Adjusted all references to the renamed states across the codebase, including state handlers and transition logic. - Ensured that logging messages reflect the new state names for better readability.
This commit is contained in:
@ -32,13 +32,13 @@ export const ClipTypes = {
|
||||
*/
|
||||
export const States = {
|
||||
/** Waiting/idle state */
|
||||
WAIT: 'wait',
|
||||
WAITING: 'wait',
|
||||
/** Reacting to input state */
|
||||
REACT: 'react',
|
||||
REACTING: 'react',
|
||||
/** Typing response state */
|
||||
TYPE: 'type',
|
||||
TYPING: 'type',
|
||||
/** Sleep/inactive state */
|
||||
SLEEP: 'sleep'
|
||||
SLEEPING: 'sleep'
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user