2014-03-06 18:55:32 +04:00
var Gogits = {
"PageIsSignup" : false
} ;
2014-03-02 17:47:55 +04:00
2014-03-06 18:55:32 +04:00
( function ( $ ) {
2014-03-10 12:54:52 +04:00
2014-03-02 17:47:55 +04:00
Gogits . showTab = function ( selector , index ) {
if ( ! index ) {
index = 0 ;
}
$ ( selector ) . tab ( "show" ) ;
$ ( selector ) . find ( "li:eq(" + index + ") a" ) . tab ( "show" ) ;
2014-03-06 18:55:32 +04:00
} ;
Gogits . validateForm = function ( selector , options ) {
var $form = $ ( selector ) ;
options = options || { } ;
options . showErrors = function ( map , list ) {
var $error = $form . find ( '.form-error' ) . addClass ( 'hidden' ) ;
$ ( '.has-error' ) . removeClass ( "has-error" ) ;
$error . text ( list [ 0 ] . message ) . show ( ) . removeClass ( "hidden" ) ;
$ ( list [ 0 ] . element ) . parents ( ".form-group" ) . addClass ( "has-error" ) ;
} ;
$form . validate ( options ) ;
} ;
2014-03-10 12:54:52 +04:00
// ----- init elements
Gogits . initModals = function ( ) {
var modals = $ ( "[data-toggle=modal]" ) ;
if ( modals . length < 1 ) {
return ;
}
$ . each ( modals , function ( i , item ) {
2014-03-10 17:12:49 +04:00
var hide = $ ( item ) . data ( 'modal' ) ;
$ ( item ) . modal ( hide ? hide : "hide" ) ;
2014-03-10 12:54:52 +04:00
} ) ;
} ;
Gogits . initTooltips = function ( ) {
$ ( "body" ) . tooltip ( {
selector : "[data-toggle=tooltip]"
//container: "body"
} ) ;
} ;
2014-03-17 14:13:07 +04:00
Gogits . initPopovers = function ( ) {
var hideAllPopovers = function ( ) {
$ ( '[data-toggle=popover]' ) . each ( function ( ) {
$ ( this ) . popover ( 'hide' ) ;
} ) ;
} ;
$ ( document ) . on ( 'click' , function ( e ) {
var $e = $ ( e . target ) ;
if ( $e . data ( 'toggle' ) == 'popover' || $e . parents ( "[data-toggle=popover], .popover" ) . length > 0 ) {
return ;
}
hideAllPopovers ( ) ;
} ) ;
$ ( "body" ) . popover ( {
selector : "[data-toggle=popover]"
} ) ;
} ;
2014-03-10 17:12:49 +04:00
Gogits . initTabs = function ( ) {
2014-03-13 10:08:49 +04:00
var $tabs = $ ( '[data-init=tabs]' ) ;
$tabs . find ( "li:eq(0) a" ) . tab ( "show" ) ;
2014-03-17 11:17:44 +04:00
} ;
// render markdown
Gogits . renderMarkdown = function ( ) {
2014-03-20 13:25:48 +04:00
var $md = $ ( '.markdown' ) ;
var $pre = $md . find ( 'pre > code' ) . parent ( ) ;
2014-03-17 11:17:44 +04:00
$pre . addClass ( "prettyprint" ) ;
prettyPrint ( ) ;
2014-03-20 13:25:48 +04:00
// Set anchor.
var headers = { } ;
$md . find ( 'h1, h2, h3, h4, h5, h6' ) . each ( function ( ) {
var node = $ ( this ) ;
var val = encodeURIComponent ( node . text ( ) . toLowerCase ( ) . replace ( /[^\w\- ]/g , '' ) . replace ( /[ ]/g , '-' ) ) ;
var name = val ;
if ( headers [ val ] > 0 ) {
name = val + '-' + headers [ val ] ;
}
if ( headers [ val ] == undefined ) {
headers [ val ] = 1 ;
} else {
headers [ val ] += 1 ;
}
node = node . wrap ( '<div id="' + name + '" class="anchor-wrap" ></div>' ) ;
node . append ( '<a class="anchor" href="#' + name + '"><span class="octicon octicon-link"></span></a>' ) ;
} ) ;
2014-03-10 17:12:49 +04:00
}
2014-03-17 11:17:44 +04:00
2014-03-10 17:12:49 +04:00
} ) ( jQuery ) ;
// ajax utils
( function ( $ ) {
Gogits . ajaxDelete = function ( url , data , success ) {
data = data || { } ;
data . _method = "DELETE" ;
$ . ajax ( {
url : url ,
data : data ,
method : "POST" ,
dataType : "json" ,
success : function ( json ) {
if ( success ) {
success ( json ) ;
}
}
} )
}
2014-03-03 18:40:22 +04:00
} ) ( jQuery ) ;
2014-03-06 18:55:32 +04:00
function initCore ( ) {
2014-03-10 12:54:52 +04:00
Gogits . initTooltips ( ) ;
2014-03-17 14:13:07 +04:00
Gogits . initPopovers ( ) ;
2014-03-13 10:08:49 +04:00
Gogits . initTabs ( ) ;
2014-03-10 12:54:52 +04:00
Gogits . initModals ( ) ;
2014-03-17 11:17:44 +04:00
Gogits . renderMarkdown ( ) ;
2014-03-06 18:55:32 +04:00
}
function initRegister ( ) {
$ . getScript ( "/js/jquery.validate.min.js" , function ( ) {
Gogits . validateForm ( "#gogs-login-card" , {
rules : {
"username" : {
required : true ,
maxlength : 30
} ,
"email" : {
required : true ,
email : true
} ,
"passwd" : {
required : true ,
minlength : 6 ,
maxlength : 30
} ,
"re-passwd" : {
required : true ,
equalTo : "input[name=passwd]"
}
}
} ) ;
} ) ;
2014-03-10 17:12:49 +04:00
}
2014-03-17 11:17:44 +04:00
function initUserSetting ( ) {
2014-03-16 17:07:50 +04:00
$ ( '#gogs-ssh-keys .delete' ) . confirmation ( {
singleton : true ,
2014-03-17 11:17:44 +04:00
onConfirm : function ( e , $this ) {
Gogits . ajaxDelete ( "" , { "id" : $this . data ( "del" ) } , function ( json ) {
if ( json . ok ) {
2014-03-16 17:07:50 +04:00
window . location . reload ( ) ;
2014-03-17 11:17:44 +04:00
} else {
2014-03-16 17:07:50 +04:00
alert ( json . err ) ;
}
} ) ;
}
2014-03-10 17:12:49 +04:00
} ) ;
2014-03-16 19:25:01 +04:00
}
2014-03-17 11:17:44 +04:00
( function ( $ ) {
$ ( function ( ) {
initCore ( ) ;
var body = $ ( "#gogs-body" ) ;
if ( body . data ( "page" ) == "user-signup" ) {
initRegister ( ) ;
}
if ( body . data ( "page" ) == "user" ) {
initUserSetting ( ) ;
}
2014-03-16 19:25:01 +04:00
} ) ;
} ) ( jQuery ) ;