forked from JohnCoates/CSSketch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSSketch-remote.coscript
85 lines (69 loc) · 2.67 KB
/
CSSketch-remote.coscript
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
// Check if we're in Sketch
if (!NSClassFromString("MSDocument")){
// launch Sketch with document then run this plugin
var currentScript = [COScript currentCOScript];
var scriptEnvironment = [currentScript env];
var scriptURL = scriptEnvironment["scriptURL"];
var scriptPath = [scriptURL path];
var scriptsFolder = [scriptPath stringByDeletingLastPathComponent];
var projectFolder = [scriptsFolder stringByDeletingLastPathComponent];
var sketchDocumentsFolder = [projectFolder stringByAppendingPathComponent:"Examples"];
var documentPath = [sketchDocumentsFolder stringByAppendingPathComponent:"CSSketch - flexBox.sketch"];
// Submitted tests
// var testsFolder = [projectFolder stringByAppendingPathComponent:"test"];
// var documentPath = [testsFolder stringByAppendingPathComponent:"twoClasses.sketch"];
// Open Sketch document
[[NSWorkspace sharedWorkspace] openFile:documentPath];
var url = [NSURL fileURLWithPath:scriptPath];
var app = [COScript app:"Sketch"];
var delegate = [app delegate];
[delegate runPluginAtURL:url];
}
else {
var pluginsPath = @"~/Library/Application Support/com.bohemiancoding.sketch3/Plugins";
pluginsPath = [pluginsPath stringByExpandingTildeInPath];
// Load SketchKit
if (!NSClassFromString("SKK_MSLayer")) {
var frameworkPluginFolder = [pluginsPath stringByAppendingPathComponent:"SketchKit.sketchplugin"];
var frameworkBundlePath = [frameworkPluginFolder stringByAppendingPathComponent:"SketchKit.framework"];
var error = null;
if (!loadBundle(frameworkBundlePath)) {
log("error");
}
}
// Load CSSketch
if (!NSClassFromString("CSKMainController")) {
var pluginFolder = [pluginsPath stringByAppendingPathComponent:"CSSKetch.sketchplugin"];
var bundlePath = [pluginFolder stringByAppendingPathComponent:"CSSketch Helper.bundle"];
var error = null;
if (!loadBundle(bundlePath)) {
log("error");
}
}
var mainController = CSKMainController.sharedInstance();
mainController.layoutLayersWithContext(sketch);
}
function loadBundle(filePath) {
var bundleURL = NSURL.fileURLWithPath(filePath);
var bundle = [NSBundle bundleWithURL: bundleURL];
if (bundle == null) {
showNotification("Bundle missing!");
error = error;
return false;
}
var loaded = [bundle load];
if (!loaded) {
showNotification("Couldn't load SketchKit bundle.");
}
else {
// log("loaded bundle!")
}
return loaded;
}
function showNotification(message) {
var notification = [[NSUserNotification alloc] init];
notification.title = @"SketchKit";
notification.informativeText = message;
notification.soundName = NSUserNotificationDefaultSoundName;
[[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
}