module ApplicationHelper def qi_js_field(form, model, method, options = {}) r = "" if options[:hidden] r += hidden_field_tag(method, eval("form.object.#{method}"), :class => "input_#{model}_#{method} form-control",:disabled => true) else if options[:label] r += label_tag(:input, options[:label]) end r += text_field_tag(method, (options[:value] ? options[:value] : eval("form.object.#{method}")), :class => "input_#{model}_#{method} form-control",:disabled => true) end return raw(r) end def qi_js_field_price_line_form(form, model, method, options = {}) r = "" if options[:hidden] r += hidden_field_tag(method, eval("form.object.#{method}"), :class => "input_#{model}_#{method} form-control",:disabled => true) else if options[:label] r += label_tag(:input, options[:label], class: options[:label_class]) end r += text_field_tag(method, (options[:value] ? options[:value] : eval("form.object.#{method}")), :class => "input_#{model}_#{method} form-control",:disabled => true) end return raw(r) end def edit_watcher(element_type, element_id, key='' ) raw ('
') end def hashtag_link(hash) link_to " ##{hash} ", hashtag_public_image_actu_path(hash.to_slug), :target => "_blank" end def parse_hashtag(text) text.gsub(Hashtag::REGEX) {hashtag_link($1)} end def flash_js r = raw ("$('#flashs').append('"+ escape_javascript(bootstrap_flash) +"');flash_delay();") flash[:notice] = nil flash[:error] = nil flash[:success] = nil r end def forum_avatar_url(user) if user user.avatar_url else "/default_avatar.png" end end def sort_link(column, title = nil) #def sortable_columns # ["name", "price"] sort_column = (params[:column] ? params[:column] : nil) sort_direction = (%w[asc desc].include?(params[:direction]) ? params[:direction] : "asc") title ||= column.titleize direction = column == sort_column && sort_direction == "asc" ? "desc" : "asc" icon = sort_direction == "asc" ? "chevron-up" : "chevron-down" icon = column == sort_column ? icon : "" link_to raw("#{title} "+ic(icon).html_safe), request.query_parameters.merge({column: column, direction: direction}) end def id_color(price_line) if price_line.p_articles.count == 0 return "background-color: red" elsif price_line.p_articles.count < price_line.qte return "background-color: orange" else return "background-color: #70ff29" end end def id_color_array(price_line) if price_line.p_articles.count == 0 return "background-color", "red" elsif price_line.p_articles.count < price_line.qte return "background-color", "orange" else return "background-color", "#70ff29" end end end