Instantly share code, notes, and snippets.
Created
May 9, 2012 12:58
-
Star
(0)
0
You must be signed in to star a gist -
Fork
(0)
0
You must be signed in to fork a gist
-
Save rnevet/2644320 to your computer and use it in GitHub Desktop.
Gmail Strikethrough button - 9.5.12 - rnevet working version
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
/** | |
* Gmail Strikethrough button | |
* Copyright, benleevolk, 2009 | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. | |
* | |
* You should have received a copy of the GNU General Public License | |
* along with this program. If not, see <http://www.gnu.org/licenses/>. | |
*/ | |
// Only define the button if it has not been defined | |
if(gmailStrikeThroughButton == undefined) { | |
var gmailStrikeThroughButton = { | |
debug: false, | |
richTextBar: null, | |
strikethroughButton: null, | |
underlineButton: null, | |
activeButtonClassName: null, | |
canvas_frame_document: null, | |
text_editor: null, | |
/** | |
* Get Icon | |
*/ | |
getIcon: function() { | |
var icon = "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAAZiS0dEA"+"P8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9kJDRI0ElGuqEoAAAAZdE"+"VYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAyUlEQVQ4y83TP0pDQRDH8Y8GYm2"+"nhUUKKxNJ9AQpU6TwBnqIHCCQwkMEz6FdEHIBG7UQUtq8IlUeKDybeRDC+2eqDCwL+/vNd2bZ"+"WQ4xRnhGgt/Yl5jhui75HlmYz9DCKe6wCq0yvsLUKtBumwB+wnSz7/3fA5Bgii6O/gMYYxOQf"+"K3xikdc7ibk9GzPjht1d44HfEShzypzhk6JdhF6un14XGCclADyxLe6DjLMMcAJ2ujjJSDDKk"+"Avnm+B75iLNAbsCVeH9/P+AIavLWYxaRcUAAAAAElFTkSuQmCC"; | |
return icon; | |
}, | |
/** | |
* Get Active Button Class Name | |
*/ | |
getActiveButtonClassName: function() { | |
var xPathResult = this.canvas_frame_document.evaluate("//div[@command='+justifyLeft']",this.canvas_frame_document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); | |
if(xPathResult.snapshotItem(0) == null) return false; | |
// a small hack to get the active button class name | |
var allClasses=xPathResult.snapshotItem(0).className.split(" "); | |
if(allClasses.length > 2) { | |
/* rather than using a constant, since the one of the "justify" button is initially active */ | |
this.activeButtonClassName = allClasses[allClasses.length-1]; | |
return true; | |
} | |
xPathResult = this.canvas_frame_document.evaluate("//div[@command='+justifyRight']", this.canvas_frame_document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); | |
allClasses=xPathResult.snapshotItem(0).className.split(" "); | |
if(allClasses.length <= 2) return false; | |
this.activeButtonClassName = allClasses[allClasses.length-1]; | |
return true; | |
}, | |
/** | |
* Set Strike Through | |
*/ | |
setStrikeThrough: function() { | |
if(GSB.text_editor == null) { | |
if(GSB.loadTextEditor() == false) { | |
return false; | |
} | |
} | |
GSB.text_editor.execCommand("strikethrough", false, ''); | |
GSB.checkForStrikes(); | |
}, | |
/** | |
* Add Button | |
*/ | |
addButton: function() { | |
this.strikethroughButton=this.underlineButton.cloneNode(true); | |
jQuery(this.strikethroughButton).attr({ | |
id: "Strikethrough", | |
title: "Strikethrough", | |
command: "+strikethrough", | |
'inactive-class': jQuery(this.strikethroughButton).attr('class') | |
}).css({ | |
position: 'relative', | |
display: 'inline-block' | |
}); | |
jQuery('div', this.strikethroughButton).last().css({ | |
width: 21, | |
backgroundImage: "url(data:image/png;base64," + GSB.getIcon() + ")", | |
backgroundRepeat: "no-repeat", | |
backgroundPosition: "0px 2px" | |
}); | |
this.strikethroughButton.addEventListener("click", GSB.setStrikeThrough, false); | |
jQuery(this.underlineButton).after(this.strikethroughButton); | |
}, | |
/** | |
* Check for strikes | |
*/ | |
checkForStrikes: function() { | |
var classRegEx = new RegExp(" " + GSB.activeButtonClassName, "g"); | |
if (GSB.text_editor.queryCommandState("strikethrough")) { | |
if (!jQuery(GSB.strikethroughButton).hasClass(GSB.activeButtonClassName)) { | |
jQuery(GSB.strikethroughButton).addClass(GSB.activeButtonClassName); // add active state | |
} | |
} else { | |
jQuery(GSB.strikethroughButton).removeClass(GSB.activeButtonClassName); // remove active state | |
} | |
}, | |
/** | |
* Load the text editor | |
*/ | |
loadTextEditor: function() { | |
this.text_editor = null; | |
if(document.getElementById('canvas_frame')) { | |
var xPathResult = this.canvas_frame_document.evaluate("//iframe[contains(@class, 'editable')]", this.canvas_frame_document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); | |
if(xPathResult.snapshotItem(0) != null) { | |
this.text_editor = xPathResult.snapshotItem(0).contentDocument; | |
} | |
} | |
else { | |
this.text_editor = document; | |
} | |
if(this.text_editor == null) return false; | |
// Start Listeners | |
this.text_editor.addEventListener("click", this.checkForStrikes, false); | |
this.text_editor.addEventListener("keyup", this.checkForStrikes, false); | |
return true; | |
}, | |
/** | |
* Load Rich Text Bar, loads the rich text bar | |
*/ | |
loadRichTextBar: function() { | |
var xPathResult = this.canvas_frame_document.evaluate("//div[@command='+underline']", this.canvas_frame_document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); | |
if(this.underlineButton=xPathResult.snapshotItem(0)) { | |
this.addButton(); | |
return true; | |
} | |
return false; | |
}, | |
/** | |
* Ping Canvas, monitors the canvas for any change in the rich text bar | |
* | |
* Used to | |
*/ | |
pingCanvas: function() { | |
if( GSB.canvas_frame_document .getElementById("GmailRichTextBar") == null) { | |
if(GSB.getActiveButtonClassName()) { | |
var xPathResult = this.evaluate("//div[@command='+bold']", this, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); | |
GSB.richTextBar = xPathResult.snapshotItem(0) .parentNode.parentNode; | |
GSB.richTextBar.setAttribute('id', 'GmailRichTextBar'); | |
GSB.loadRichTextBar(); | |
} | |
GSB.loadTextEditor(); | |
} | |
}, | |
/** | |
* Load Canvas, loads the Gmail canvas | |
*/ | |
loadCanvas: function() { | |
this.debug && console.log('Loading canvas...'); | |
if(document.getElementById("canvas_frame")) { | |
this.canvas_frame_document = document.getElementById("canvas_frame").contentDocument; | |
} | |
else { | |
this.canvas_frame_document = window.parent.document; | |
} | |
// Start canvas monitor | |
this.canvas_frame_document.addEventListener("DOMSubtreeModified", this.pingCanvas, false); | |
} | |
} | |
// Initalize gmail strike through | |
gmailStrikeThroughButton.loadCanvas(); | |
$.ready( function() { gmailStrikeThroughButton.pingCanvas();}); | |
var GSB = gmailStrikeThroughButton; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment