tailwind-rs-postcss 0.15.4

PostCSS integration for Tailwind-RS Core
Documentation
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
//! Types and data structures for advanced PostCSS features

use serde_json::Value;
use std::collections::HashMap;
use std::time::{Duration, SystemTime};
use thiserror::Error;

/// CSS linting configuration
#[derive(Debug, Clone)]
pub struct LinterConfig {
    pub rules: HashMap<String, RuleConfig>,
    pub severity: SeverityLevel,
    pub auto_fix: bool,
    pub ignore_patterns: Vec<String>,
    pub custom_rules: Vec<CustomRule>,
}

impl Default for LinterConfig {
    fn default() -> Self {
        Self {
            rules: get_default_rules(),
            severity: SeverityLevel::Warning,
            auto_fix: false,
            ignore_patterns: Vec::new(),
            custom_rules: Vec::new(),
        }
    }
}

fn get_default_rules() -> HashMap<String, RuleConfig> {
    let mut rules = HashMap::new();

    rules.insert(
        "no-duplicate-selectors".to_string(),
        RuleConfig {
            enabled: true,
            severity: SeverityLevel::Warning,
            options: HashMap::new(),
        },
    );

    rules.insert(
        "no-empty-rules".to_string(),
        RuleConfig {
            enabled: true,
            severity: SeverityLevel::Warning,
            options: HashMap::new(),
        },
    );

    rules.insert(
        "no-important".to_string(),
        RuleConfig {
            enabled: true,
            severity: SeverityLevel::Warning,
            options: HashMap::new(),
        },
    );

    rules.insert(
        "selector-max-specificity".to_string(),
        RuleConfig {
            enabled: true,
            severity: SeverityLevel::Warning,
            options: {
                let mut opts = HashMap::new();
                opts.insert(
                    "max".to_string(),
                    Value::Number(serde_json::Number::from(3)),
                );
                opts
            },
        },
    );

    rules
}

/// Rule configuration
#[derive(Debug, Clone)]
pub struct RuleConfig {
    pub enabled: bool,
    pub severity: SeverityLevel,
    pub options: HashMap<String, Value>,
}

/// Severity level for linting
#[derive(Debug, Clone, PartialEq)]
pub enum SeverityLevel {
    Error,
    Warning,
    Info,
    Off,
}

/// Linting options
#[derive(Debug, Clone)]
pub struct LintOptions {
    pub auto_fix: bool,
    pub ignore_warnings: bool,
    pub max_issues: Option<usize>,
    pub include_patterns: Vec<String>,
    pub exclude_patterns: Vec<String>,
}

impl Default for LintOptions {
    fn default() -> Self {
        Self {
            auto_fix: false,
            ignore_warnings: false,
            max_issues: None,
            include_patterns: Vec::new(),
            exclude_patterns: Vec::new(),
        }
    }
}

/// Lint result
#[derive(Debug, Clone)]
pub struct LintResult {
    pub issues: Vec<LintIssue>,
    pub fixes: Vec<LintFix>,
    pub statistics: LintStatistics,
    pub suggestions: Vec<LintSuggestion>,
}

/// Lint issue
#[derive(Debug, Clone)]
pub struct LintIssue {
    pub rule: String,
    pub severity: SeverityLevel,
    pub message: String,
    pub line: usize,
    pub column: usize,
    pub end_line: Option<usize>,
    pub end_column: Option<usize>,
    pub fix: Option<LintFix>,
}

/// Lint fix
#[derive(Debug, Clone)]
pub struct LintFix {
    pub rule: String,
    pub message: String,
    pub fix_type: FixType,
    pub replacement: String,
    pub range: TextRange,
}

/// Fix type
#[derive(Debug, Clone)]
pub enum FixType {
    Replace,
    Insert,
    Delete,
    Reorder,
}

/// Text range
#[derive(Debug, Clone)]
pub struct TextRange {
    pub start: usize,
    pub end: usize,
}

impl TextRange {
    pub fn new(start: usize, end: usize) -> Self {
        Self { start, end }
    }
}

/// Lint statistics
#[derive(Debug, Clone)]
pub struct LintStatistics {
    pub total_issues: usize,
    pub error_count: usize,
    pub warning_count: usize,
    pub info_count: usize,
    pub fixable_count: usize,
}

/// Lint suggestion
#[derive(Debug, Clone)]
pub struct LintSuggestion {
    pub rule: String,
    pub message: String,
    pub severity: SeverityLevel,
    pub line: usize,
    pub column: usize,
    pub fix: Option<LintFix>,
}

/// Custom rule
#[derive(Debug, Clone)]
pub struct CustomRule {
    pub name: String,
    pub description: String,
    pub severity: SeverityLevel,
    pub enabled: bool,
    pub options: HashMap<String, Value>,
}

/// Source file information
#[derive(Debug, Clone)]
pub struct SourceFile {
    pub path: String,
    pub content: String,
    pub mtime: SystemTime,
    pub size: usize,
}

/// Source mapping
#[derive(Debug, Clone)]
pub struct SourceMapping {
    pub generated_line: usize,
    pub generated_column: usize,
    pub source_line: usize,
    pub source_column: usize,
    pub source_file: Option<usize>,
    pub name: Option<usize>,
}

/// Transformation information
#[derive(Debug, Clone)]
pub struct Transformation {
    pub name: String,
    pub input_range: TextRange,
    pub output_range: TextRange,
    pub source_file: String,
}

/// Source location
#[derive(Debug, Clone)]
pub struct SourceLocation {
    pub file: String,
    pub line: usize,
    pub column: usize,
    pub content: String,
}

