Skip to content

Commit

Permalink
Merge branch 'release/v1.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
kardeslik committed Jun 19, 2019
2 parents b18b207 + e3f7311 commit 89db921
Show file tree
Hide file tree
Showing 2 changed files with 155 additions and 59 deletions.
192 changes: 136 additions & 56 deletions Zeplin.sketchplugin/Contents/Sketch/export.cocoascript
Original file line number Diff line number Diff line change
@@ -1,30 +1,10 @@
var onRun = function (context) {
var doc = context.document;

if (![doc fileURL] || [doc isDraft]) {
[NSApp displayDialog:@"Please save the document before exporting to Zeplin." withTitle:@"Document not saved"];
if (!documentExportable(context)) {
return;
}

if ([doc isDocumentEdited]) {
var alert = [NSAlert alertWithMessageText:@"Document not saved" defaultButton:@"Save and Continue" alternateButton:@"Cancel" otherButton:@"Continue" informativeTextWithFormat:@"To capture the latest changes in this Sketch document, Zeplin needs to save it first.\n\n☝️ This might take a bit, depending on the document size."];

var response = [alert runModal];
if (response == NSAlertDefaultReturn) {
[doc showMessage:@"Saving document…"];

[doc saveDocument:nil];
while ([doc isDocumentEdited]) {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
} else if (response == NSAlertAlternateReturn) {
return;
}

response = nil;
alert = nil;
}

var foreignSymbolsUpToDate = true;
// `MSBadgeController` is defined on Sketch 44, `activeWindowBadgingActions` is defined on Sketch 46.
try {
Expand Down Expand Up @@ -120,6 +100,120 @@ var onRun = function (context) {

artboards = nil;

var artboardNamesByIdentifier = {};
var allArtboardsLoop = [[doc valueForKeyPath:@"[email protected]"] objectEnumerator];
var artboard = nil;
while (artboard = [allArtboardsLoop nextObject]) {
artboardNamesByIdentifier[artboard.objectID()] = artboard.name();
}

artboard = nil;
allArtboardsLoop = nil;

var path = temporaryPath();
var directives = defaultDirectives(context, path);
[directives setObject:@"artboards" forKey:@"type"];
[directives setObject:artboardIds forKey:@"artboardIds"];
[directives setObject:pageIds forKey:@"pageIds"];
[directives setObject:uniqueArtboardSizes forKey:@"artboardSizes"];
[directives setObject:artboardNamesByIdentifier forKey:@"artboardNames"];
[directives setObject:containsArtboard forKey:@"containsArtboard"];

artboardIds = nil;
pageIds = nil;
uniqueArtboardSizes = nil;
artboardNamesByIdentifier = nil;

writeDirectives(directives, path);

directives = nil;

launchZeplin(context, path);

path = nil;
}

var exportColors = function (context) {
if (!documentExportable(context)) {
return;
}

var path = temporaryPath();
var directives = defaultDirectives(context, path);
[directives setObject:@"colors" forKey:@"type"];

writeDirectives(directives, path);

directives = nil;

launchZeplin(context, path);

path = nil;
}

var exportTextStyles = function (context) {
if (!documentExportable(context)) {
return;
}

var path = temporaryPath();
var directives = defaultDirectives(context, path);
[directives setObject:@"textStyles" forKey:@"type"];

writeDirectives(directives, path);

directives = nil;

launchZeplin(context, path);

path = nil;
}

var documentExportable = function (context) {
var doc = context.document;

if (![doc fileURL] || [doc isDraft]) {
[NSApp displayDialog:@"Please save the document before exporting to Zeplin." withTitle:@"Document not saved"];

return false;
}

if ([doc isDocumentEdited]) {
var alert = [NSAlert alertWithMessageText:@"Document not saved" defaultButton:@"Save and Continue" alternateButton:@"Cancel" otherButton:@"Continue" informativeTextWithFormat:@"To capture the latest changes in this Sketch document, Zeplin needs to save it first.\n\n☝️ This might take a bit, depending on the document size."];

var response = [alert runModal];
if (response == NSAlertDefaultReturn) {
[doc showMessage:@"Saving document…"];

[doc saveDocument:nil];
while ([doc isDocumentEdited]) {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
} else if (response == NSAlertAlternateReturn) {
return false;
}

response = nil;
alert = nil;
}

return true;
}

var temporaryPath = function() {
var name = [[[NSUUID UUID] UUIDString] stringByAppendingPathExtension:@"zpl"];
var temporaryDirectory = NSTemporaryDirectory();
var path = [temporaryDirectory stringByAppendingPathComponent:name];

temporaryDirectory = nil;
name = nil;

return path;
}

var defaultDirectives = function(context, path) {
var doc = context.document;

var format = @"json";
var readerClass = NSClassFromString(@"MSDocumentReader");
var jsonReaderClass = NSClassFromString(@"MSDocumentZippedJSONReader");
Expand All @@ -129,7 +223,7 @@ var onRun = function (context) {

jsonReaderClass = nil;
readerClass = nil;

var assetLibraries = [];
// `MSAssetLibraryController` defined on Sketch 47.
try {
Expand Down Expand Up @@ -161,37 +255,15 @@ var onRun = function (context) {
} catch (error) {
log("Asset library paths by identifier failed with error “" + error + "”.");
}

var artboardNamesByIdentifier = {};
var allArtboardsLoop = [[doc valueForKeyPath:@"[email protected]"] objectEnumerator];
var artboard = nil;
while (artboard = [allArtboardsLoop nextObject]) {
artboardNamesByIdentifier[artboard.objectID()] = artboard.name();
}

artboard = nil;
allArtboardsLoop = nil;

var name = [[[NSUUID UUID] UUIDString] stringByAppendingPathExtension:@"zpl"];
var temporaryDirectory = NSTemporaryDirectory();
var path = [temporaryDirectory stringByAppendingPathComponent:name];

temporaryDirectory = nil;
name = nil;

var version = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
var sketchtoolPath = [[NSBundle mainBundle] pathForResource:@"sketchtool" ofType:nil inDirectory:@"sketchtool/bin"];
var sketchmigratePath = [[NSBundle mainBundle] pathForResource:@"sketchmigrate" ofType:nil inDirectory:@"sketchtool/bin"];

var directives = [NSMutableDictionary dictionary];
[directives setObject:[[doc fileURL] path] forKey:@"path"];
[directives setObject:artboardIds forKey:@"artboardIds"];
[directives setObject:pageIds forKey:@"pageIds"];
[directives setObject:format forKey:@"format"];
[directives setObject:uniqueArtboardSizes forKey:@"artboardSizes"];
[directives setObject:assetLibraries forKey:@"assetLibraries"];
[directives setObject:artboardNamesByIdentifier forKey:@"artboardNames"];
[directives setObject:containsArtboard forKey:@"containsArtboard"];
if (version) {
[directives setObject:version forKey:@"version"];
}
Expand All @@ -201,35 +273,43 @@ var onRun = function (context) {
if (sketchmigratePath) {
[directives setObject:sketchmigratePath forKey:@"sketchmigratePath"];
}


format = nil;
version = nil;
sketchmigratePath = nil;
sketchtoolPath = nil;
artboardNames = nil;
assetLibraries = nil;
format = nil;
uniqueArtboardSizes = nil;
pageIds = nil;
artboardIds = nil;


return directives;
}

var writeDirectives = function (directives, path) {
if (!path) {
return nil;
}

[directives writeToFile:path atomically:false];
directives = nil;


return path;
}

var launchZeplin = function (context, path) {
var doc = context.document;
var workspace = [NSWorkspace sharedWorkspace];

var applicationPath = [workspace absolutePathForAppBundleWithIdentifier:@"io.zeplin.osx"];
if (!applicationPath) {
[NSApp displayDialog:@"Please make sure that you installed and launched it: https://zpl.io/download" withTitle:"Could not find Zeplin"];

return;
}

[doc showMessage:@"Launching Zeplin!"];

[workspace openFile:path withApplication:applicationPath andDeactivate:true];

workspace = nil;
applicationPath = nil;
path = nil;
}

var shortcutHelp = function (context) {
Expand Down
22 changes: 19 additions & 3 deletions Zeplin.sketchplugin/Contents/Sketch/manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "Zeplin",
"description": "Export artboards and symbols to a Zeplin project. 🚀",
"description": "Export artboards, symbols, colors and text styles to Zeplin. 🚀",
"author": "Zeplin, Inc.",
"authorEmail": "[email protected]",
"homepage": "https://zeplin.io",
"version": "1.7",
"version": "1.8",
"identifier": "io.zeplin.sketch-plugin",
"icon": "Icons/icZeplin.png",
"commands": [{
Expand All @@ -13,7 +13,21 @@
"shortcut": "cmd ctrl e",
"script": "export.cocoascript",
"icon": "Icons/icZeplinRunner.png",
"description": "Export selected artboards and symbols to a Zeplin project. 🚀"
"description": "Export selected artboards and symbols to Zeplin."
}, {
"name": "Export Colors…",
"identifier": "exportColors",
"script": "export.cocoascript",
"handler": "exportColors",
"icon": "Icons/icZeplinRunner.png",
"description": "Export colors to Zeplin."
}, {
"name": "Export Text Styles…",
"identifier": "exportTextStyles",
"script": "export.cocoascript",
"handler": "exportTextStyles",
"icon": "Icons/icZeplinRunner.png",
"description": "Export text styles to Zeplin."
}, {
"name": "Exclude Sublayers",
"identifier": "exclude-sublayers",
Expand Down Expand Up @@ -42,6 +56,8 @@
"menu": {
"items": [
"export",
"exportColors",
"exportTextStyles",
{
"title": "Utilities",
"items": [
Expand Down

0 comments on commit 89db921

Please sign in to comment.