mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-05-12 07:29:40 +08:00
- 后端扩展 RedisClient 接口,新增 StreamEntry 与 Stream 操作定义 - Redis 实现新增 XADD/XDEL/XRANGE 封装并接入 RedisGetValue 的 stream 分支 - App 层新增 RedisStreamAdd 与 RedisStreamDelete 方法并返回操作结果 - 前端新增 stream 类型视图,支持消息新增、删除与字段复制 - refs #92
154 lines
3.1 KiB
TypeScript
154 lines
3.1 KiB
TypeScript
export interface SSHConfig {
|
|
host: string;
|
|
port: number;
|
|
user: string;
|
|
password?: string;
|
|
keyPath?: string;
|
|
}
|
|
|
|
export interface ConnectionConfig {
|
|
type: string;
|
|
host: string;
|
|
port: number;
|
|
user: string;
|
|
password?: string;
|
|
savePassword?: boolean;
|
|
database?: string;
|
|
useSSH?: boolean;
|
|
ssh?: SSHConfig;
|
|
driver?: string;
|
|
dsn?: string;
|
|
timeout?: number;
|
|
redisDB?: number; // Redis database index (0-15)
|
|
uri?: string; // Connection URI for copy/paste
|
|
hosts?: string[]; // Multi-host addresses: host:port
|
|
topology?: 'single' | 'replica';
|
|
mysqlReplicaUser?: string;
|
|
mysqlReplicaPassword?: string;
|
|
replicaSet?: string;
|
|
authSource?: string;
|
|
readPreference?: string;
|
|
mongoSrv?: boolean;
|
|
mongoAuthMechanism?: string;
|
|
mongoReplicaUser?: string;
|
|
mongoReplicaPassword?: string;
|
|
}
|
|
|
|
export interface MongoMemberInfo {
|
|
host: string;
|
|
role: string;
|
|
state: string;
|
|
stateCode?: number;
|
|
healthy: boolean;
|
|
isSelf?: boolean;
|
|
}
|
|
|
|
export interface SavedConnection {
|
|
id: string;
|
|
name: string;
|
|
config: ConnectionConfig;
|
|
includeDatabases?: string[];
|
|
includeRedisDatabases?: number[]; // Redis databases to show (0-15)
|
|
}
|
|
|
|
export interface ColumnDefinition {
|
|
name: string;
|
|
type: string;
|
|
nullable: string;
|
|
key: string;
|
|
default?: string;
|
|
extra: string;
|
|
comment: string;
|
|
}
|
|
|
|
export interface IndexDefinition {
|
|
name: string;
|
|
columnName: string;
|
|
nonUnique: number;
|
|
seqInIndex: number;
|
|
indexType: string;
|
|
}
|
|
|
|
export interface ForeignKeyDefinition {
|
|
name: string;
|
|
columnName: string;
|
|
refTableName: string;
|
|
refColumnName: string;
|
|
constraintName: string;
|
|
}
|
|
|
|
export interface TriggerDefinition {
|
|
name: string;
|
|
timing: string;
|
|
event: string;
|
|
statement: string;
|
|
}
|
|
|
|
export interface TabData {
|
|
id: string;
|
|
title: string;
|
|
type: 'query' | 'table' | 'design' | 'redis-keys' | 'redis-command' | 'trigger' | 'view-def' | 'routine-def';
|
|
connectionId: string;
|
|
dbName?: string;
|
|
tableName?: string;
|
|
query?: string;
|
|
initialTab?: string;
|
|
readOnly?: boolean;
|
|
redisDB?: number; // Redis database index for redis tabs
|
|
triggerName?: string; // Trigger name for trigger tabs
|
|
viewName?: string; // View name for view definition tabs
|
|
routineName?: string; // Routine name for function/procedure definition tabs
|
|
routineType?: string; // 'FUNCTION' or 'PROCEDURE'
|
|
}
|
|
|
|
export interface DatabaseNode {
|
|
title: string;
|
|
key: string;
|
|
isLeaf?: boolean;
|
|
children?: DatabaseNode[];
|
|
icon?: any;
|
|
}
|
|
|
|
export interface SavedQuery {
|
|
id: string;
|
|
name: string;
|
|
sql: string;
|
|
connectionId: string;
|
|
dbName: string;
|
|
createdAt: number;
|
|
}
|
|
|
|
// Redis types
|
|
export interface RedisKeyInfo {
|
|
key: string;
|
|
type: string;
|
|
ttl: number;
|
|
}
|
|
|
|
export interface RedisScanResult {
|
|
keys: RedisKeyInfo[];
|
|
cursor: number;
|
|
}
|
|
|
|
export interface RedisValue {
|
|
type: 'string' | 'hash' | 'list' | 'set' | 'zset' | 'stream';
|
|
ttl: number;
|
|
value: any;
|
|
length: number;
|
|
}
|
|
|
|
export interface RedisDBInfo {
|
|
index: number;
|
|
keys: number;
|
|
}
|
|
|
|
export interface ZSetMember {
|
|
member: string;
|
|
score: number;
|
|
}
|
|
|
|
export interface StreamEntry {
|
|
id: string;
|
|
fields: Record<string, string>;
|
|
}
|