86 lines
2.8 KiB
Plaintext
86 lines
2.8 KiB
Plaintext
.issues_content
|
|
%h3
|
|
Issues
|
|
%span.rss-icon
|
|
= link_to project_issues_path(@project, :atom, { :private_token => current_user.private_token }) do
|
|
= image_tag "Rss-UI.PNG", :width => 22, :title => "feed"
|
|
|
|
- if can? current_user, :write_issue, @project
|
|
= link_to new_project_issue_path(@project), :class => "right btn small", :title => "New Issue", :remote => true do
|
|
New Issue
|
|
%br
|
|
%div#issues-table-holder.ui-box
|
|
.title
|
|
.row
|
|
.span8
|
|
%ul.pills.left
|
|
%li{:class => ("active" if (params[:f] == "0" || !params[:f]))}
|
|
= link_to project_issues_path(@project, :f => 0) do
|
|
Open
|
|
%li{:class => ("active" if params[:f] == "2")}
|
|
= link_to project_issues_path(@project, :f => 2) do
|
|
Closed
|
|
%li{:class => ("active" if params[:f] == "3")}
|
|
= link_to project_issues_path(@project, :f => 3) do
|
|
To Me
|
|
%li{:class => ("active" if params[:f] == "1")}
|
|
= link_to project_issues_path(@project, :f => 1) do
|
|
All
|
|
|
|
.span3.right
|
|
= form_tag search_project_issues_path(@project), :method => :get, :remote => true, :id => "issue_search_form", :class => :right do
|
|
= hidden_field_tag :project_id, @project.id, { :id => 'project_id' }
|
|
= hidden_field_tag :status, params[:f]
|
|
= search_field_tag :issue_search, nil, { :placeholder => 'Search', :class => 'issue_search' }
|
|
|
|
%ul#issues-table.unstyled= render "issues"
|
|
|
|
:javascript
|
|
var href = $('.issue_search').parent().attr('action');
|
|
var last_terms = '';
|
|
|
|
$('.issue_search').keyup(function() {
|
|
var terms = $(this).val();
|
|
var project_id = $('#project_id').val();
|
|
var status = $('#status').val();
|
|
if (terms != last_terms) {
|
|
last_terms = terms;
|
|
|
|
if (terms.length >= 2 || terms.length == 0) {
|
|
$.get(href, { 'status': status, 'terms': terms, project: project_id }, function(response) {
|
|
$('#issues-table').html(response);
|
|
setSortable();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
$('.delete-issue').live('ajax:success', function() {
|
|
$(this).closest('tr').fadeOut(); updatePage();});
|
|
|
|
function setSortable(){
|
|
$('#issues-table').sortable({
|
|
axis: 'y',
|
|
dropOnEmpty: false,
|
|
handle: '.handle',
|
|
cursor: 'crosshair',
|
|
items: 'tr',
|
|
opacity: 0.4,
|
|
scroll: true,
|
|
update: function(){
|
|
$.ajax({
|
|
type: 'post',
|
|
data: $('#issues-table').sortable('serialize'),
|
|
dataType: 'script',
|
|
complete: function(request){
|
|
$('#issues-table').effect('highlight');
|
|
},
|
|
url: "#{sort_project_issues_path(@project)}"})
|
|
}
|
|
});
|
|
}
|
|
|
|
$(function(){
|
|
setSortable();
|
|
});
|