Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
import streamlit as st
|
3 |
+
from bs4 import BeautifulSoup
|
4 |
+
from copy import deepcopy
|
5 |
+
|
6 |
+
def parse_variable_file(variable_content):
|
7 |
+
"""Parses the SCSS variable content and returns a mapping of color names to their values."""
|
8 |
+
variables = {}
|
9 |
+
|
10 |
+
# Print the variables content for debugging
|
11 |
+
st.write("Parsing variables file...")
|
12 |
+
|
13 |
+
# Process each line
|
14 |
+
for line in variable_content.splitlines():
|
15 |
+
# Skip comments and empty lines
|
16 |
+
if not line.strip() or line.strip().startswith('//'):
|
17 |
+
continue
|
18 |
+
|
19 |
+
# Basic variable pattern (including !default)
|
20 |
+
var_match = re.match(r'^\s*\$([\w-]+):\s*([^;]+)\s*(!default)?\s*;', line)
|
21 |
+
|
22 |
+
if var_match:
|
23 |
+
var_name = var_match.group(1)
|
24 |
+
var_value = var_match.group(2).strip()
|
25 |
+
|
26 |
+
# Store both the variable and its value
|
27 |
+
if re.match(r'^(#[a-fA-F0-9]{3,6}|rgba?\([^)]+\))$', var_value):
|
28 |
+
variables[var_value] = f"${var_name}"
|
29 |
+
# Debug output
|
30 |
+
st.write(f"Found color variable: ${var_name} = {var_value}")
|
31 |
+
|
32 |
+
st.write(f"Total variables found: {len(variables)}")
|
33 |
+
return variables
|
34 |
+
|
35 |
+
def convert_css_to_scss(css_content, variable_mapping):
|
36 |
+
"""Converts CSS content to SCSS by replacing color values with variable names."""
|
37 |
+
# Debug output
|
38 |
+
st.write("Starting CSS to SCSS conversion...")
|
39 |
+
st.write("Available variable mappings:", variable_mapping)
|
40 |
+
|
41 |
+
result_lines = []
|
42 |
+
for line in css_content.splitlines():
|
43 |
+
original_line = line
|
44 |
+
processed_line = line
|
45 |
+
|
46 |
+
# Handle comments separately
|
47 |
+
if '/*' in line and '*/' in line:
|
48 |
+
# Split the line into parts (before comment, comment, after comment)
|
49 |
+
parts = re.split(r'(/\*.*?\*/)', line)
|
50 |
+
processed_parts = []
|
51 |
+
|
52 |
+
for part in parts:
|
53 |
+
if part.startswith('/*'):
|
54 |
+
processed_parts.append(part)
|
55 |
+
else:
|
56 |
+
# Process the non-comment part
|
57 |
+
processed_part = part
|
58 |
+
for color, variable in variable_mapping.items():
|
59 |
+
if color in processed_part:
|
60 |
+
processed_part = processed_part.replace(color, variable)
|
61 |
+
st.write(f"Replaced {color} with {variable}")
|
62 |
+
processed_parts.append(processed_part)
|
63 |
+
|
64 |
+
processed_line = ''.join(processed_parts)
|
65 |
+
else:
|
66 |
+
# Process lines without comments
|
67 |
+
for color, variable in variable_mapping.items():
|
68 |
+
if color in processed_line:
|
69 |
+
processed_line = processed_line.replace(color, variable)
|
70 |
+
st.write(f"Replaced {color} with {variable}")
|
71 |
+
|
72 |
+
# Debug output if line was changed
|
73 |
+
if original_line != processed_line:
|
74 |
+
st.write(f"Changed line:\nFrom: {original_line}\nTo: {processed_line}")
|
75 |
+
|
76 |
+
result_lines.append(processed_line)
|
77 |
+
|
78 |
+
return '\n'.join(result_lines)
|
79 |
+
|
80 |
+
# Streamlit app
|
81 |
+
st.title("SCSS Variable Converter with Debug Output")
|
82 |
+
|
83 |
+
# File uploaders
|
84 |
+
css_file = st.file_uploader("Upload CSS File", type=["css"])
|
85 |
+
variables_file = st.file_uploader("Upload SCSS Variables File", type=["scss"])
|
86 |
+
|
87 |
+
if css_file and variables_file:
|
88 |
+
try:
|
89 |
+
css_content = css_file.read().decode("utf-8")
|
90 |
+
variables_content = variables_file.read().decode("utf-8")
|
91 |
+
|
92 |
+
st.write("Processing files...")
|
93 |
+
st.write("---")
|
94 |
+
|
95 |
+
variable_mapping = parse_variable_file(variables_content)
|
96 |
+
if variable_mapping:
|
97 |
+
scss_content = convert_css_to_scss(css_content, variable_mapping)
|
98 |
+
|
99 |
+
if scss_content:
|
100 |
+
st.subheader("SCSS Output")
|
101 |
+
st.code(scss_content, language="scss")
|
102 |
+
st.download_button(
|
103 |
+
"Download SCSS File",
|
104 |
+
data=scss_content,
|
105 |
+
file_name="converted.scss",
|
106 |
+
mime="text/plain"
|
107 |
+
)
|
108 |
+
else:
|
109 |
+
st.error("No valid color variables found in the variables file.")
|
110 |
+
|
111 |
+
except Exception as e:
|
112 |
+
st.error(f"An error occurred: {str(e)}")
|
113 |
+
st.write("Error details:", str(e))
|