-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
148 lines (126 loc) · 2.64 KB
/
types.ts
File metadata and controls
148 lines (126 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
export type AspectRatioValue = "1:1" | "4:3" | "3:4" | "16:9" | "9:16";
export enum EditMode {
MOVE = 'move',
SKETCH = 'sketch',
OUTPAINT = 'outpaint',
}
export interface ImageStyle {
name: string;
prompt: string;
}
export interface LightingStyle {
name: string;
prompt: string;
}
export interface CompositionRule {
name: string;
prompt: string;
}
export interface TechnicalModifier {
name: string;
prompt: string;
}
export interface Filter {
name: string;
value: string;
}
export interface PromptState {
subject: string; // Used for Gemini subject & ComfyUI positive prompt
background: string; // Used for Gemini background & ComfyUI negative prompt
negativePrompt: string;
}
export type PromptPart = keyof PromptState;
export interface Point {
x: number;
y: number;
}
export interface Stroke {
id: string;
points: Point[];
color: string;
size: number;
}
export interface ImageAdjustments {
brightness: number;
contrast: number;
red: number;
green: number;
blue: number;
filter: string;
}
export enum LayerType {
IMAGE = 'image',
PIXEL = 'pixel',
ADJUSTMENT = 'adjustment'
}
export interface Layer {
id: string;
name: string;
type: LayerType;
isVisible: boolean;
opacity: number;
x: number;
y: number;
width?: number;
height?: number;
rotation?: number;
scaleX?: number;
scaleY?: number;
src?: string; // For IMAGE layers
strokes?: Stroke[]; // For PIXEL layers
adjustments?: ImageAdjustments; // For ADJUSTMENT layers
blendMode?: string;
maskSrc?: string;
maskEnabled?: boolean;
}
// Theme Types
export interface ThemeColors {
primary: string;
secondary: string;
base100: string;
base200: string;
base300: string;
textPrimary: string;
textSecondary: string;
}
export interface Theme {
name: string;
colors: {
light: ThemeColors;
dark: ThemeColors;
};
}
// Pexels API Type
export interface PexelsPhoto {
id: number;
src: {
medium: string;
large2x: string;
original: string;
};
alt: string;
}
// AI Engine Types
export type AIEngine = 'gemini' | 'comfyui';
export type ComfyUIConnectionStatus = 'disconnected' | 'connecting' | 'connected' | 'error';
export interface ComfyUIWorkflow {
name: string;
description: string;
json: string;
}
export interface ComfyUIGenerateSettings {
serverAddress: string;
workflow: string; // JSON string of the workflow
positivePrompt: string;
negativePrompt: string;
checkpoint: string;
lora: string;
setLoadingMessage: (message: string) => void;
}
export interface PageState {
x: number;
y: number;
width: number;
height: number;
backgroundColor: string;
}