2013-10-14 00:10:43 +00:00
/*globals svgEditor*/
/ *
Depends on Firefox add - on and executables from https : //github.com/brettz9/webappfind
Todos :
2013-10-18 12:31:35 +00:00
1. See WebAppFind Readme for SVG - related todos
2013-10-14 00:10:43 +00:00
* /
( function ( ) { 'use strict' ;
var pathID ,
saveMessage = 'webapp-save' ,
readMessage = 'webapp-read' ,
excludedMessages = [ readMessage , saveMessage ] ;
window . addEventListener ( 'message' , function ( e ) {
if ( e . origin !== window . location . origin || // PRIVACY AND SECURITY! (for viewing and saving, respectively)
( ! Array . isArray ( e . data ) || excludedMessages . indexOf ( e . data [ 0 ] ) > - 1 ) // Validate format and avoid our post below
) {
return ;
}
var svgString ,
messageType = e . data [ 0 ] ;
switch ( messageType ) {
case 'webapp-view' :
// Populate the contents
pathID = e . data [ 1 ] ;
svgString = e . data [ 2 ] ;
svgEditor . loadFromString ( svgString ) ;
/ * i f ( $ ( ' # t o o l _ s a v e _ f i l e ' ) ) {
$ ( '#tool_save_file' ) . disabled = false ;
} * /
break ;
case 'webapp-save-end' :
alert ( 'save complete for pathID ' + e . data [ 1 ] + '!' ) ;
break ;
default :
2014-01-26 11:06:27 +00:00
throw 'Unexpected mode' ;
2013-10-14 00:10:43 +00:00
}
} , false ) ;
2013-10-14 00:29:42 +00:00
window . postMessage ( [ readMessage ] , window . location . origin !== 'null' ? window . location . origin : '*' ) ; // Avoid "null" string error for file: protocol (even though file protocol not currently supported by add-on)
2013-10-14 00:10:43 +00:00
svgEditor . addExtension ( 'WebAppFind' , function ( ) {
return {
name : 'WebAppFind' ,
2014-02-12 03:48:48 +00:00
svgicons : svgEditor . curConfig . extPath + 'webappfind-icon.svg' ,
2013-10-14 00:10:43 +00:00
buttons : [ {
id : 'webappfind_save' , //
type : 'app_menu' ,
title : 'Save Image back to Disk' ,
position : 4 , // Before 0-based index position 4 (after the regular "Save Image (S)")
events : {
click : function ( ) {
if ( ! pathID ) { // Not ready yet as haven't received first payload
return ;
}
window . postMessage ( [ saveMessage , pathID , svgEditor . canvas . getSvgString ( ) ] , window . location . origin ) ;
}
}
} ]
} ;
} ) ;
} ( ) ) ;