shrub/pkg/interface/webterm/constants.ts

29 lines
743 B
TypeScript
Raw Normal View History

export const DEFAULT_SESSION = '';
export const DEFAULT_HANDLER = 'hood';
export const RESIZE_DEBOUNCE_MS = 100;
export const RESIZE_THRESHOLD_PX = 15;
/**
* Session ID validity:
2022-03-10 01:25:10 +03:00
*
* - must start with an alphabetical
* - can be composed of alphanumerics with hyphens
* - can be length 1 or longer
*/
export const SESSION_ID_REGEX = /(^[a-z]{1}[a-z\d-]*$)/;
/**
* Open a session with a given agent using `[agent]![session_name]`
2022-03-10 01:25:10 +03:00
*
* For example:
* ```
* book!my-session
* ```
2022-03-10 01:25:10 +03:00
*
* This will create a new session in webterm for the `%book` agent.
2022-03-10 01:25:10 +03:00
*
* Note that the second capture group after the ! is composed of the session ID
* regex above.
*/
export const AGENT_SESSION_REGEX = /^([a-z]{1}[a-z\d-]*)!([a-z]{1}[a-z\d-]*$)/;