mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
19 lines
279 B
Ruby
19 lines
279 B
Ruby
module DocumentAnalysesHelper
|
|
def emotion_color(emotion)
|
|
case emotion.downcase
|
|
when 'sadness'
|
|
'blue'
|
|
when 'fear'
|
|
'grey'
|
|
when 'disgust'
|
|
'green'
|
|
when 'anger'
|
|
'red'
|
|
when 'joy'
|
|
'orange'
|
|
else
|
|
'black'
|
|
end
|
|
end
|
|
end
|