app/controllers/base_organisations_controller.rb
class BaseOrganisationsController < ApplicationController
def add_breadcrumbs
add_breadcrumb 'All Organisations', (organisations_path unless action_name == 'index')
super 'Organisation', (@organisation.name if @organisation.present?),
(organisation_path(@organisation) if @organisation.present?)
end
def build_cat_name_ids
@cat_name_ids = Category.name_and_id_for_what_who_and_how
end
def build_map_markers(organisations)
::MapMarkerJson.build(organisations) do |org, marker|
marker.lat org.latitude
marker.lng org.longitude
marker.infowindow render_to_string(partial: 'organisations/popup', locals: {org: org})
marker.json(
custom_marker: render_to_string(
partial: 'shared/custom_marker',
locals: { attrs: org.gmaps4rails_marker_attrs }
),
index: org.has_been_updated_recently? ? 1 : -1,
type: org.has_been_updated_recently? ? 'large_org' : 'small_org'
)
end
end
end