Created
December 19, 2011 18:51
-
-
Save khrome/1498376 to your computer and use it in GitHub Desktop.
Loading an SVG in JS and using raphael to render it, just for fun
This file contains 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
var parser = new SVGParser(); | |
var svgRequest = new Request({ | |
url: 'awesome.svg', | |
onSuccess: function(responseText, responseXML) { | |
//once we recieve the SVG, we parse it | |
parser.parse(responseText); | |
} | |
}).send(); |
This file contains 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
//set up the raphael canvas | |
var panel = Raphael("widget_panel", 1000, 600); | |
//setup our own XML Parser | |
SVGParser = new Class({ | |
Extends : MidasXMLParser, | |
open: function(tag, attributes){ | |
if(tag == "path"){ | |
//when we find a path, draw it on the raphael canvas | |
var shape = panel.path(attributes["d"]).attr({ | |
fill:"#000000", | |
"stroke-width": 1 | |
}); | |
} | |
} | |
}); |
This file contains 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
MidasXMLParser = new Class({ | |
initialize: function(){ | |
this.buildXMLcomponents(); | |
}, | |
buildXMLcomponents: function(){ | |
this.handler = new MidasSAXEventHandler(); | |
this.parser = new SAXDriver(); | |
}, | |
open: function(tagName, attributes){ | |
var node = document.id('widget_panel'); | |
//var pro = profile(attributes); | |
var pro = attributes["d"]; | |
node.innerHTML = node.innerHTML + pro +"<br/><br/>"; | |
}, | |
content: function(text){ | |
}, | |
close: function(tagName){ | |
}, | |
parse: function(xml){ | |
this.handler.startTag = this.open; | |
this.handler.endTag = this.close; | |
this.handler.charData = this.content; | |
this.parser.setDocumentHandler(this.handler); | |
this.parser.setLexicalHandler(this.handler); | |
this.parser.setErrorHandler(this.handler); | |
this.parser.parse(xml); | |
} | |
}); |
This file contains 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
// SAX constructor | |
MidasSAXEventHandler = function() { | |
this.characterData = ""; | |
} | |
// My Non-exposed hooks (all existing hooks require fucking with char data | |
// internally, so we call cleanly out to here to make truly pluggable functions) | |
MidasSAXEventHandler.prototype.startTag = function(name, attrs){ | |
} | |
MidasSAXEventHandler.prototype.charData = function(chars){ | |
} | |
MidasSAXEventHandler.prototype.endTag = function(name){ | |
} | |
//MidasSAXEventHandler Object SAX INTERFACES | |
MidasSAXEventHandler.prototype.characters = function(data, start, length) { | |
this.characterData += data.substr(start, length); | |
} | |
MidasSAXEventHandler.prototype.endDocument = function() { | |
this._handleCharacterData(); | |
//place endDocument event handling code below this line | |
} | |
MidasSAXEventHandler.prototype.endElement = function(name) { | |
this._handleCharacterData(); | |
//place endElement event handling code below this line | |
this.endTag(name); | |
} | |
MidasSAXEventHandler.prototype.processingInstruction = function(target, data) { | |
this._handleCharacterData(); | |
//place processingInstruction event handling code below this line | |
} | |
MidasSAXEventHandler.prototype.setDocumentLocator = function(locator) { | |
this._handleCharacterData(); | |
//place setDocumentLocator event handling code below this line | |
} | |
MidasSAXEventHandler.prototype.startElement = function(name, atts) { | |
this._handleCharacterData(); | |
var attrs = {}; | |
//place startElement event handling code below this line | |
for(var lcv =0; lcv < atts.getLength(); lcv++){ | |
attrs[atts.getName(lcv)] = atts.getValue(lcv); | |
} | |
this.startTag(name, attrs); | |
} | |
MidasSAXEventHandler.prototype.startDocument = function() { | |
this._handleCharacterData(); | |
//place startDocument event handling code below this line | |
} | |
//MidasSAXEventHandler Object Lexical Handlers | |
MidasSAXEventHandler.prototype.comment = function(data, start, length) { | |
this._handleCharacterData(); | |
//place comment event handling code below this line | |
} | |
MidasSAXEventHandler.prototype.endCDATA = function() { | |
this._handleCharacterData(); | |
//place endCDATA event handling code below this line | |
} | |
MidasSAXEventHandler.prototype.startCDATA = function() { | |
this._handleCharacterData(); | |
//place startCDATA event handling code below this line | |
} | |
// MidasSAXEventHandler Object Error Interface | |
MidasSAXEventHandler.prototype.error = function(exception) { | |
this._handleCharacterData(); | |
//place error event handling code below this line | |
} | |
MidasSAXEventHandler.prototype.fatalError = function(exception) { | |
this._handleCharacterData(); | |
//place fatalError event handling code below this line | |
} | |
MidasSAXEventHandler.prototype.warning = function(exception) { | |
this._handleCharacterData(); | |
//place warning event handling code below this line | |
} | |
//MidasSAXEventHandler Object Internal Functions | |
MidasSAXEventHandler.prototype._fullCharacterDataReceived = | |
function(fullCharacterData){ | |
//place character (text) event handling code below this line | |
this.charData(fullCharacterData); | |
} | |
MidasSAXEventHandler.prototype._handleCharacterData = function() { | |
if (this.characterData != ""){ | |
this._fullCharacterDataReceived(this.characterData); | |
} | |
this.characterData = ""; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment