2014-08-01 02:23:47 -07:00
module ApplicationHelper
2014-11-10 14:46:51 -08:00
def nav_entry ( body , path , options = { } )
options = {
badge : nil ,
badge_color : nil ,
2014-12-13 10:28:46 -08:00
icon : nil ,
class : ''
2014-11-10 14:46:51 -08:00
} . merge ( options )
2020-05-06 05:30:12 -07:00
classes = [
" nav-item " ,
2020-05-06 05:49:35 -07:00
current_page? ( path ) ? " active " : nil ,
2020-05-06 05:30:12 -07:00
options [ :class ]
] . compact . join ( " " )
2014-11-10 14:46:51 -08:00
unless options [ :icon ] . nil?
body = " #{ content_tag ( :i , '' , class : " mdi- #{ options [ :icon ] } " ) } #{ body } "
end
unless options [ :badge ] . nil?
# TODO: make this prettier?
body << " #{
content_tag ( :span , options [ :badge ] , class : ( " badge #{
" badge- #{ options [ :badge_color ] } " unless options [ :badge_color ] . nil?
} " ))} "
end
2020-05-06 05:30:12 -07:00
content_tag ( :li , link_to ( body . html_safe , path , class : " nav-link " ) , class : classes )
2014-08-01 06:27:08 -07:00
end
2015-04-19 07:49:53 -07:00
def list_group_item ( body , path , options = { } )
options = {
badge : nil ,
badge_color : nil ,
class : ''
} . merge ( options )
2020-05-06 05:30:12 -07:00
classes = [
" list-group-item " ,
" list-group-item-action " ,
2020-05-06 05:49:35 -07:00
current_page? ( path ) ? " active " : nil ,
2020-05-06 05:30:12 -07:00
options [ :class ]
] . compact . join ( " " )
2015-04-19 07:49:53 -07:00
unless options [ :badge ] . nil? or options [ :badge ] == 0
# TODO: make this prettier?
body << " #{
content_tag ( :span , options [ :badge ] , class : ( " badge #{
" badge- #{ options [ :badge_color ] } " unless options [ :badge_color ] . nil?
} " ))} "
end
2020-05-06 05:30:12 -07:00
content_tag ( :a , body . html_safe , href : path , class : classes )
2015-04-19 07:49:53 -07:00
end
2015-05-13 15:02:19 -07:00
2015-05-26 18:11:21 -07:00
def tooltip ( body , tooltip_content , placement = " bottom " )
2015-05-26 17:58:03 -07:00
content_tag ( :span , body , { title : tooltip_content , " data-toggle " = > " tooltip " , " data-placement " = > placement } )
end
2015-06-08 20:24:17 -07:00
def time_tooltip ( subject , placement = " bottom " )
2015-06-08 20:21:58 -07:00
tooltip time_ago_in_words ( subject . created_at ) , localize ( subject . created_at ) , placement
2015-06-08 20:24:17 -07:00
end
2015-06-08 20:21:58 -07:00
2015-05-26 17:58:03 -07:00
def hidespan ( body , hide )
2020-05-04 20:04:43 -07:00
content_tag ( :span , body , class : hide )
2015-05-26 17:58:03 -07:00
end
2014-08-01 06:27:08 -07:00
##
2015-05-13 15:02:19 -07:00
#
2014-08-01 06:27:08 -07:00
def bootstrap_color c
case c
when " error " , " alert "
" danger "
when " notice "
" info "
else
c
end
end
2014-11-10 14:46:51 -08:00
def inbox_count
return 0 unless user_signed_in?
count = Inbox . select ( " COUNT(id) AS count " )
. where ( new : true )
. where ( user_id : current_user . id )
. group ( :user_id )
. order ( :count )
2014-11-10 21:40:12 -08:00
. first
return nil if count . nil?
return nil unless count . count > 0
count . count
2014-11-10 14:46:51 -08:00
end
2014-11-27 02:50:10 -08:00
2014-12-14 06:15:15 -08:00
def notification_count
return 0 unless user_signed_in?
count = Notification . for ( current_user ) . where ( new : true )
return nil if count . nil?
return nil unless count . count > 0
count . count
end
2014-11-28 10:23:54 -08:00
def privileged? ( user )
2014-12-28 12:14:01 -08:00
( ( ! current_user . nil? ) && ( ( current_user == user ) || current_user . mod? ) ) ? true : false
2014-11-27 02:50:10 -08:00
end
2014-11-30 05:31:38 -08:00
2014-12-06 08:08:10 -08:00
def ios_web_app?
2014-12-08 03:11:20 -08:00
user_agent = request . env [ 'HTTP_USER_AGENT' ] || 'Mozilla/5.0'
2014-12-06 08:08:10 -08:00
# normal MobileSafari.app UA: Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B435 Safari/600.1.4
# webapp UA: Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12B435
return true if user_agent . match / ^Mozilla \/ \ d+ \ . \ d+ \ (i(?:Phone|Pad|Pod); CPU(?:.*) like Mac OS X \ )(?:.*) Mobile(?: \ S*)$ /
false
end
2015-05-13 15:02:19 -07:00
def generate_title ( name , junction = nil , content = nil , s = false )
if s
2015-05-13 15:10:34 -07:00
if name [ - 1 ] . downcase != " s "
2015-05-13 15:02:19 -07:00
name = name + " 's "
else
name = name + " ' "
end
end
list = [ name ]
list . push junction unless junction . nil?
unless content . nil?
content = strip_markdown ( content )
if content . length > 45
content = content [ 0 .. 42 ] + " ... "
end
list . push content
end
list . push " | " , APP_CONFIG [ 'site_name' ]
list . join " "
end
def question_title ( question )
2017-03-30 10:17:25 -07:00
name = user_screen_name question . user , anonymous : question . author_is_anonymous , url : false
2015-05-13 15:02:19 -07:00
generate_title name , " asked " , question . content
end
def answer_title ( answer )
2017-03-30 10:17:25 -07:00
name = user_screen_name answer . user , anonymous : false , url : false
2015-05-14 18:16:02 -07:00
generate_title name , " answered " , answer . question . content
2015-05-13 15:02:19 -07:00
end
def user_title ( user , junction = nil )
2017-03-30 10:17:25 -07:00
name = user_screen_name user , anonymous : false , url : false
2015-05-13 15:02:19 -07:00
generate_title name , junction , nil , ! junction . nil?
end
def questions_title ( user )
user_title user , " questions "
end
def answers_title ( user )
user_title user , " answers "
end
def smiles_title ( user )
user_title user , " smiles "
end
def comments_title ( user )
user_title user , " comments "
end
def group_title ( group )
generate_title group . name
end
2014-08-01 02:23:47 -07:00
end