summaryrefslogtreecommitdiff
path: root/web/biblio-fmt-tbl
blob: 0296e8b6bf307e64367c87ad65bac4fee3c49673 (plain) (blame)
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#!/usr/bin/env ruby
# Take a file as first argument, which is to be the file biblio.csv, containing
# all books read. Then formats this as a table. It sorts the books in
# the order [Ongoing, Completed, Yet to Read], and replaces several values with
# ones more appropriate for viewing pleasure.
# For the final column (index: 11, zero-indexed) we replace the contents with a
# link. So rd/the-progress-of-a-crime becomes
# For column 3 (Part), this is rounded as special logic.
# <a href="https://gabbott.dev/rd/the-progress-of-a-crime>Link</a>

require_relative './biblio-require'



if ARGV[0] == nil then 
  puts "<!-- No argument passed! ma-fmt-tbl Exitting early. -->\n"
  exit
end

# def do_header(h: str): str
# Returns the rows of the table corresponding to the header.
def do_header(h)
  s = "\t<tr class=\"header\">\n"
  values = h.split($delim)

  values.each_with_index do |value, idx|
    next if idx == 0 or idx == 7 or idx == 8 or idx == 9
    s << ("\t\t<th>" + value + "</th>\n")
  end

  s << "\t</tr>\n"
  return s
end

# Make the string look sexy, ooh la la.
def sexify(val)
  # Round integers if they end .00.
  if val.end_with? ".00" then 
    integral = val.to_i
    unless integral == 0
      return integral.to_s
    end
  end

  # Transform strings.
  if $status_transform.has_key? (val)
    return $status_transform[val]
  end
  if $form_transform.has_key? (val)
    return $form_transform[val]
  end
  if $ownership_transform.has_key? (val)
    return $ownership_transform[val]
  end
  if $general_transform.has_key? (val)
    return $general_transform[val]
  end
  return val
end


# The tables, which are set as targets during the look
table=""
table_ongoing=""
table_cmp="" # Just contains completed entries.
table_paused=""
table_drp=""
table_rest=""
table_coll=""

# And the counts, for adding in counts if I want
ctable_ongoing=0
ctable_cmp=0
ctable_paused=0
ctable_drp=0
ctable_rest=0
ctable_coll=0

# And the header, don't forget!
header=""

File.foreach(ARGV[0]).with_index do |line, line_num| 
  next if line == "\n" or line == "\t" or line == "" or line == " " or line == $delim

  # Handle the first line - the header.
  if line_num == 0 then 
    header << do_header(line)
  else
    # We need to figure out whether it is ongoing, completed, or yet to read.
    # To do this, we will check if the corresponding string is in the line.
    if line.include? "completed;" then 
      target = table_cmp 
      ctable_cmp += 1
    elsif line.include? "ongoing;" then 
      target = table_ongoing
      ctable_ongoing += 1
    elsif line.include? "paused;" then 
      target = table_paused
      ctable_paused += 1
    elsif line.include? "dropped;" then 
      target = table_drp
      ctable_drp += 1
    elsif line.include? "collection;" then
      target = table_coll
      ctable_coll += 1
    else
      target = table_rest
      ctable_rest += 1
    end

    target << "\t<tr>\n"
    line.split($delim).each_with_index do |entry, idx|
      # We want to skip: Status, Ownership, Bought, Cost as they just take up
      # space. Here we are skipping by the relevant index.
      next if idx == 0 or idx == 7 or idx == 8 or idx == 9

      entry = entry.delete "\n"
      if idx == 11 and entry != "N/A" then 
        # Review column: transform it to contain a link.
        target << "\t\t<td class=\"biblio-tr\"><a href=\"" \
               << ENV["WEBSITE_URL"] \
               << "/" \
               << entry \
               << "\">Link</a></td>\n" 
      else
        target << "\t\t<td class=\"biblio-tr\">" \
               << sexify(entry) \
               << "</td>\n"
      end
    end
    target << "\t</tr>\n"
  end
end

# Instead of one table, split into <h2>Currently Reading</h2><table></table>, 
# <h2>Completed</h2><table></table> and <h2>Not read or
# reference</h2><table></table>.
table << "<h2>Currently Reading</h2>\n"
table << "<p>There are " << ctable_ongoing.to_s << " entries in this table.</p>\n"
table << "<table class=\"biblio\">\n"
table << header
table << table_ongoing
table << "</table>\n\n"

table << "<h2>Completed</h2>\n"
table << "<p>There are " << ctable_cmp.to_s << " entries in this table.</p>\n"
table << "<table class=\"biblio\">\n"
table << header
table << table_cmp
table << "</table>\n\n"

table << "<h2>Paused</h2>\n"
table << "<p>There are " << ctable_paused.to_s << " entries in this table.</p>\n"
table << "<table class=\"biblio\">\n"
table << header
table << table_paused
table << "</table>\n\n"

table << "<h2>Collections of Works</h2>\n"
table << "<table class=\"biblio\">\n"
table << header
table << table_coll
table << "</table>\n\n"

table << "<h2>Dropped</h2>\n"
table << "<p>There are " << ctable_drp.to_s << " entries in this table.</p>\n"
table << "<table class=\"biblio\">\n"
table << header
table << table_drp
table << "</table>\n\n"

table << "<h2>Not read or reference</h2>\n"
table << "<p>There are " << ctable_rest.to_s << " entries in this table.</p>\n"
table << "<table class=\"biblio\">\n"
table << header
table << table_rest
table << "</table>\n\n"

# Echo the file. 
puts table