summaryrefslogtreecommitdiff
path: root/app/models/network/graph.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/network/graph.rb')
-rw-r--r--app/models/network/graph.rb26
1 files changed, 14 insertions, 12 deletions
diff --git a/app/models/network/graph.rb b/app/models/network/graph.rb
index c9ecbc910e8..f130bffca14 100644
--- a/app/models/network/graph.rb
+++ b/app/models/network/graph.rb
@@ -2,7 +2,7 @@ require "grit"
module Network
class Graph
- attr_accessor :days, :commits, :ref_cache, :repo
+ attr_reader :days, :commits
def self.max_count
@max_count ||= 650
@@ -13,7 +13,6 @@ module Network
@ref = ref
@commit = commit
@repo = project.repo
- @ref_cache = {}
@commits = collect_commits
@days = index_commits
@@ -24,17 +23,11 @@ module Network
# Get commits from repository
#
def collect_commits
-
- @commits = Grit::Commit.find_all(repo, nil, {date_order: true, max_count: self.class.max_count, skip: to_commit}).dup
-
- # Decorate with app/models/commit.rb
- @commits.map! { |commit| Commit.new(commit) }
+ @commits = Grit::Commit.find_all(@repo, nil, {date_order: true, max_count: self.class.max_count, skip: to_commit}).dup
# Decorate with app/model/network/commit.rb
- @commits.map! { |commit| Network::Commit.new(commit) }
-
- # add refs to each commit
- @commits.each { |commit| commit.add_refs(ref_cache, repo) }
+ refs_cache = build_refs_cache
+ @commits.map! { |commit| Network::Commit.new(commit, refs_cache[commit.id]) }
@commits
end
@@ -78,7 +71,7 @@ module Network
# Skip count that the target commit is displayed in center.
def to_commit
- commits = Grit::Commit.find_all(repo, nil, {date_order: true})
+ commits = Grit::Commit.find_all(@repo, nil, {date_order: true})
commit_index = commits.index do |c|
c.id == @commit.id
end
@@ -280,5 +273,14 @@ module Network
leaves.push(commit)
end
end
+
+ def build_refs_cache
+ refs_cache = {}
+ @repo.refs.each do |ref|
+ refs_cache[ref.commit.id] = [] unless refs_cache.include?(ref.commit.id)
+ refs_cache[ref.commit.id] << ref
+ end
+ refs_cache
+ end
end
end