Commit 3b89f140 authored by Robert Speicher's avatar Robert Speicher

Convert main.js to coffee

Remove duplicate 's' hotkey code
parent 93daa8c5
$(document).ready(function(){ window.updatePage = (data) ->
$.ajax({type: "GET", url: location.href, data: data, dataType: "script"})
$(".one_click_select").live("click", function(){
$(this).select(); window.slugify = (text) ->
}); text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase()
$('body').on('ajax:complete, ajax:beforeSend, submit', 'form', function(e){ window.ajaxGet = (url) ->
var buttons = $('[type="submit"]', this); $.ajax({type: "GET", url: url, dataType: "script"})
switch( e.type ){
case 'ajax:beforeSend': # Disable button if text field is empty
case 'submit': window.disableButtonIfEmptyField = (field_selector, button_selector) ->
buttons.attr('disabled', 'disabled'); field = $(field_selector)
break; closest_submit = field.closest("form").find(button_selector)
case ' ajax:complete':
default: closest_submit.attr("disabled", "disabled").addClass("disabled") if field.val() is ""
buttons.removeAttr('disabled');
break; field.on "keyup", ->
} if $(this).val() is ""
}) closest_submit.attr("disabled", "disabled").addClass "disabled"
else
$(".account-box").mouseenter(showMenu); closest_submit.removeAttr("disabled").removeClass "disabled"
$(".account-box").mouseleave(resetMenu);
$ ->
$("#projects-list .project").live('click', function(e){ $(".one_click_select").live 'click', ->
if(e.target.nodeName != "A" && e.target.nodeName != "INPUT") { $(this).select()
location.href = $(this).attr("url");
e.stopPropagation(); $('body').on 'ajax:complete, ajax:beforeSend, submit', 'form', (e) ->
return false; buttons = $('[type="submit"]', this)
}
}); switch e.type
when 'ajax:beforeSend', 'submit'
/** buttons.attr('disabled', 'disabled')
* Focus search field by pressing 's' key else
*/ buttons.removeAttr('disabled')
$(document).keypress(function(e) {
if( $(e.target).is(":input") ) return; # Show/Hide the profile menu when hovering the account box
switch(e.which) { $('.account-box').hover -> $(this).toggleClass('hover')
case 115: focusSearch();
e.preventDefault(); $("#projects-list .project").live 'click', (e) ->
} if e.target.nodeName isnt "A" and e.target.nodeName isnt "INPUT"
}); location.href = $(this).attr("url")
e.stopPropagation()
/** false
* Commit show suppressed diff
* # Focus search field by pressing 's' key
*/ $(document).keypress (e) ->
$(".supp_diff_link").bind("click", function() { # Don't do anything if typing in an input
showDiff(this); return if $(e.target).is(":input")
});
switch e.which
/** when 115
* Note markdown preview $("#search").focus()
* e.preventDefault()
*/
$(document).on('click', '#preview-link', function(e) { # Commit show suppressed diff
$('#preview-note').text('Loading...'); $(".supp_diff_link").bind "click", ->
$(this).next('table').show()
var previewLinkText = ($(this).text() == 'Preview' ? 'Edit' : 'Preview'); $(this).remove()
$(this).text(previewLinkText);
# Note markdown preview
var note = $('#note_note').val(); $(document).on 'click', '#preview-link', (e) ->
if (note.trim().length === 0) { note = 'Nothing to preview'; } $('#preview-note').text('Loading...')
$.post($(this).attr('href'), {note: note}, function(data) {
$('#preview-note').html(data); previewLinkText = if $(this).text() == 'Preview' then 'Edit' else 'Preview'
}); $(this).text(previewLinkText)
$('#preview-note, #note_note').toggle(); note = $('#note_note').val()
e.preventDefault(); note = 'Nothing to preview' if note.trim().length is 0
}); $.post($(this).attr('href'), {note: note}, (data) ->
}); $('#preview-note').html(data)
)
function focusSearch() {
$("#search").focus(); $('#preview-note, #note_note').toggle()
} e.preventDefault()
false
function updatePage(data){
$.ajax({type: "GET", url: location.href, data: data, dataType: "script"}); (($) ->
} _chosen = $.fn.chosen
$.fn.extend chosen: (options) ->
function showMenu() { default_options = search_contains: "true"
$(this).toggleClass('hover'); $.extend default_options, options
} _chosen.apply this, [default_options]
function resetMenu() { )(jQuery)
$(this).removeClass("hover");
}
function slugify(text) {
return text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase();
}
function showDiff(link) {
$(link).next('table').show();
$(link).remove();
}
(function($){
var _chosen = $.fn.chosen;
$.fn.extend({
chosen: function(options) {
var default_options = {'search_contains' : 'true'};
$.extend(default_options, options);
return _chosen.apply(this, [default_options]);
}})
})(jQuery);
function ajaxGet(url) {
$.ajax({type: "GET", url: url, dataType: "script"});
}
/**
* Disable button if text field is empty
*/
function disableButtonIfEmtpyField(field_selector, button_selector) {
field = $(field_selector);
if(field.val() == "") {
field.closest("form").find(button_selector).attr("disabled", "disabled").addClass("disabled");
}
field.on('keyup', function(){
var field = $(this);
var closest_submit = field.closest("form").find(button_selector);
if(field.val() == "") {
closest_submit.attr("disabled", "disabled").addClass("disabled");
} else {
closest_submit.removeAttr("disabled").removeClass("disabled");
}
})
}
...@@ -34,12 +34,4 @@ ...@@ -34,12 +34,4 @@
source: #{raw search_autocomplete_source}, source: #{raw search_autocomplete_source},
select: function(event, ui) { location.href = ui.item.url } select: function(event, ui) { location.href = ui.item.url }
}); });
$(document).keypress(function(e) {
if($(e.target).is(":input")) return;
switch(e.which) {
case 115: focusSearch();
e.preventDefault();
}
});
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment