* fixes old toolbar usage where $j.wikiEditor is defined
[lhc/web/wiklou.git] / js2 / editPage.js
1 /*
2 * JS2-style replacement for MediaWiki edit.js
3 * (right now it just supports the toolbar)
4 */
5
6 // Setup configuration vars (if not set already)
7 if( !mwAddMediaConfig )
8 var mwAddMediaConfig = {};
9
10 //The default editPage AMW config
11 var defaultAddMediaConfig = {
12 'profile': 'mediawiki_edit',
13 'target_textbox': '#wpTextbox1',
14 // Note: selections in the textbox will take over the default query
15 'default_query': wgTitle,
16 'target_title': wgPageName,
17 // Here we can setup the content provider overrides
18 'enabled_cps':['wiki_commons'],
19 // The local wiki API URL:
20 'local_wiki_api_url': wgServer + wgScriptPath + '/api.php'
21 };
22
23
24 js2AddOnloadHook( function() {
25 var amwConf = $j.extend( true, defaultAddMediaConfig, mwAddMediaConfig );
26 // kind of tricky, it would be nice to use run on ready "loader" call here
27 if( typeof $j.wikiEditor != 'undefined' ) {
28 $j( 'textarea#wpTextbox1' ).bind( 'wikiEditor-toolbar-buildSection-main',
29 function( e, section ) {
30 if ( typeof section.groups.insert.tools.file !== 'undefined' ) {
31 section.groups.insert.tools.file.action = {
32 'type': 'callback',
33 'execute': function() {
34 js_log('click add media wiz');
35 $j.addMediaWiz( amwConf );
36 }
37 };
38 }
39 }
40 );
41 }
42 //add to old toolbar if wikiEditor did not remove '#toolbar' from the page:
43 setTimeout(function(){
44 if( $j('#btn-add-media-wiz').length == 0 && $j( '#toolbar' ).length != 0 ){
45 $j( '#toolbar' ).append( '<img style="cursor:pointer" id="btn-add-media-wiz" src="' +
46 mv_skin_img_path + 'Button_add_media.png">' );
47 $j( '#btn-add-media-wiz' ).addMediaWiz(
48 amwConf
49 );
50 }
51 },100)
52 });