diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 0000000..a2ce228 --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,12 @@ + + + + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:5432/postgres + $ProjectFileDir$ + + + \ No newline at end of file diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index fc2ac7b..f3f3189 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -108,3 +108,20 @@ section .meta { padding-top: 10px; padding-bottom: 10px; } + +.progress-container { + width: 50%; + display: inline-block; + background-color: tomato; + height: 10px; + position: relative; +} + +.progress-bar { + background-color: #63f0fd; + height: 10px; + display: inline-block; + position: absolute; + top: 0; + left: 0; +} diff --git a/app/views/instance/_list.html.erb b/app/views/instance/_list.html.erb index aedb3c9..c3c569d 100644 --- a/app/views/instance/_list.html.erb +++ b/app/views/instance/_list.html.erb @@ -1,6 +1,6 @@
<% APP_DATA[instance.zone.to_sym][:nms].each do |nm| %> - <% is_popped = instance.pops.any? { |pop| pop.name == nm[:name].parameterize } %> + <% is_popped = instance.pops.filter { |pop| (Time.current - 120.minutes) <= pop.created_at }.any? { |pop| pop.name == nm[:name].parameterize } %>
" alt="<%= nm[:element] %>" width="30" /> @@ -23,10 +23,18 @@ <% end %> LV<%= nm[:spawned_by][:level].to_s.rjust(2, "0") %> -
-
+
+ <% if is_popped %> + <% pop = instance.pops.find { |pop| pop.name == nm[:name].parameterize } %> + <% mins = ActiveSupport::Duration.build(Time.current - pop.created_at) %> + ยป <%= (120.minutes - mins).in_minutes.floor %>m + + + + <% end %> +
<% if is_popped %>