new code for attribute fields and values for new member interface

This commit is contained in:
Matthew K. Fu JuYuan 2012-10-12 18:09:02 +08:00 committed by chris
parent 293dc80ceb
commit 8b9cffd4f2
15 changed files with 226 additions and 116 deletions

View File

@ -309,4 +309,7 @@
} }
.user-role .staff h4 .gender { .user-role .staff h4 .gender {
border-color: #139E2F transparent transparent #139E2F; border-color: #139E2F transparent transparent #139E2F;
}
.user-role .tab-content, .user-role .tabs-right > .nav-tabs {
float: left;
} }

View File

@ -12,12 +12,12 @@
border-radius: 4px; border-radius: 4px;
margin-bottom: 10px; margin-bottom: 10px;
} }
.site-map .map-block ul { .site-map .map-block > ul {
margin: 0px; margin: 0px;
list-style: none; list-style: none;
width: 220px \9; width: 220px \9;
} }
.site-map .map-block li { .site-map .map-block li.clear {
background-color: #F7F7F7; background-color: #F7F7F7;
padding: 5px 15px; padding: 5px 15px;
border-top: 1px solid #FFF; border-top: 1px solid #FFF;

View File

@ -32,6 +32,7 @@ class Admin::InfosController < ApplicationController
def update def update
@attribute = Info.find(params[:id]) @attribute = Info.find(params[:id])
# binding.pry
@attribute.update_attributes(params[:info]) @attribute.update_attributes(params[:info])
respond_to do |format| respond_to do |format|
format.html { redirect_to :action => :index } format.html { redirect_to :action => :index }

View File

@ -2,6 +2,16 @@ module ApplicationHelper
FLASH_NOTICE_KEYS = [:error, :notice, :warning] FLASH_NOTICE_KEYS = [:error, :notice, :warning]
def show_attribute_value(value)
if value.kind_of? Hash
result = []
value.each{|t| result.push(t.last)}
result.join ","
else
value
end
end
def create_guest_user def create_guest_user
u = User.create(:name => "guest", :email => "guest_#{Time.now.to_i}#{rand(99)}@example.com") u = User.create(:name => "guest", :email => "guest_#{Time.now.to_i}#{rand(99)}@example.com")
u.admin = false u.admin = false

View File

@ -1,3 +1,4 @@
#encoding: utf-8
# require ActionView::Helpers::FormTagHelper # require ActionView::Helpers::FormTagHelper
module AttributeFieldsHelper module AttributeFieldsHelper
@ -5,6 +6,7 @@ module AttributeFieldsHelper
include ActionView::Helpers::FormOptionsHelper include ActionView::Helpers::FormOptionsHelper
include ActionView::Helpers::DateHelper include ActionView::Helpers::DateHelper
include ActionView::Helpers::TagHelper include ActionView::Helpers::TagHelper
include ActionView::Helpers::RenderingHelper
def block_helper(user,index) def block_helper(user,index)
@index = index @index = index
@ -16,114 +18,124 @@ module AttributeFieldsHelper
return instance_eval("render_#{markup}") #rescue "" return instance_eval("render_#{markup}") #rescue ""
end end
def render_text_area def lang_tab(str,lang)
result = "" content_tag(:div,str,:class=>"tab-pane fade",:id=>(get_field_name_base+"tab_#{lang}"))
result << label
if self.locale?
@prefiled_value.each do |key,value|
result << controls_wrapper{text_area_tag("#{get_field_name_base}[#{key.to_s}]", value, {})}
end
else
value = @prefiled_value
result << controls_wrapper{text_area_tag(get_field_name_base, value, {})}
end
result << end_block
result.html_safe
end end
def render_radio_button def render_address
result = "" control_group_wrapper do |key,value|
result << label result = '<div class="input-append">'.html_safe
markup_value.each do |key,value|
result << controls_wrapper{label_tag(key,radio_button_tag(get_field_name_base+"[#{key}]", value[I18n.locale.to_s], (@prefiled_value==value ? true : false), {})+value[I18n.locale.to_s],:class=>"control-label")} if(add_more and value.is_a?(Array))
values = value
result << values.each_with_index.collect do |value,index|
text_field_tag(get_field_name_base + (key.nil? ? '' : "[#{key}][#{index}]"), value.last,markup_options)
end.join.html_safe
else
result << text_field_tag(get_field_name_base + (key.nil? ? '' : "[#{key}]"), value,markup_options)
end
result << ('<a href="#'+self.key+'-edit" class="btn" type="button" data-toggle="modal"><i class="icon-edit"></i></a>').html_safe
result << '<a href="#" class="btn" type="button"><i class="icon-trash"></i></a>'.html_safe
result << '</div>'.html_safe
result << gen_modal_dialog
end end
result << end_block
result.html_safe
end end
def render_checkbox def render_checkbox
# label+ "" + end_block
# check_box_tag(name, value = "1", checked = false, options = {})
result = ""
result << label
markup_value.each do |key,value|
result << controls_wrapper{label_tag(key,check_box_tag(get_field_name_base+"[#{key}]", value[I18n.locale.to_s], (@prefiled_value==value ? true : false), {})+value[I18n.locale.to_s],:class=>"control-label")}
end
result << end_block
result.html_safe
end
def render_date_durnation
control_group_wrapper do control_group_wrapper do
if @new_attribute markup_value.collect do |key,value|
@prefiled_value = {} label_tag(key,check_box_tag(get_field_name_base+"[#{key}]", value[I18n.locale.to_s], (@prefiled_value==value ? true : false), {})+value[I18n.locale.to_s],markup_options.merge(:class=>"control-label"))
end end.join rescue ""
label+controls_wrapper{date_select(get_field_name_base+"[value][from]",@prefiled_value["from"]) +date_select(get_field_name_base+"[value][end]",@prefiled_value["end"])} + end_block
end end
end end
def render_text_field_ext def render_date
result = "" control_group_wrapper{date_select(get_field_name_base+"[value]",@prefiled_value,markup_options,:class=>"input-small")}
result << label end
if self.locale?
@prefiled_value.each do |key,value| def render_date_durnation #Need re-write low priority
result << controls_wrapper{text_field_tag("#{get_field_name_base}[#{key.to_s}]", value, {})}
end end
else
value = @prefiled_value def render_radio_button
result << controls_wrapper{text_field_tag(get_field_name_base, value, {})} control_group_wrapper do
markup_value.collect do |key,value|
label_tag(key,radio_button_tag(get_field_name_base, value[I18n.locale.to_s], (@prefiled_value==value ? true : false), {})+value[I18n.locale.to_s],markup_options.merge(:class=>"control-label"))
end.join rescue ""
end end
result << end_block
result.html_safe
end end
def render_select
def render_date control_group_wrapper{select_tag( get_field_name_base+"[value]",options_for_select(markup_value.collect{|p| [p[1][I18n.locale.to_s],p[0]]},@prefiled_value),markup_options)} rescue ""
label+controls_wrapper{date_select(get_field_name_base+"[value]",@prefiled_value)} + end_block
end end
def render_select def render_text_area
label+controls_wrapper{select_tag( get_field_name_base+"[value]",options_for_select(markup_value.collect{|p| [p[1][I18n.locale.to_s],p[0]]},@prefiled_value))} + end_block control_group_wrapper{|key,value|text_area_tag(get_field_name_base + (key.nil? ? '' : "[#{key}]"), value,markup_options)}
end end
def render_text_field def render_text_field
result = "" control_group_wrapper do |key,value|
result << label if(add_more and value.is_a?(Hash))
if self.locale? values = value
@prefiled_value.each do |key,value| values.each_with_index.collect do |value,index|
result << controls_wrapper{text_field_tag("#{get_field_name_base}[#{key.to_s}]", value, {})} text_field_tag(get_field_name_base + (key.nil? ? '' : "[#{key}][#{index}]"), value.last,markup_options)
end end.join.html_safe
else else
value = @prefiled_value text_field_tag(get_field_name_base + (key.nil? ? '' : "[#{key}]"), value,markup_options)
result << controls_wrapper{text_field_tag(get_field_name_base, value, {})}
end end
result << end_block
result.html_safe
end end
end
def render_email
label+controls_wrapper{email_field_tag(get_field_name_base, value, {})}+ end_block
end
def render_addr
label+controls_wrapper{text_field_tag(get_field_name_base, value, {})} + end_block
end
protected protected
def lang_panel_control_wrapper(&block)
result = '<div class="tabbable tabs-right">'
result << '<div class="tab-content">'
result << controls_wrapper{yield}
result << '</div>'
result << '</div>'
result.html_safe
end
def controls_wrapper(&block) def controls_wrapper(&block)
result = "<div class='controls'>" result = "<div class='controls'>"
result << yield if can_muti_lang_input
result << "<div class='tabbable tabs-right'>"
result << "<div class='tab-content'>"
VALID_LOCALES.collect do |key|
value = @prefiled_value[key.to_s] rescue nil
div_class = ["tab-pane" ,"fade"].join(" ")
div_class << (key == I18n.locale.to_s ? " active in" : '')
result << content_tag(:div,yield(key,value),:class=>div_class,:id=>"tab"+id.to_s+"_#{key}")
end
result << "</div>"
result << "<ul class='nav nav-tabs'>"
VALID_LOCALES.each do |key|
result << content_tag(:li,link_to(I18n.t("langs."+key),"#tab"+id.to_s+"_#{key}",:data=>{:toggle=>"tab"}),:class=>(key == I18n.locale.to_s ? "active" : nil))
end
result << "</ul>"
result << "</div>"
# @prefiled_value.collect do |key,value|
# result << yield(key,value)
# end
else
result << yield
end
if can_add_more
result << '<span class="help-block">'
result << '<a href="#"><i class="icon-plus-sign"></i> Add</a>'
result << '</span>'
end
result << "</div>" result << "</div>"
result.html_safe result.html_safe
end end
def control_group_wrapper(&block) def control_group_wrapper(&block)
result = "<div class='control-group'>" div_class = can_muti_lang_input ? "control-group language-swich" : "control-group"
result << yield temp = label + controls_wrapper(&block)
result << "</div>"
result = content_tag(:div,temp,:class=>div_class)
result << end_block
result.html_safe result.html_safe
end end
@ -148,4 +160,36 @@ protected
label_tag(key,title,:class=>"control-label") label_tag(key,title,:class=>"control-label")
end end
def can_muti_lang_input
locale and LIST[:markups][markup]["muti_lang_input_supprt"]
end
def can_add_more
locale and LIST[:markups][markup]["ext_support"] && add_more
end
def render_anywhere(partial, assigns)
view = ActionView::Base.new(Rails::Configuration.new.view_path, assigns)
ActionView::Base.helper_modules.each { |helper| view.extend helper }
view.extend ApplicationHelper
view.render(:partial => partial)
end
def gen_modal_dialog
result = '<div class="modal hide fade" id="address-edit" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none; ">'
result << '<div class="modal-header">'
result << '<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>'
result << '<h3 id="myModalLabel">'+title+'</h3>'
result << '</div>'
result << '<div class="modal-body">'
result << '<p>One fine body…</p>'
result << '</div>'
result << '<div class="modal-footer">'
result << '<button class="btn" data-dismiss="modal" aria-hidden="true">'+I18n.t("modal.close")+'</button>'
result << '<button class="btn btn-primary">'+I18n.t("modal.save_and_close")+'</button>'
result << '</div>'
result << '</div>'
result.html_safe
end
end end

View File

@ -5,12 +5,15 @@ class AttributeField
include AttributeFieldHelper include AttributeFieldHelper
field :key field :key
field :markup #[select,text_field,email,date,addr] field :markup
field :markup_value ,:type => Hash field :markup_value ,:type => Hash
field :markup_options,:type => Hash
field :locale, :type => Boolean, :default => true field :locale, :type => Boolean, :default => true
field :list_options, :type => Array # field :list_options, :type => Array
field :built_in, :type => Boolean, :default => false field :built_in, :type => Boolean, :default => false
field :disabled, :type => Boolean, :default => false field :disabled, :type => Boolean, :default => false
field :add_more,:type => Boolean, :default => false
#field :title, localize: true #field :title, localize: true
field :locale_title, localize: true field :locale_title, localize: true
@ -21,6 +24,20 @@ class AttributeField
has_many :attribute_values has_many :attribute_values
# validates_uniqueness_of :key # validates_uniqueness_of :key
def markup_options=(var)
self[:markup_options] = (eval(var) rescue {})
end
def markup_options
if self[:markup_options].nil?
return {}
else
Hash[self[:markup_options].map{|key,val|[key.to_sym,val]}] rescue {}
end
end
def role def role
self.attribute.role self.attribute.role
end end
@ -46,7 +63,7 @@ class AttributeField
return self.neutral_title return self.neutral_title
end end
end end
def title=(var) def title=(var)
# binding.pry # binding.pry
if locale if locale
@ -56,15 +73,15 @@ class AttributeField
end end
end end
# Convert the string list_options into an array # # Convert the string list_options into an array
def select_list_options=(var) # def select_list_options=(var)
self.list_options = var.gsub(' ', '').split(',') # self.list_options = var.gsub(' ', '').split(',')
end # end
# Convert the array list_options into a string # # Convert the array list_options into a string
def select_list_options # def select_list_options
self.list_options.to_a.join(', ') # self.list_options.to_a.join(', ')
end # end
def is_built_in? def is_built_in?
self.built_in self.built_in

View File

@ -11,7 +11,7 @@ class AttributeValue
before_save :check_key before_save :check_key
NO_MULTI_TAG = ["select","date","radio_button","checkbox","date_durnation"] # NO_MULTI_TAG = ["select","date","radio_button","checkbox","date_durnation"]
def check_key def check_key
self.key = attribute_field.key self.key = attribute_field.key
@ -31,19 +31,25 @@ class AttributeValue
self.attribute_field.locale ? self[locale] : self[:value] self.attribute_field.locale ? self[locale] : self[:value]
when "select" when "select"
self.attribute_field.markup_value[self[:value]][locale.to_s] || NoData self.attribute_field.markup_value[self[:value]][locale.to_s] || NoData
when "email" when "text_area"
self[:value] #self[:value]
when "date" when "date"
Date.new(self[:value]["(1i)"].to_i,self[:value]["(2i)"].to_i,self[:value]["(3i)"].to_i) Date.new(self[:value]["(1i)"].to_i,self[:value]["(2i)"].to_i,self[:value]["(3i)"].to_i)
when "addr" when "addr"
self[:value] self[:value]
when "radio_button"
self[:value]
when "checkbox"
self[:value]
when "date_durnation"
self[:value]
else else
self.attribute_field.locale ? self[locale] : self[:value] self.attribute_field.locale ? self[locale] : self[:value]
end end
end end
def get_values def get_values
if self.attribute_field.locale && !(NO_MULTI_TAG.include? self.attribute_field.markup) if self.attribute_field.locale && LIST[:markups][self.attribute_field.markup]["muti_lang_input_supprt"]
return Hash[VALID_LOCALES.collect{|lang| [lang,self[lang.to_sym]]}] return Hash[VALID_LOCALES.collect{|lang| [lang,self[lang.to_sym]]}]
else else
return self[:value] return self[:value]

View File

@ -11,10 +11,18 @@
<td class='select_type'> <td class='select_type'>
<ul> <ul>
<li><%= f.select :markup, LIST[:markups], {}, {:style => "width:90px"} %> </li> <li>markup<%= f.select :markup, LIST[:markups].keys, {}, {:style => "width:90px"} %> </li>
<li><%= f.check_box :locale %><%= label_tag "Locale" %> </li> <li>markup_value<%= f.text_field :markup_value,:size=>50 %></li>
<li><%= attribute_field[:markup].eql?('select') ? nil : "style='display:none'"%> </li> <li>markup_options<%= f.text_field :markup_options,:size=>50 %></li>
<li><%= t('admin.options') %>: <%= f.text_field :markup_value%></li> <li>locale<%= f.check_box :locale,{},true,false %></li>
<li>built_in<%= f.check_box :built_in,{},true,false %></li>
<li>disabled<%= f.check_box :disabled,{},true,false %></li>
<li>add_more<%= f.check_box :add_more,{},true,false %></li>
<li>neutral_title<%= f.text_field :neutral_title,:size=>50 %></li>
<!--
<li><%#= attribute_field[:markup].eql?('select') ? nil : "style='display:none'"%> </li>
<li><%#= t('admin.options') %>: <%#= f.text_field :markup_value%></li>
-->
</ul> </ul>

View File

@ -3,9 +3,7 @@
<div class="form-horizontal"> <div class="form-horizontal">
<% info.attribute_fields.each do |af|%> <% info.attribute_fields.each do |af|%>
<div class="control-group">
<%= af.block_helper(@user,@form_index)%> <%= af.block_helper(@user,@form_index)%>
</div>
<% @form_index = @form_index +1 %> <% @form_index = @form_index +1 %>
<% end %> <% end %>

View File

@ -1,9 +1,7 @@
<td> <td>
<%= temp_profile.title %> <%= temp_profile.title %>
<% temp_profile.attribute_fields.each do |af|%> <% temp_profile.attribute_fields.each do |af|%>
<div class="control-group">
<%= af.block_helper(@user,@form_index)%> <%= af.block_helper(@user,@form_index)%>
</div>
<% @form_index = @form_index +1 %> <% @form_index = @form_index +1 %>
<% end %> <% end %>
</td> </td>

View File

@ -8,7 +8,7 @@
<% items.each do |item| %> <% items.each do |item| %>
<tr> <tr>
<td class="span1"><%= item[:name] %></td> <td class="span1"><%= item[:name] %></td>
<td><%= item[:value] %></td> <td><%= show_attribute_value(item[:value]) %></td>
</tr> </tr>
<% end -%> <% end -%>
</tbody> </tbody>

View File

@ -31,7 +31,7 @@
<%= yield %> <%= yield %>
</div> </div>
<div class="tertiary"><%= yield :tertiary %></div> <div class="tertiary"><%= yield :tertiary %></div>
<div id="back_footer"><p><%= APP_CONFIG['ruling_digital'] %></p></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -71,3 +71,5 @@ module Orbit
end end
Orbit_Apps = [] Orbit_Apps = []
VALID_LOCALES = ["en", "zh_tw"] VALID_LOCALES = ["en", "zh_tw"]

View File

@ -3,15 +3,34 @@ forbidden_item_names:
- panel - panel
- appfront - appfront
#NO_MULTI_TAG = ["select","date","radio_button","checkbox","date_durnation"]
markups: markups:
- text_field text_field:
- select muti_lang_input_supprt: true
- date ext_support: true
- text_area #NC select:
- radio_button #NC muti_lang_input_supprt: false
- checkbox #NC ext_support: false
- date_durnation #NC date:
- text_field_ext #NC for addr for phone muti_lang_input_supprt: false
ext_support: false
text_area:
muti_lang_input_supprt: true
ext_support: false
radio_button:
muti_lang_input_supprt: false
ext_support: false
checkbox:
muti_lang_input_supprt: false
ext_support: false
date_durnation:
muti_lang_input_supprt: false
ext_support: false
address:
muti_lang_input_supprt: true
ext_support: true
public_r_tags: public_r_tags:
- ad_banner - ad_banner

View File

@ -24,6 +24,9 @@ zh_tw:
help: 協助 help: 協助
hide: 隱藏 hide: 隱藏
homepage: 首頁 homepage: 首頁
langs:
zh_tw: 中文
en: 英文
login: 登入 login: 登入
logout: 登出 logout: 登出
nccu: 政大 nccu: 政大
@ -558,6 +561,7 @@ zh_tw:
update: "更新%{model}" update: "更新%{model}"
submit: "儲存%{model}" submit: "儲存%{model}"
modal: modal:
save_and_close: "儲存並關閉"
close: "關閉" close: "關閉"
preview: "預覽" preview: "預覽"
sys: sys:
@ -568,4 +572,4 @@ zh_tw:
module_page_lang_not_support: "很抱歉,本頁沒有開放中文版本" module_page_lang_not_support: "很抱歉,本頁沒有開放中文版本"
object_disable: object_disable:
change_to_true: "設為停用" change_to_true: "設為停用"
change_to_false: "重新啓用" change_to_false: "重新啓用"