1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
class TimeTablesController < ChouetteController
include TimeTablesHelper
defaults :resource_class => Chouette::TimeTable
respond_to :html
respond_to :xml
respond_to :json
respond_to :js, :only => :index
belongs_to :referential
include PolicyChecker
def show
@year = params[:year] ? params[:year].to_i : Date.today.cwyear
@time_table_combination = TimeTableCombination.new
show! do
build_breadcrumb :show
end
end
def new
@autocomplete_items = ActsAsTaggableOn::Tag.all
new! do
build_breadcrumb :new
end
end
def create
tt_params = time_table_params
if tt_params[:calendar_id]
%i(monday tuesday wednesday thursday friday saturday sunday).map { |d| tt_params[d] = true }
calendar = current_organisation.calendars.find_by_id(tt_params[:calendar_id])
tt_params[:calendar_id] = nil if tt_params.has_key?(:dates_attributes) || tt_params.has_key?(:periods_attributes)
end
@time_table = Chouette::TimeTable.new(tt_params)
if calendar
calendar.dates.each_with_index do |date, i|
@time_table.dates << Chouette::TimeTableDate.new(date: date, position: i)
end
calendar.date_ranges.each_with_index do |date_range, i|
@time_table.periods << Chouette::TimeTablePeriod.new(period_start: date_range.begin, period_end: date_range.end, position: i)
end
end
create!
end
def edit
edit! do
build_breadcrumb :edit
@autocomplete_items = ActsAsTaggableOn::Tag.all
end
end
def update
@time_table = Chouette::TimeTable.find_by_id(params[:id])
@time_table.calendar_id = nil
update!
end
def index
request.format.kml? ? @per_page = nil : @per_page = 12
index! do |format|
format.html {
if collection.out_of_bounds?
redirect_to params.merge(:page => 1)
end
build_breadcrumb :index
}
end
end
def duplicate
@time_table = Chouette::TimeTable.find params[:id]
# prepare breadcrumb before prepare data for new timetable
build_breadcrumb :edit
@time_table = @time_table.duplicate
render :new
end
def tags
@tags = ActsAsTaggableOn::Tag.where("tags.name LIKE ?", "%#{params[:tag]}%")
respond_to do |format|
format.json { render :json => @tags.map{|t| {:id => t.id, :name => t.name }} }
end
end
protected
def collection
ransack_params = params[:q]
# Hack to delete params can't be used by ransack
tag_search = ransack_params["tag_search"].split(",").collect(&:strip) if ransack_params.present? && ransack_params["tag_search"].present?
ransack_params.delete("tag_search") if ransack_params.present?
selected_time_tables = tag_search ? select_time_tables.tagged_with(tag_search, :wild => true, :any => true) : select_time_tables
@q = selected_time_tables.search(ransack_params)
@time_tables ||= @q.result(:distinct => true).order(:comment).paginate(:page => params[:page])
end
def select_time_tables
if params[:route_id]
referential.time_tables.joins( vehicle_journeys: :route).where( "routes.id IN (#{params[:route_id]})")
else
referential.time_tables
end
end
def resource_url(time_table = nil)
referential_time_table_path(referential, time_table || resource)
end
def collection_url
referential_time_tables_path(referential)
end
private
def time_table_params
params.require(:time_table).permit( :objectid, :object_version, :creation_time, :creator_id, :calendar_id, :version, :comment, :int_day_types, :monday, :tuesday, :wednesday, :thursday, :friday, :saturday, :sunday, :start_date, :end_date, { :dates_attributes => [:date, :in_out, :id, :_destroy] }, { :periods_attributes => [:period_start, :period_end, :_destroy, :id] }, :tag_list, :tag_search )
end
end
|