This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from omu/develop
Merge develop into master
- Loading branch information
Showing
30 changed files
with
285 additions
and
11 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,9 @@ | ||
# frozen_string_literal: true | ||
|
||
module Studies | ||
class ArticlesController < ApplicationController | ||
include Pagy::Backend | ||
|
||
def index; end | ||
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,7 @@ | ||
# frozen_string_literal: true | ||
|
||
module Studies | ||
class CertificationsController < ApplicationController | ||
def index; end | ||
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,7 @@ | ||
# frozen_string_literal: true | ||
|
||
module Studies | ||
class DashboardController < ApplicationController | ||
def index; end | ||
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,7 @@ | ||
# frozen_string_literal: true | ||
|
||
module Studies | ||
class ProjectsController < ApplicationController | ||
def index; end | ||
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,19 @@ | ||
# frozen_string_literal: true | ||
|
||
module ApaHelper | ||
def apa_citation(article) | ||
title = article.title.capitalize_all | ||
|
||
"#{authors_in_apa_format(article)}. (#{article.year}). #{title}. #{article.journal}, \ | ||
#{article.volume}(#{article.issue}), #{article.first_page}-#{article.last_page}" | ||
end | ||
|
||
def authors_in_apa_format(article) | ||
article.authors.split(',').map do |author| | ||
names = author.split | ||
last_name = names.shift.capitalize_all | ||
first_name = names.map(&:first).join('. ') | ||
"#{last_name}, #{first_name}" | ||
end.join(' & ') | ||
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
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
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,100 @@ | ||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<div class="card"> | ||
<div class="card-body p-3 d-flex align-items-center"> | ||
<i class="fa fa-cogs bg-primary p-3 font-2xl mr-3"></i> | ||
<div> | ||
<div class="text-value-sm text-primary"><%= Article.unique_count %></div> | ||
<div class="text-muted text-uppercase font-weight-bold small"><%= t('.article') %></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<div class="card"> | ||
<div class="card-header"> | ||
<i class="fa fa-align-justify"></i> <%= t('.top_publishers') %> | ||
</div> | ||
<div class="card-body"> | ||
<ul class="list-group"> | ||
<% User.most_publishing.each do |user| %> | ||
<li class="list-group-item"><%= user.identities.first.try(:first_name) %></li> | ||
<% end %> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-sm-6"> | ||
<div class="card"> | ||
<div class="card-header"> | ||
<i class="fa fa-align-justify"></i> <%= t('.recently_added') %> | ||
</div> | ||
<div class="card-body"> | ||
<ul class="list-group"> | ||
<% Article.most_recent.each do |article| %> | ||
<small><li class="list-group-item"><%= apa_citation(article) %></li></small> | ||
<% end %> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-sm-12"> | ||
<div class="card"> | ||
<div class='card-header'> | ||
<%= t('.number_of_articles_by_years') %> | ||
</div> | ||
<div class="card-body"> | ||
<%= line_chart Article.active.group(:year).count %> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="col-sm-6"> | ||
<div class="card"> | ||
<div class='card-header'> | ||
<%= t('.publications_by_index_types') %> | ||
</div> | ||
<div class="card-body"> | ||
<%= column_chart Article.active.group(:index).count %> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-sm-6"> | ||
<div class="card"> | ||
<div class='card-header'> | ||
<%= t('.publications_by_publication_types') %> | ||
</div> | ||
<div class="card-body"> | ||
<%= column_chart Article.active.group(:type).count %> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-sm-6"> | ||
<div class="card"> | ||
<div class='card-header'> | ||
<%= t('.publications_by_language') %> | ||
</div> | ||
<div class="card-body"> | ||
<%= pie_chart Article.active.group(:language_of_publication).count %> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-sm-6"> | ||
<div class="card"> | ||
<div class='card-header'> | ||
<%= t('.publications_by_number_of_authors') %> | ||
</div> | ||
<div class="card-body"> | ||
<%= bar_chart Article.active.group(:number_of_authors).count %> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Empty file.
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,19 @@ | ||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<nav class="nav"> | ||
<%= link_to studies_articles_path, class: 'nav-link' do %> | ||
<%= t('.articles') %> | ||
<% end %> | ||
<%= link_to studies_projects_path, class: 'nav-link' do %> | ||
<%= t('.projects') %> | ||
<% end %> | ||
<%= link_to studies_certifications_path, class: 'nav-link' do %> | ||
<%= t('.certifications') %> | ||
<% end %> | ||
</nav> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Empty file.
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,17 @@ | ||
en: | ||
studies: | ||
dashboard: | ||
index: | ||
articles: Articles | ||
projects: Projects | ||
certifications: Certifications | ||
articles: | ||
index: | ||
article: Article | ||
top_publishers: Top Publishing Academics | ||
recently_added: Recently Added Articles | ||
number_of_articles_by_years: Number of Articles by Years | ||
publications_by_index_types: Publications by Index Types | ||
publications_by_publication_types: Publications by Publication Types | ||
publications_by_language: Publications by Publication Language | ||
publications_by_number_of_authors: Publications by Number of Authors |
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,17 @@ | ||
tr: | ||
studies: | ||
dashboard: | ||
index: | ||
articles: Makaleler | ||
projects: Projeler | ||
certifications: Sertifikalar | ||
articles: | ||
index: | ||
article: Makale | ||
top_publishers: En Çok Makalesi Olanlar | ||
recently_added: En Son Eklenen Makaleler | ||
number_of_articles_by_years: Yıllara Göre Makale Sayısı | ||
publications_by_index_types: Index Türüne Göre Makaleler | ||
publications_by_publication_types: Yayın Türüne Göre Makaleler | ||
publications_by_language: Yayın Dili Göre Makaleler | ||
publications_by_number_of_authors: Yazar Sayısına Göre Makaleler |
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.