fckundo.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:6k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  */
  21. var FCKUndo = new Object() ;
  22. FCKUndo.SavedData = new Array() ;
  23. FCKUndo.CurrentIndex = -1 ;
  24. FCKUndo.TypesCount = 0 ;
  25. FCKUndo.Changed = false ; // Is the document changed in respect to its initial image?
  26. FCKUndo.MaxTypes = 25 ;
  27. FCKUndo.Typing = false ;
  28. FCKUndo.SaveLocked = false ;
  29. FCKUndo._GetBookmark = function()
  30. {
  31. FCKSelection.Restore() ;
  32. var range = new FCKDomRange( FCK.EditorWindow ) ;
  33. try
  34. {
  35. // There are some tricky cases where this might fail (e.g. having a lone empty table in IE)
  36. range.MoveToSelection() ;
  37. }
  38. catch ( e )
  39. {
  40. return null ;
  41. }
  42. if ( FCKBrowserInfo.IsIE )
  43. {
  44. var bookmark = range.CreateBookmark() ;
  45. var dirtyHtml = FCK.EditorDocument.body.innerHTML ;
  46. range.MoveToBookmark( bookmark ) ;
  47. return [ bookmark, dirtyHtml ] ;
  48. }
  49. return range.CreateBookmark2() ;
  50. }
  51. FCKUndo._SelectBookmark = function( bookmark )
  52. {
  53. if ( ! bookmark )
  54. return ;
  55. var range = new FCKDomRange( FCK.EditorWindow ) ;
  56. if ( bookmark instanceof Object )
  57. {
  58. if ( FCKBrowserInfo.IsIE )
  59. range.MoveToBookmark( bookmark[0] ) ;
  60. else
  61. range.MoveToBookmark2( bookmark ) ;
  62. try
  63. {
  64. // this does not always succeed, there are still some tricky cases where it fails
  65. // e.g. add a special character at end of document, undo, redo -> error
  66. range.Select() ;
  67. }
  68. catch ( e )
  69. {
  70. // if select restore fails, put the caret at the end of the document
  71. range.MoveToPosition( FCK.EditorDocument.body, 4 ) ;
  72. range.Select() ;
  73. }
  74. }
  75. }
  76. FCKUndo._CompareCursors = function( cursor1, cursor2 )
  77. {
  78. for ( var i = 0 ; i < Math.min( cursor1.length, cursor2.length ) ; i++ )
  79. {
  80. if ( cursor1[i] < cursor2[i] )
  81. return -1;
  82. else if (cursor1[i] > cursor2[i] )
  83. return 1;
  84. }
  85. if ( cursor1.length < cursor2.length )
  86. return -1;
  87. else if (cursor1.length > cursor2.length )
  88. return 1;
  89. return 0;
  90. }
  91. FCKUndo._CheckIsBookmarksEqual = function( bookmark1, bookmark2 )
  92. {
  93. if ( ! ( bookmark1 && bookmark2 ) )
  94. return false ;
  95. if ( FCKBrowserInfo.IsIE )
  96. {
  97. var startOffset1 = bookmark1[1].search( bookmark1[0].StartId ) ;
  98. var startOffset2 = bookmark2[1].search( bookmark2[0].StartId ) ;
  99. var endOffset1 = bookmark1[1].search( bookmark1[0].EndId ) ;
  100. var endOffset2 = bookmark2[1].search( bookmark2[0].EndId ) ;
  101. return startOffset1 == startOffset2 && endOffset1 == endOffset2 ;
  102. }
  103. else
  104. {
  105. return this._CompareCursors( bookmark1.Start, bookmark2.Start ) == 0
  106. && this._CompareCursors( bookmark1.End, bookmark2.End ) == 0 ;
  107. }
  108. }
  109. FCKUndo.SaveUndoStep = function()
  110. {
  111. if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG || this.SaveLocked )
  112. return ;
  113. // Assume the editor content is changed when SaveUndoStep() is called after the first time.
  114. // This also enables the undo button in toolbar.
  115. if ( this.SavedData.length )
  116. this.Changed = true ;
  117. // Get the HTML content.
  118. var sHtml = FCK.EditorDocument.body.innerHTML ;
  119. var bookmark = this._GetBookmark() ;
  120. // Shrink the array to the current level.
  121. this.SavedData = this.SavedData.slice( 0, this.CurrentIndex + 1 ) ;
  122. // Cancel operation if the new step is identical to the previous one.
  123. if ( this.CurrentIndex > 0
  124. && sHtml == this.SavedData[ this.CurrentIndex ][0]
  125. && this._CheckIsBookmarksEqual( bookmark, this.SavedData[ this.CurrentIndex ][1] ) )
  126. return ;
  127. // Save the selection and caret position in the first undo level for the first change.
  128. else if ( this.CurrentIndex == 0 && this.SavedData.length && sHtml == this.SavedData[0][0] )
  129. {
  130. this.SavedData[0][1] = bookmark ;
  131. return ;
  132. }
  133. // If we reach the Maximum number of undo levels, we must remove the first
  134. // entry of the list shifting all elements.
  135. if ( this.CurrentIndex + 1 >= FCKConfig.MaxUndoLevels )
  136. this.SavedData.shift() ;
  137. else
  138. this.CurrentIndex++ ;
  139. // Save the new level in front of the actual position.
  140. this.SavedData[ this.CurrentIndex ] = [ sHtml, bookmark ] ;
  141. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  142. }
  143. FCKUndo.CheckUndoState = function()
  144. {
  145. return ( this.Changed || this.CurrentIndex > 0 ) ;
  146. }
  147. FCKUndo.CheckRedoState = function()
  148. {
  149. return ( this.CurrentIndex < ( this.SavedData.length - 1 ) ) ;
  150. }
  151. FCKUndo.Undo = function()
  152. {
  153. if ( this.CheckUndoState() )
  154. {
  155. // If it is the first step.
  156. if ( this.CurrentIndex == ( this.SavedData.length - 1 ) )
  157. {
  158. // Save the actual state for a possible "Redo" call.
  159. this.SaveUndoStep() ;
  160. }
  161. // Go a step back.
  162. this._ApplyUndoLevel( --this.CurrentIndex ) ;
  163. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  164. }
  165. }
  166. FCKUndo.Redo = function()
  167. {
  168. if ( this.CheckRedoState() )
  169. {
  170. // Go a step forward.
  171. this._ApplyUndoLevel( ++this.CurrentIndex ) ;
  172. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  173. }
  174. }
  175. FCKUndo._ApplyUndoLevel = function( level )
  176. {
  177. var oData = this.SavedData[ level ] ;
  178. if ( !oData )
  179. return ;
  180. // Update the editor contents with that step data.
  181. if ( FCKBrowserInfo.IsIE )
  182. {
  183. if ( oData[1] && oData[1][1] )
  184. FCK.SetInnerHtml( oData[1][1] ) ;
  185. else
  186. FCK.SetInnerHtml( oData[0] ) ;
  187. }
  188. else
  189. FCK.EditorDocument.body.innerHTML = oData[0] ;
  190. // Restore the selection
  191. this._SelectBookmark( oData[1] ) ;
  192. this.TypesCount = 0 ;
  193. this.Changed = false ;
  194. this.Typing = false ;
  195. }