forked from Zodiac1978/tl-normalizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunfc-normalize.js
231 lines (211 loc) · 7.91 KB
/
unfc-normalize.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/**
* Javascript for UNFC Nörmalize WP plugin.
*/
/*jslint ass: true, nomen: true, plusplus: true, regexp: true, vars: true, white: true, indent: 4 */
/*global jQuery, wp, commonL10n, unfc_params, console */
/*exported unfc_normalize */
var unfc_normalize = unfc_normalize || {}; // Our namespace.
( function ( $ ) {
'use strict';
/**
* Helper to normalize text pasted into text-like inputs and textareas.
*/
unfc_normalize.input_textarea_normalize_on_paste = function ( context ) {
// TODO: Other types: "email", "password", "url" ?? More exclusions ??
$( 'input[type="text"], input[type="search"], textarea', context ).not( '#current-page-selector' ).on( 'paste', function ( event ) {
var $el = $( this );
if ( $el.val().normalize ) {
// http://stackoverflow.com/a/1503425/664741
setTimeout( function () {
var before = $el.val(), after = before.normalize(), selection;
if ( before !== after ) {
if ( ! ( unfc_params && unfc_params.is.dont_paste ) ) {
selection = $el.getSelection();
$el.val( after );
$el.setSelection( selection.start + ( after.length - before.length ), selection.end + ( after.length - before.length ) );
}
$el.change(); // Trigger change.
}
if ( unfc_params && unfc_params.is.script_debug ) {
unfc_normalize.dmp_before_and_after( before, after );
}
} );
}
} );
};
/**
* Normalize text pasted into tinymce.
*/
unfc_normalize.tinymce_editor_init = function () {
$( document ).on( 'tinymce-editor-init', function ( event, editor ) {
// Using PastePreProcess, which is fired with the paste as a HTML string set in event.content.
// Easy option, may not be the best.
editor.on( 'PastePreProcess', function( event ) {
var before; // Keep jshint happy.
if ( event.content && event.content.length && event.content.normalize ) {
if ( unfc_params && unfc_params.is.script_debug ) {
before = event.content;
}
event.content = event.content.normalize();
if ( unfc_params && unfc_params.is.script_debug ) {
unfc_normalize.dmp_before_and_after( before, event.content );
}
}
} );
} );
};
/**
* Call in admin on jQuery ready.
* Standard admin inputs and wp.media stuff.
*/
unfc_normalize.admin_ready = function () {
var $wpcontent = $( '#wpcontent' ), old_details_render, old_display_render;
// Any standard admin text input or textarea. May need refining.
if ( $wpcontent.length ) {
unfc_normalize.input_textarea_normalize_on_paste( $wpcontent );
}
// Media.
if ( 'undefined' !== typeof wp && wp.media && wp.media.view ) {
if ( wp.media.view.Attachment && wp.media.view.Attachment.Details ) {
// Override render. Probably not the best option.
old_details_render = wp.media.view.Attachment.Details.prototype.render;
wp.media.view.Attachment.Details.prototype.render = function () {
old_details_render.apply( this, arguments );
unfc_normalize.input_textarea_normalize_on_paste( this.$el );
};
}
if ( wp.media.view.Settings && wp.media.view.Settings.AttachmentDisplay ) {
// Override render. Again, probably not the best option.
old_display_render = wp.media.view.Settings.AttachmentDisplay.prototype.render;
wp.media.view.Settings.AttachmentDisplay.prototype.render = function () {
old_display_render.apply( this, arguments );
unfc_normalize.input_textarea_normalize_on_paste( this.$el );
};
}
// TODO: Other media stuff.
}
// TODO: Other stuff.
if ( unfc_params.is.db_check_loaded ) {
unfc_normalize.db_check();
}
};
/**
* Call in front end on jQuery ready.
* Standard inputs.
*/
unfc_normalize.front_end_ready = function () {
// Any standard text input or textarea. May need refining.
unfc_normalize.input_textarea_normalize_on_paste();
};
/**
* Call in admin.
* Customizer stuff.
*/
unfc_normalize.customizer_ready = function () {
// Customizer - do outside jQuery ready otherwise will miss 'ready' event.
if ( 'undefined' !== typeof wp && wp.customize ) {
wp.customize.bind( 'ready', function () {
unfc_normalize.input_textarea_normalize_on_paste();
} );
}
};
/**
* Debug helper - dump before and after.
*/
unfc_normalize.dmp_before_and_after = function ( before, after ) {
if ( 'undefined' !== typeof console && console.log ) {
var i, before_dmp = '', after_dmp = '';
if ( before === after ) {
console.log( 'normalize same' );
} else {
for ( i = 0; i < before.length; i++ ) {
before_dmp += ( '0000' + before.charCodeAt( i ).toString( 16 ) ).slice( -4 ) + ' ';
}
for ( i = 0; i < after.length; i++ ) {
after_dmp += ( '0000' + after.charCodeAt( i ).toString( 16 ) ).slice( -4 ) + ' ';
}
console.log( 'normalize different\nbefore_dmp=%s\n after_dmp=%s', before_dmp, after_dmp );
}
}
};
/**
* Some UI feedback for database check tool.
*/
unfc_normalize.db_check = function () {
var $db_check = $( '#unfc_db_check' ), $msgs = $( '.notice, .updated', $db_check ), $forms = $( '.unfc_db_check_form', $db_check );
if ( $db_check.length ) {
$( 'input[type="submit"]', $forms ).click( function ( e ) {
var $this = $( this ), $form = $this.parent(), $msg = $( unfc_params.please_wait_msg );
$this.hide();
$forms.not( $form ).hide();
$( '.unfc_db_check_form_hide', $db_check ).hide();
$( '#screen-meta-links' ).hide();
$msgs.hide();
$( 'h1', $db_check ).first().after( $msg );
unfc_normalize.makeNoticesDismissible( $db_check );
if ( $.browser && $.browser.safari ) {
// Safari apparently suspends rendering in a submit handler, so hack around it. See http://stackoverflow.com/a/1164177/664741
// Still no spinner, but better than nothing.
e.preventDefault();
$( '.spinner', $msg ).removeClass( 'is-active' ); // Hide as it doesn't spin.
$this.unbind( 'click' );
setTimeout( function() { $this.click(); }, 0 );
}
} );
}
};
/**
* Some stuff for database check tool listings.
*/
unfc_normalize.db_check_list = function ( sel ) {
var $db_check = $( '#unfc_db_check' ), $db_check_list = $( sel, $db_check ), $form;
if ( $db_check_list.length ) {
$form = $( 'form.unfc_db_check_list_form', $db_check_list );
if ( $form.length ) {
// Remove the "wp-admin/js/common.js" #17685 submit handler which doesn't apply here & is buggy anyway.
$form.off( 'submit' );
// Save some round-tripping to the server for nowt.
$( '#doaction, #doaction2', $db_check_list ).click( function ( e ) {
var $bulk_action = $( '#bulk-action-selector-' + ( 'doaction' === this.id ? 'top' : 'bottom' ) + ' option:selected', $db_check_list ),
action = $bulk_action.val(), $msg, $msgs, checkeds;
if ( '-1' !== action ) {
checkeds = $.makeArray( $( 'input[name="item[]"]:checked', $db_check_list ).map( function () {
return this.value;
} ) );
if ( ! checkeds.length ) {
e.preventDefault();
$msgs = $( '.notice', $db_check );
if ( $msgs.length ) {
$msgs.remove();
}
$msg = $( unfc_params.no_items_selected_msg );
$( 'h1', $db_check).first().after( $msg );
unfc_normalize.makeNoticesDismissible( $db_check );
}
}
} );
}
}
};
/**
* Make notices dismissible. Taken (more or less) from WP 4.5.2 "wp-admin/js/common.js".
*/
unfc_normalize.makeNoticesDismissible = function ( $db_check ) {
$( '.notice.is-dismissible', $db_check ).each( function() {
var $el = $( this ),
$button = $( '<button type="button" class="notice-dismiss"><span class="screen-reader-text"></span></button>' ),
btnText = commonL10n.dismiss || '';
// Ensure plain text
$button.find( '.screen-reader-text' ).text( btnText );
$button.off( 'click.wp-dismiss-notice' ).on( 'click.wp-dismiss-notice', function( event ) {
event.preventDefault();
$el.fadeTo( 100, 0, function() {
$el.slideUp( 100, function() {
$el.remove();
});
});
});
$el.append( $button );
});
};
} )( jQuery );