Ver código fonte

Adds autocomplete to issue field on time logging form.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10182 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.1.0
Jean-Philippe Lang 12 anos atrás
pai
commit
f1650b8ff4

+ 4
- 2
app/controllers/auto_completes_controller.rb Ver arquivo

@issues = [] @issues = []
q = (params[:q] || params[:term]).to_s.strip q = (params[:q] || params[:term]).to_s.strip
if q.present? if q.present?
scope = (params[:scope] == "all" ? Issue : @project.issues).visible
scope = (params[:scope] == "all" || @project.nil? ? Issue : @project.issues).visible
if q.match(/^\d+$/) if q.match(/^\d+$/)
@issues << scope.find_by_id(q.to_i) @issues << scope.find_by_id(q.to_i)
end end
private private


def find_project def find_project
@project = Project.find(params[:project_id])
if params[:project_id].present?
@project = Project.find(params[:project_id])
end
rescue ActiveRecord::RecordNotFound rescue ActiveRecord::RecordNotFound
render_404 render_404
end end

+ 2
- 0
app/views/timelog/_form.html.erb Ver arquivo

<% end %> <% end %>
<%= call_hook(:view_timelog_edit_form_bottom, { :time_entry => @time_entry, :form => f }) %> <%= call_hook(:view_timelog_edit_form_bottom, { :time_entry => @time_entry, :form => f }) %>
</div> </div>

<%= javascript_tag "observeAutocompleteField('time_entry_issue_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project, :scope => (@project ? nil : 'all'))}')" %>

+ 7
- 0
test/functional/auto_completes_controller_test.rb Ver arquivo

assert assigns(:issues).include?(Issue.find(13)) assert assigns(:issues).include?(Issue.find(13))
end end


def test_auto_complete_without_project_should_search_all_projects
get :issues, :q => '13'
assert_response :success
assert_not_nil assigns(:issues)
assert assigns(:issues).include?(Issue.find(13))
end

def test_auto_complete_without_scope_all_should_not_search_other_projects def test_auto_complete_without_scope_all_should_not_search_other_projects
get :issues, :project_id => 'ecookbook', :q => '13' get :issues, :project_id => 'ecookbook', :q => '13'
assert_response :success assert_response :success

Carregando…
Cancelar
Salvar