# encoding: utf-8 require 'json' module Zena module Use module Grid module Common # Build a tabular content from a node's attribute def get_table_from_json(text) if text.blank? table = [{"type"=>"table"},[["title"],["value"]]] else table = JSON.parse(text) end raise JSON::ParserError unless table.kind_of?(Array) && table.size == 2 && table[0].kind_of?(Hash) && table[0]['type'] == 'table' && table[1].kind_of?(Array) table end end # Common module ControllerMethods include Common # Get cell text def cell_edit # get table table = get_table_from_json(@node.safe_read(params[:attr])) # get row/cell table_data = table[1] if row = table_data[params[:row].to_i] if cell = row[params[:cell].to_i] render :text => cell else ' ' end else ' ' end end # Ajax table editor def cell_update # get table table = get_table_from_json(@node.safe_read(params[:attr])) # get row/cell table_data = table[1] if row = table_data[params[:row].to_i] if cell = row[params[:cell].to_i] if cell != params[:value] row[params[:cell].to_i] = params[:value] @node.update_attributes(params[:attr] => table.to_json) end else @node.errors.add(params[:attr], 'Cell outside of table range.') end else @node.errors.add(params[:attr], 'Row outside of table range.') end respond_to do |format| format.html { render :inline => @node.errors.empty? ? "<%= zazen(params[:value], :no_p => true) %>" : error_messages_for(@node) } end rescue JSON::ParserError render :inline => _('could not save value (bad attribute)') end # Ajax table add row/column def table_update # get table @table = get_table_from_json(@node.safe_read(params[:attr])) # get row/cell table_data = @table[1] if params[:add] == 'row' table_data << table_data[0].map { ' ' } elsif params[:add] == 'column' table_data.each do |row| row << ' ' end elsif params[:remove] == 'row' && table_data.size > 2 table_data.pop elsif params[:remove] == 'column' && table_data[0].size > 1 table_data.each do |row| row.pop end else # reorder ... end @node.update_attributes(params[:attr] => @table.to_json) rescue JSON::ParserError render :inline => _('could not save value (bad attribute)') end end Routes = { :cell_update => :post, :table_update => :post, :cell_edit => :get } module ViewMethods include Common # Create a table from an attribute def make_table(opts) style, node, attribute, title, table = opts[:style], opts[:node], opts[:attribute], opts[:title], opts[:table] attribute = "d_#{attribute}" unless ['v_', 'd_'].include?(attribute[0..1]) case (style || '').sub('.', '') when ">" prefix = "