Created
May 6, 2012 04:05
-
-
Save jeremyworboys/2611083 to your computer and use it in GitHub Desktop.
Python: Media fix is designed to re-factor media queries within the CSS outputted by SASS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
""" | |
Media fix is designed to re-factor media queries within the CSS outputted by | |
SASS. | |
Usage: python media-fix.py style.css, ... | |
""" | |
import sys | |
import re | |
from collections import OrderedDict | |
RE_HAS_MEDIA = re.compile("@media") | |
RE_FIND_MEDIA = re.compile("(@media.+?)(\{)", re.DOTALL | re.MULTILINE) | |
class MediaFix: | |
"""Media fix is designed to re-factor media queries within the CSS outputted by SASS.""" | |
def __init__(self): | |
pass | |
def fix(self, style): | |
self._reset() | |
# Get the content of the CSS file | |
fh = open(style, "r") | |
self.contents = fh.read() | |
fh.close() | |
# Make sure it has media queries | |
if not RE_HAS_MEDIA.search(self.contents): | |
return | |
# Find all of the unique media queries | |
self.queries = sorted([(m.group(1).strip(), m) for m in RE_FIND_MEDIA.finditer(self.contents)]) | |
# Consolidate the media queries | |
for (query, m) in self.queries: | |
if not query in self.query_contents: | |
self.query_contents[query] = [] | |
self.query_contents[query].append(self._get_contents(m)) | |
# Remove the media queries | |
for contents in self.query_contents.itervalues(): | |
for (_, content) in contents: | |
self.contents = self.contents.replace(content, "") | |
# Add the consolidated media queries | |
for (query, contents) in self.query_contents.iteritems(): | |
self.contents += query + " {\n" | |
for (content, _) in contents: | |
self.contents += content + "\n" | |
self.contents += "}\n" | |
# Re-output the file | |
fh = open(style, "w") | |
print >> fh, self.contents | |
fh.close() | |
def _reset(self): | |
self.queries = [] | |
self.query_contents = OrderedDict() | |
self.contents = "" | |
def _get_contents(self, match): | |
open_braces = 1 # we are starting the character after the first opening brace | |
position = match.end() | |
content = "" | |
while open_braces > 0: | |
c = self.contents[position] | |
if c == "{": | |
open_braces += 1 | |
if c == "}": | |
open_braces -= 1 | |
content += c | |
position += 1 | |
return (content[:-1].strip(), self.contents[match.start():position]) # the last closing brace gets captured, drop it | |
def help(): | |
print """ | |
Media fix is designed to re-factor media queries within the CSS outputted by SASS. | |
Usage: %s style.css, ... | |
""" % sys.argv[0] | |
def main(): | |
if len(sys.argv) > 1: | |
m = MediaFix() | |
for style in sys.argv[1::]: | |
m.fix(style) | |
else: | |
help() | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment