Module: Taskr::Views::HTML
- Includes:
- Controllers
- Defined in:
- lib/taskr/views.rb
Constant Summary collapse
- CONTENT_TYPE =
'text/html'
Instance Method Summary collapse
- #action_form ⇒ Object
- #action_list ⇒ Object
- #action_parameters_form ⇒ Object
- #log_entries_list ⇒ Object
- #new_task ⇒ Object
- #scheduler_status ⇒ Object
- #tasks_list ⇒ Object
- #view_task ⇒ Object
Instance Method Details
#action_form ⇒ Object
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'lib/taskr/views.rb', line 265 def action_form @num ||= 0 p do label 'action_class_name' br select(:name => "action[#{@num}][action_class_name]", :id => "action_class_name_#{@num}", :class => "action_class_name", :onchange => "show_action_parameters(#{@num})") do option(:value => "") @actions.each do |a| a.to_s =~ /Taskr::Actions::([^:]*?)$/ option(:value => $~[1]) {$~[1]} end end end div(:id => "parameters_#{@num}") end |
#action_list ⇒ Object
242 243 244 245 246 247 248 249 |
# File 'lib/taskr/views.rb', line 242 def action_list h1 "Actions" ul do @actions.each do |a| li a end end end |
#action_parameters_form ⇒ Object
251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'lib/taskr/views.rb', line 251 def action_parameters_form @num ||= 0 p {em @action.description} @action.parameters.each do |param| p do label param br input :type => 'text', :name => "action[#{@num}][#{param}]", :size => 50 end end end |
#log_entries_list ⇒ Object
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
# File 'lib/taskr/views.rb', line 287 def log_entries_list h2 "Log" table do @log_entries.each do |entry| case entry.level.downcase.intern when :error bg_color = '#faa' when :warn bg_color = '#ffa' when :info bg_color = '#aaf' when :debug bg_color = '#eee' else bg_color = '#fff; '+entry.level.inspect end tr do td(:style => "vertical-align: top; font-size: 9pt; white-space: nowrap; background: #{bg_color}") do entry. end td(:style => "vertical-align: top; font-size: 9pt; background-color: #{bg_color}; font-size: 9pt; font-family: monospace") do entry.data.gsub(/<\/?(html|body)>/, '').gsub(/\n/, "<br />") end end end end end |
#new_task ⇒ Object
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 |
# File 'lib/taskr/views.rb', line 86 def new_task html_scaffold do script(:type => 'text/javascript') do %{ function show_action_parameters(num) { new Ajax.Updater('parameters_'+num, '#{R(Actions)}', { method: 'get', parameters: { id: $F('action_class_name_'+num), action: 'parameters_form', num: num } }); } } end form :method => 'post', :action => self/"/tasks?format=#{@format}" do h1 "New Task" input :type => 'hidden', :name => '_method', :value => 'post' p do label 'name' br input :type => 'text', :name => 'name', :size => 40 end p do label 'schedule' br select(:name => 'schedule_method') do ['every','at','in','cron'].each do |method| option(:value => method) {method} end end input :type => 'text', :name => 'schedule_when', :size => 30 end p do label 'description/memo' br textarea(:name => 'memo', :cols => '60', :rows => '4'){""} end action_form p do a(:id => 'add_action', :href => '#'){'Add another action'} end script(:type => 'text/javascript') do %{ Event.observe('add_action', 'click', function() { new Ajax.Updater('add_action', '#{R(Actions, :new)}', { method: 'get', parameters: { num: $$('select.action_class_name').size() }, insertion: Insertion.Before }); return false; }) } end (:type => 'submit') {"submit"} end end end |
#scheduler_status ⇒ Object
229 230 231 232 233 234 235 236 237 238 239 240 |
# File 'lib/taskr/views.rb', line 229 def scheduler_status s = Taskr.scheduler h3(:style => "margin-bottom: 8px;") {"Scheduler Status"} strong "Running?" span(:style => 'margin-right: 10px') {s.instance_variable_get(:@stopped) ? "NO" : "Yes"} strong "Precision:" span(:style => 'margin-right: 10px') {"#{s.instance_variable_get(:@precision)}s"} strong "Pending Jobs:" span(:style => 'margin-right: 10px') {s.instance_variable_get(:@pending_jobs).size} strong "Thread Status:" span(:style => 'margin-right: 10px') {s.instance_variable_get(:@scheduler_thread).status} end |
#tasks_list ⇒ Object
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 |
# File 'lib/taskr/views.rb', line 40 def tasks_list html_scaffold do h1 {"Tasks"} p{a(:href => R(Taskr::Controllers::Tasks, 'new')) {"Schedule New Task"}} table do thead do tr do th "Name" th "Schedule" th "Last Triggered" th "Job ID" th "Created On" th "Created By" end end tbody do @tasks.each do |t| tr_css = [] tr_css << "error" if t.last_triggered_error tr_css << "expired" if t.next_trigger_time != :unknown && t.next_trigger_time < Time.now tr(:class => tr_css.join(" ")) do td {a(:href => R(t)) {strong{t.name}}} td "#{t.schedule_method} #{t.schedule_when}" td do if t.last_triggered "#{distance_of_time_in_words(t.last_triggered, Time.now, true)} ago" else em "Not yet triggered" end end td(:class => "job-id") {t.scheduler_job_id} td t.created_on td t.created_by end end end end br div {scheduler_status} end end |
#view_task ⇒ Object
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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
# File 'lib/taskr/views.rb', line 153 def view_task html_scaffold do form(:method => 'delete', :style => 'display: inline', :action => R(@task)) do (:type => 'submit', :value => 'delete', :onclick => 'return confirm("Are you sure you want to unschedule and delete this task?")') {"Delete"} end form(:method => 'put', :style => 'display: inline', :action => R(@task, 'run')) do (:type => 'submit', :value => 'run') {"Run Now!"} end br a(:href => R(Tasks, :list)) {"Back to Task List"} h1 "Task #{@task.id}" table do tr do th "Name:" td @task.name end tr do th "Schedule:" td "#{@task.schedule_method} #{@task.schedule_when}" end tr do th "Description/Memo:" td "#{@task.memo}" end tr do th "Job ID:" td @task.scheduler_job_id end tr do th "Triggered:" td do if @task.last_triggered span "#{distance_of_time_in_words(@task.last_triggered, Time.now, true)} ago" span(:style => 'font-size: 8pt; color: #bbb'){"(#{@task.last_triggered})"} else em "Not yet triggered" end end end if @task.last_triggered_error th "Error:" td(:style => 'color: #e00;') do strong "#{@task.last_triggered_error[:type]}" br pre @task.last_triggered_error[:message] end end tr do th "Actions:" td do if @task.task_actions.length > 1 ol(:style => 'padding-left: 20px') do @task.task_actions.each do |ta| html_task_action_li(ta) end end else html_task_action_li(@task.task_actions.first) end end end tr do th "Created By:" td @task.created_by end tr do th "Created On:" td @task.created_on end end iframe(:src => R(LogEntries, :list, :task_id => @task.id), :style => 'width: 100%; margin-top: 20px;') end end |