plugin qi_cible_select

This commit is contained in:
Nicolas Bally 2011-07-08 17:34:20 +02:00
parent a6d45ed58b
commit d4d515d313
6 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1 @@
Copyright (c) 2011 Nicolas Bally

11
vendor/plugins/qi_cible_select/Rakefile vendored Normal file
View File

@ -0,0 +1,11 @@
require 'rake'
require 'spec/rake/spectask'
desc 'Default: run all specs.'
task :default => :spec
desc 'Run all specs'
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
t.spec_files = FileList['spec/**/*_spec.rb']
end

View File

@ -0,0 +1,6 @@
# -*- encoding : utf-8 -*-
if Object.const_defined?("Formtastic")
require 'qi_cible_select'
Formtastic::SemanticFormBuilder.send(:include, Formtastic::QiCibleSelect)
end

View File

@ -0,0 +1,37 @@
# -*- encoding : utf-8 -*-
module Formtastic
module QiCibleSelect
protected
def qi_cible_select_input(method, options)
r = rand(1000000000000000000000000000)
html_options = options.delete(:input_html) || {}
self.label(method, options_for_label(options)) +
template.content_tag(:fieldset, template.text_field_tag("cible_name", (object.cible ? object.cible.cible_name : "aucuns élément séléctionné"), :id =>"name_#{r}" )+ self.manager_select_cible_link(method, options, r) + self.send(:hidden_field, method.to_s+"_id", html_options.merge!(:id => "input_id_"+r.to_s))+ self.send(:hidden_field, method.to_s+"_type", html_options.merge!(:id => "input_type_"+r.to_s)))
end
def manager_select_cible_link(method, options, r)
template.content_tag(:a, "Modifier ce lien", :href => "#", :onclick => "select_cible_from_manager('"+r.to_s+"');return false;")
end
def image_preview(method, options,r)
if object.send("#{method}?")
template.content_tag(:span, template.image_tag(object.image_file.file.large.medium.small.thumb.url, :id => "img_"+r.to_s), :class => "preview ")
else
template.content_tag(:span, template.image_tag("", :id => "img_"+r.to_s), :class => "preview ")
end
end
end
end

View File

@ -0,0 +1,7 @@
# -*- encoding : utf-8 -*-
begin
require File.dirname(__FILE__) + '/../../../../spec/spec_helper'
rescue LoadError
puts "You need to install rspec in your base app"
exit
end

View File

@ -0,0 +1,2 @@
# -*- encoding : utf-8 -*-
require File.dirname(__FILE__) + '/spec_helper.rb'