forked from drwl/annotaterb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_component.rb
More file actions
149 lines (130 loc) · 3.79 KB
/
index_component.rb
File metadata and controls
149 lines (130 loc) · 3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# frozen_string_literal: true
module AnnotateRb
module ModelAnnotator
module IndexAnnotation
class IndexComponent < Components::Base
attr_reader :index, :max_size, :options
def initialize(index, max_size, options)
@index = index
@max_size = max_size
@options = options
end
def to_default
unique_info = index.unique ? " UNIQUE" : ""
nulls_not_distinct_info = if index.try(:nulls_not_distinct)
" NULLS NOT DISTINCT"
else
""
end
value = index.try(:where).try(:to_s)
where_info = if value.present?
" WHERE #{value}"
else
""
end
value = index.try(:using).try(:to_sym)
using_info = if value.present? && value != :btree
" USING #{value}"
else
""
end
include_info = ""
if options[:show_indexes_include]
value = index.try(:include)
include_info = if value.present? && value.any?
" INCLUDE (#{value.join(",")})"
else
""
end
end
comment_info = ""
if options[:show_indexes_comments]
value = index.try(:comment).try(:to_s)
comment_info = if value.present?
" COMMENT #{value}"
else
""
end
end
# standard:disable Lint/FormatParameterMismatch
sprintf(
"# %-#{max_size}.#{max_size}s %s%s%s%s%s%s%s",
index.name,
"(#{columns_info.join(",")})",
include_info,
unique_info,
nulls_not_distinct_info,
where_info,
using_info,
comment_info
).rstrip
# standard:enable Lint/FormatParameterMismatch
end
def to_markdown
unique_info = index.unique ? " _unique_" : ""
nulls_not_distinct_info = if index.try(:nulls_not_distinct)
" _nulls_not_distinct_"
else
""
end
value = index.try(:where).try(:to_s)
where_info = if value.present?
" _where_ #{value}"
else
""
end
value = index.try(:using).try(:to_sym)
using_info = if value.present? && value != :btree
" _using_ #{value}"
else
""
end
include_info = ""
if options[:show_indexes_include]
value = index.try(:include)
include_info = if value.present? && value.any?
" _include_ (#{value.join(",")})"
else
""
end
end
comment_info = ""
if options[:show_indexes_comments]
value = index.try(:comment).try(:to_s)
comment_info = if value.present?
" _comment_ #{value}"
else
""
end
end
details = sprintf(
"%s%s%s%s%s%s",
include_info,
unique_info,
nulls_not_distinct_info,
where_info,
using_info,
comment_info
).strip
details = " (#{details})" unless details.blank?
sprintf(
"# * `%s`%s:\n# * **`%s`**",
index.name,
details,
columns_info.join("`**\n# * **`")
)
end
private
def columns_info
Array(index.columns).map do |col|
if index.try(:orders) && index.orders[col.to_s]
"#{col} #{index.orders[col.to_s].upcase}"
else
col.to_s.gsub("\r", '\r').gsub("\n", '\n')
end
end
end
end
end
end
end