forked from sgricci/LiveReload-sublimetext2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CompassPlugin.py
108 lines (89 loc) · 3.45 KB
/
CompassPlugin.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import threading
import subprocess
import sys
import sublime
import sublime_plugin
import shlex
# fix for import order
sys.path.append(os.path.join(sublime.packages_path(), 'LiveReload'))
LiveReload = __import__('LiveReload')
sys.path.remove(os.path.join(sublime.packages_path(), 'LiveReload'))
class CompassThread(threading.Thread):
def getLocalOverride(self):
"""
You can override defaults in sublime-project file
Discussion: https://github.com/dz0ny/LiveReload-sublimetext2/issues/43
Example:
"settings": {
"lrcompass": {
"dirname": "/path/to/directory/which/contains/config.rb",
"command": "compass compile -e production --force"
}
}
"""
try:
view_settings = sublime.active_window().active_view().settings()
view_settings = view_settings.get('lrcompass')
if view_settings:
return view_settings
else:
return {}
except Exception:
return {}
def __init__(self, dirname, on_compile):
try:
self.dirname = self.getLocalOverride().get('dirname') \
or dirname.replace('\\', '/')
except Exception as e:
self.dirname = dirname.replace('\\', '/')
try:
self.command = self.getLocalOverride().get('command') or 'compass compile'
except Exception as e:
self.command = 'compass compile'
self.stdout = None
self.stderr = None
self.on_compile = on_compile
threading.Thread.__init__(self)
def check_for_compass_config(self):
return os.path.isfile(os.path.join(self.dirname, "config.rb"))
def run(self):
if not self.check_for_compass_config():
self.dirname = os.path.abspath(os.path.join(self.dirname, os.pardir))
if not self.check_for_compass_config():
sublime.error_message("Could not find Compass config.rb. Please check your sublime-project file and adjust settings accordingly!")
return
cmd = shlex.split(self.command)
cmd.append(self.dirname)
p = subprocess.Popen(cmd, shell=False, stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
compiled = p.stdout.read()
if compiled:
print(compiled)
self.on_compile()
class CompassPreprocessor(LiveReload.Plugin,
sublime_plugin.EventListener):
title = 'Compass Preprocessor'
description = 'Compile and refresh page, when file is compiled'
file_types = '.scss,.sass'
this_session_only = True
file_name = ''
def on_post_save(self, view):
self.original_filename = os.path.basename(view.file_name())
if self.should_run(self.original_filename):
self.file_name_to_refresh = \
self.original_filename.replace('.scss', '.css'
).replace('.sass', '.css')
dirname = os.path.dirname(view.file_name())
CompassThread(dirname, self.on_compile).start()
def on_compile(self):
settings = {
'path': self.file_name_to_refresh,
'apply_js_live': False,
'apply_css_live': True,
'apply_images_live': True,
}
self.sendCommand('refresh', settings, self.original_filename)