diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-05-24 17:31:53 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-05-24 17:31:53 +0000 |
commit | c77370a9ebd58dedac42ae0a7b8a045650f80ebc (patch) | |
tree | 2d0c26c8a967c6db161ef6e1857f5ceb97f5c807 | |
parent | 6206c88dfabf4b320ab35026c2833dbb4e9a593c (diff) | |
download | redmine-c77370a9ebd58dedac42ae0a7b8a045650f80ebc.tar.gz redmine-c77370a9ebd58dedac42ae0a7b8a045650f80ebc.zip |
Use a modal form to create a category from the issue form.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9707 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/controllers/issue_categories_controller.rb | 24 | ||||
-rw-r--r-- | app/views/issue_categories/_new_modal.html.erb | 9 | ||||
-rw-r--r-- | app/views/issues/_attributes.html.erb | 10 | ||||
-rw-r--r-- | test/functional/issue_categories_controller_test.rb | 4 |
4 files changed, 36 insertions, 11 deletions
diff --git a/app/controllers/issue_categories_controller.rb b/app/controllers/issue_categories_controller.rb index 81928ff53..36a22b324 100644 --- a/app/controllers/issue_categories_controller.rb +++ b/app/controllers/issue_categories_controller.rb @@ -41,6 +41,17 @@ class IssueCategoriesController < ApplicationController def new @category = @project.issue_categories.build @category.safe_attributes = params[:issue_category] + + respond_to do |format| + format.html + format.js do + render :update do |page| + page.replace_html 'ajax-modal', :partial => 'issue_categories/new_modal' + page << "showModal('ajax-modal', '600px');" + page << "Form.Element.focus('issue_category_name');" + end + end + end end def create @@ -53,9 +64,11 @@ class IssueCategoriesController < ApplicationController redirect_to :controller => 'projects', :action => 'settings', :tab => 'categories', :id => @project end format.js do - # IE doesn't support the replace_html rjs method for select box options - render(:update) {|page| page.replace "issue_category_id", - content_tag('select', content_tag('option') + options_from_collection_for_select(@project.issue_categories, 'id', 'name', @category.id), :id => 'issue_category_id', :name => 'issue[category_id]') + render(:update) {|page| + page << 'hideModal();' + # IE doesn't support the replace_html rjs method for select box options + page.replace "issue_category_id", + content_tag('select', content_tag('option') + options_from_collection_for_select(@project.issue_categories, 'id', 'name', @category.id), :id => 'issue_category_id', :name => 'issue[category_id]') } end format.api { render :action => 'show', :status => :created, :location => issue_category_path(@category) } @@ -64,7 +77,10 @@ class IssueCategoriesController < ApplicationController respond_to do |format| format.html { render :action => 'new'} format.js do - render(:update) {|page| page.alert(@category.errors.full_messages.join('\n')) } + render :update do |page| + page.replace_html 'ajax-modal', :partial => 'issue_categories/new_modal' + page << "Form.Element.focus('version_name');" + end end format.api { render_validation_errors(@category) } end diff --git a/app/views/issue_categories/_new_modal.html.erb b/app/views/issue_categories/_new_modal.html.erb new file mode 100644 index 000000000..402391192 --- /dev/null +++ b/app/views/issue_categories/_new_modal.html.erb @@ -0,0 +1,9 @@ +<h3 class="title"><%=l(:label_issue_category_new)%></h3> + +<%= labelled_remote_form_for @category, :as => 'issue_category', :url => project_issue_categories_path(@project) do |f| %> +<%= render :partial => 'issue_categories/form', :locals => { :f => f } %> + <p class="buttons"> + <%= submit_tag l(:button_create), :name => nil %> + <%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button' %> + </p> +<% end %> diff --git a/app/views/issues/_attributes.html.erb b/app/views/issues/_attributes.html.erb index c65735ae4..0bec53163 100644 --- a/app/views/issues/_attributes.html.erb +++ b/app/views/issues/_attributes.html.erb @@ -18,12 +18,10 @@ <% if @issue.safe_attribute?('category_id') && @issue.project.issue_categories.any? %> <p><%= f.select :category_id, (@issue.project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %> -<%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'), - l(:label_issue_category_new), - 'issue_category[name]', - {:controller => 'issue_categories', :action => 'create', :project_id => @issue.project}, - :title => l(:label_issue_category_new), - :tabindex => 199) if User.current.allowed_to?(:manage_categories, @issue.project) %></p> +<%= link_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'), + {:url => new_project_issue_category_path(@issue.project), :method => 'get'}, + :title => l(:label_issue_category_new), + :tabindex => 200) if User.current.allowed_to?(:manage_categories, @issue.project) %></p> <% end %> <% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %> diff --git a/test/functional/issue_categories_controller_test.rb b/test/functional/issue_categories_controller_test.rb index d76746ac5..5c9e6c9dc 100644 --- a/test/functional/issue_categories_controller_test.rb +++ b/test/functional/issue_categories_controller_test.rb @@ -79,7 +79,9 @@ class IssueCategoriesControllerTest < ActionController::TestCase end assert_response :success - assert_match /alert/, @response.body + assert_select_rjs :replace_html, "ajax-modal" do + assert_select "div#errorExplanation" + end end def test_edit |