-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
324 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
class ApplicationDecorator < Draper::Decorator | ||
# Define methods for all decorated objects. | ||
# Helpers are accessed through `helpers` (aka `h`). For example: | ||
# | ||
# def percent_amount | ||
# h.number_to_percentage object.amount, precision: 2 | ||
# end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
class TweetDecorator < Draper::Decorator | ||
delegate_all | ||
|
||
def combined_chart | ||
h.area_chart combined_metrics_series, height: "20vh",library: chart_options | ||
end | ||
|
||
def likes_chart | ||
h.line_chart( | ||
likes_metric[:data], | ||
min: min_y(likes_metric), | ||
max: max_y(likes_metric), | ||
height: "70vh", | ||
library: single_metric_chart_options("Likes") | ||
) | ||
end | ||
|
||
def replies_chart | ||
h.line_chart( | ||
replies_metric[:data], | ||
min: min_y(replies_metric), | ||
max: max_y(replies_metric), | ||
height: "70vh", | ||
library: single_metric_chart_options("Replies") | ||
) | ||
end | ||
|
||
def reposts_chart | ||
h.line_chart( | ||
reposts_metric[:data], | ||
min: min_y(reposts_metric), | ||
max: max_y(reposts_metric), | ||
height: "70vh", | ||
library: single_metric_chart_options("Reposts") | ||
) | ||
end | ||
|
||
def bookmarks_chart | ||
h.line_chart( | ||
bookmarks_metric[:data], | ||
min: min_y(bookmarks_metric), | ||
max: max_y(bookmarks_metric), | ||
height: "70vh", | ||
library: single_metric_chart_options("Bookmarks") | ||
) | ||
end | ||
|
||
def views_chart | ||
h.line_chart( | ||
views_metric[:data], | ||
min: min_y(views_metric), | ||
max: max_y(views_metric), | ||
height: "70vh", | ||
library: single_metric_chart_options("Views") | ||
) | ||
end | ||
|
||
private | ||
|
||
def min_y(metric) | ||
metric[:data].min_by { |k, v| k.to_i }&.last | ||
end | ||
|
||
def max_y(metric) | ||
metric[:data].max_by { |k, v| k.to_i }&.last | ||
end | ||
|
||
def single_metric_chart_options(title) | ||
chart_options.merge( | ||
yAxis: { | ||
title: { | ||
text: title | ||
} | ||
} | ||
) | ||
end | ||
|
||
def chart_options | ||
{ | ||
chart: { | ||
zoomType: "xy" | ||
}, | ||
resetZoomButton: { | ||
theme: { | ||
display: "flex" | ||
} | ||
} | ||
} | ||
end | ||
|
||
def combined_metrics_series | ||
[ | ||
likes_metric, | ||
replies_metric, | ||
reposts_metric, | ||
bookmarks_metric, | ||
views_metric | ||
] | ||
end | ||
|
||
def likes_metric | ||
@likes_metric ||= {name: "Likes", data: object.tweet_metrics.group_by_minute(:created_at).maximum(:likes)} | ||
end | ||
|
||
def replies_metric | ||
@replies_metric ||= {name: "Replies", data: object.tweet_metrics.group_by_minute(:created_at).maximum(:replies)} | ||
end | ||
|
||
def reposts_metric | ||
@reposts_metric ||= {name: "Reposts", data: object.tweet_metrics.group_by_minute(:created_at).maximum(:reposts)} | ||
end | ||
|
||
def bookmarks_metric | ||
@bookmarks_metric ||= {name: "Bookmarks", data: object.tweet_metrics.group_by_minute(:created_at).maximum(:bookmarks)} | ||
end | ||
|
||
def views_metric | ||
@views_metric ||= {name: "Views", data: object.tweet_metrics.group_by_minute(:created_at).maximum(:views)} | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// Entry point for the build script in your package.json | ||
import "@hotwired/turbo-rails" | ||
import "./controllers" | ||
import "chartkick/highcharts" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# NOTE: only doing this in development as some production environments (Heroku) | ||
# NOTE: are sensitive to local FS writes, and besides -- it's just not proper | ||
# NOTE: to have a dev-mode tool do its thing in production. | ||
if Rails.env.development? | ||
require 'annotate' | ||
task :set_annotation_options do | ||
# You can override any of these by setting an environment variable of the | ||
# same name. | ||
Annotate.set_defaults( | ||
'active_admin' => 'false', | ||
'additional_file_patterns' => [], | ||
'routes' => 'false', | ||
'models' => 'true', | ||
'position_in_routes' => 'before', | ||
'position_in_class' => 'before', | ||
'position_in_test' => 'before', | ||
'position_in_fixture' => 'before', | ||
'position_in_factory' => 'before', | ||
'position_in_serializer' => 'before', | ||
'show_foreign_keys' => 'true', | ||
'show_complete_foreign_keys' => 'false', | ||
'show_indexes' => 'true', | ||
'simple_indexes' => 'false', | ||
'model_dir' => 'app/models', | ||
'root_dir' => '', | ||
'include_version' => 'false', | ||
'require' => '', | ||
'exclude_tests' => 'false', | ||
'exclude_fixtures' => 'false', | ||
'exclude_factories' => 'false', | ||
'exclude_serializers' => 'false', | ||
'exclude_scaffolds' => 'true', | ||
'exclude_controllers' => 'true', | ||
'exclude_helpers' => 'true', | ||
'exclude_sti_subclasses' => 'false', | ||
'ignore_model_sub_dir' => 'false', | ||
'ignore_columns' => nil, | ||
'ignore_routes' => nil, | ||
'ignore_unknown_models' => 'false', | ||
'hide_limit_column_types' => 'integer,bigint,boolean', | ||
'hide_default_column_types' => 'json,jsonb,hstore', | ||
'skip_on_db_migrate' => 'false', | ||
'format_bare' => 'true', | ||
'format_rdoc' => 'false', | ||
'format_yard' => 'false', | ||
'format_markdown' => 'false', | ||
'sort' => 'false', | ||
'force' => 'false', | ||
'frozen' => 'false', | ||
'classified_sort' => 'true', | ||
'trace' => 'false', | ||
'wrapper_open' => nil, | ||
'wrapper_close' => nil, | ||
'with_comment' => 'true' | ||
) | ||
end | ||
|
||
Annotate.load_tasks | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.