/// Performance metrics
#[derive(Debug, Clone)]
pub struct PerformanceMetrics {
    pub total_time: Duration,
    pub parsing_time: Duration,
    pub transformation_time: Duration,
    pub generation_time: Duration,
    pub memory_usage: usize,
    pub cpu_usage: f64,
}

/// Operation metrics
#[derive(Debug, Clone)]
pub struct OperationMetrics {
    pub operation: String,
    pub duration: Duration,
    pub memory_delta: i64,
    pub cpu_usage: f64,
    pub input_size: usize,
    pub output_size: usize,
}

/// Performance alert
#[derive(Debug, Clone)]
pub struct PerformanceAlert {
    pub operation: String,
    pub issue: String,
    pub severity: AlertSeverity,
    pub timestamp: SystemTime,
    pub metrics: OperationMetrics,
}

/// Alert severity
#[derive(Debug, Clone)]
pub enum AlertSeverity {
    Low,
    Medium,
    High,
    Critical,
}

/// Performance report
#[derive(Debug, Clone)]
pub struct PerformanceReport {
    pub total_time: Duration,
    pub operations: HashMap<String, OperationMetrics>,
    pub memory_usage: usize,
    pub cpu_usage: f64,
    pub alerts: Vec<PerformanceAlert>,
    pub recommendations: Vec<String>,
}

/// Debug information
#[derive(Debug, Clone)]
pub struct DebugInfo {
    pub steps: Vec<StepDebugInfo>,
    pub total_time: Duration,
    pub memory_usage: usize,
}

impl DebugInfo {
    pub fn new() -> Self {
        Self {
            steps: Vec::new(),
            total_time: Duration::from_secs(0),
            memory_usage: 0,
        }
    }
}

/// Step debug information
#[derive(Debug, Clone)]
pub struct StepDebugInfo {
    pub step_name: String,
    pub step_index: usize,
    pub input_css: String,
    pub input_size: usize,
    pub output_css: String,
    pub output_size: usize,
    pub transformations: Vec<Transformation>,
    pub performance: OperationMetrics,
}

/// CSS analysis
#[derive(Debug, Clone)]
pub struct CSSAnalysis {
    pub selectors: SelectorAnalysis,
    pub properties: PropertyAnalysis,
    pub specificity: SpecificityAnalysis,
    pub performance: PerformanceAnalysis,
    pub maintainability: MaintainabilityAnalysis,
}

/// Selector analysis
#[derive(Debug, Clone)]
pub struct SelectorAnalysis {
    pub total_selectors: usize,
    pub complex_selectors: usize,
    pub duplicate_selectors: usize,
    pub specificity_scores: Vec<usize>,
}

/// Property analysis
#[derive(Debug, Clone)]
pub struct PropertyAnalysis {
    pub total_properties: usize,
    pub duplicate_properties: usize,
    pub unused_properties: usize,
    pub property_usage: HashMap<String, usize>,
}

/// Specificity analysis
#[derive(Debug, Clone)]
pub struct SpecificityAnalysis {
    pub max_specificity: usize,
    pub avg_specificity: f64,
    pub high_specificity_selectors: Vec<String>,
}

/// Performance analysis
#[derive(Debug, Clone)]
pub struct PerformanceAnalysis {
    pub estimated_size: usize,
    pub complexity_score: f64,
    pub optimization_opportunities: Vec<String>,
}

/// Maintainability analysis
#[derive(Debug, Clone)]
pub struct MaintainabilityAnalysis {
    pub maintainability_score: f64,
    pub issues: Vec<String>,
    pub recommendations: Vec<String>,
}

/// Format options
#[derive(Debug, Clone)]
pub struct FormatOptions {
    pub rules: Vec<FormatRule>,
    pub indent_size: usize,
    pub use_tabs: bool,
    pub line_ending: LineEnding,
}

impl Default for FormatOptions {
    fn default() -> Self {
        Self {
            rules: vec![FormatRule::Indentation(2), FormatRule::LineBreaks(true)],
            indent_size: 2,
            use_tabs: false,
            line_ending: LineEnding::LF,
        }
    }
}

/// Format rule
#[derive(Debug, Clone)]
pub enum FormatRule {
    Indentation(usize),
    LineBreaks(bool),
    Spacing(SpacingRule),
    Sorting(SortOptions),
}

/// Spacing rule
#[derive(Debug, Clone)]
pub struct SpacingRule {
    pub before_selector: bool,
    pub after_selector: bool,
    pub before_property: bool,
    pub after_property: bool,
}

/// Sort options
#[derive(Debug, Clone)]
pub struct SortOptions {
    pub sort_properties: bool,
    pub sort_selectors: bool,
    pub custom_order: Vec<String>,
}

/// Line ending
#[derive(Debug, Clone)]
pub enum LineEnding {
    LF,
    CRLF,
    CR,
}

/// Error types for advanced features
#[derive(Debug, Error)]
pub enum AdvancedFeatureError {
    #[error("Linting failed: {error}")]
    LintingFailed { error: String },

    #[error("Source map generation failed: {error}")]
    SourceMapFailed { error: String },

    #[error("Performance monitoring failed: {error}")]
    PerformanceMonitoringFailed { error: String },

    #[error("Debugging failed: {error}")]
    DebuggingFailed { error: String },

    #[error("Analysis failed: {error}")]
    AnalysisFailed { error: String },

    #[error("Formatting failed: {error}")]
    FormattingFailed { error: String },
}