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
|
module StopAreasHelper
def explicit_name(stop_area)
name = localization = ""
name += truncate(stop_area.name, :length => 30) || ""
name += (" <small>["+ ( truncate(stop_area.registration_number, :length => 10) || "") + "]</small>") if stop_area.registration_number
localization += stop_area.zip_code || ""
localization += ( truncate(stop_area.city_name, :length => 15) ) if stop_area.city_name
( "<img src='#{stop_area_picture_url(stop_area)}'/>" + " <span style='height:25px; line-height:25px; margin-left: 5px; '>" + name + " <small style='height:25px; line-height:25px; margin-left: 10px; color: #555;'>" + localization + "</small></span>").html_safe
end
def label_for_country country, txt=nil
"#{txt} <span title='#{ISO3166::Country[country]&.translation(I18n.locale)}' class='flag-icon flag-icon-#{country}'></span>".html_safe
end
def genealogical_title
return t("stop_areas.genealogical.genealogical_routing") if @stop_area.stop_area_type == 'itl'
t("stop_areas.genealogical.genealogical")
end
def show_map?
manage_itl || @stop_area.long_lat_type != nil
end
def manage_access_points
@stop_area.stop_area_type == 'stop_place' || @stop_area.stop_area_type == 'commercial_stop_point'
end
def manage_itl
@stop_area.stop_area_type == 'itl'
end
def manage_parent
@stop_area.stop_area_type != 'itl'
end
def manage_children
@stop_area.stop_area_type == 'stop_place' || @stop_area.stop_area_type == 'commercial_stop_point'
end
def pair_key(access_link)
"#{access_link.access_point.id}-#{access_link.stop_area.id}"
end
def geo_data(sa, sar)
if sa.long_lat_type.nil?
content_tag :span, '-'
else
if !sa.projection.nil?
content_tag :span, "#{sa.projection_x}, #{sa.projection_y}"
elsif !sa.long_lat_type.nil?
content_tag :span, "#{sa.long_lat_type} : #{sa.latitude}, #{sa.longitude}"
end
end
end
def stop_area_registration_number_title stop_area
if stop_area&.stop_area_referential&.registration_number_format.present?
return t("formtastic.titles.stop_area.registration_number_format", registration_number_format: stop_area.stop_area_referential.registration_number_format)
end
t "formtastic.titles#{format_restriction_for_locales(@referential)}.stop_area.registration_number"
end
def stop_area_registration_number_is_required stop_area
val = format_restriction_for_locales(@referential) == '.hub'
val ||= stop_area&.stop_area_referential&.registration_number_format.present?
val
end
def stop_area_registration_number_value stop_area
stop_area&.registration_number
end
def stop_area_registration_number_hint
t "formtastic.hints.stop_area.registration_number"
end
def stop_area_status(stop_area)
if stop_area.activated?
content_tag(:span, nil, class: 'fa fa-check-circle fa-lg text-success') +
t('activerecord.attributes.stop_area.confirmed')
elsif stop_area.deactivated?
content_tag(:span, nil, class: 'fa fa-exclamation-circle fa-lg text-danger') +
t('activerecord.attributes.stop_area.deactivated')
else
content_tag(:span, nil, class: 'fa fa-pencil fa-lg text-info') +
t('activerecord.attributes.stop_area.in_creation')
end
end
def stop_area_status_options
Chouette::StopArea.statuses.map do |status|
[ t(status, scope: 'activerecord.attributes.stop_area'), status ]
end
end
end
|