Module: Taskr::Views::HTML

Includes:
Controllers
Defined in:
lib/taskr/views.rb

Constant Summary collapse

CONTENT_TYPE =
'text/html'

Instance Method Summary collapse

Instance Method Details

#action_formObject



257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# File 'lib/taskr/views.rb', line 257

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_listObject



234
235
236
237
238
239
240
241
# File 'lib/taskr/views.rb', line 234

def action_list
  h1 "Actions"
  ul do
    @actions.each do |a|
      li a
    end
  end
end

#action_parameters_formObject



243
244
245
246
247
248
249
250
251
252
253
254
255
# File 'lib/taskr/views.rb', line 243

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

#new_taskObject



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
# File 'lib/taskr/views.rb', line 93

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
      
      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
      
      button(:type => 'submit') {"submit"}
    end
  end
end

#scheduler_statusObject



221
222
223
224
225
226
227
228
229
230
231
232
# File 'lib/taskr/views.rb', line 221

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_listObject



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
# File 'lib/taskr/views.rb', line 47

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_taskObject



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
# File 'lib/taskr/views.rb', line 154

def view_task
  html_scaffold do
    form(:method => 'delete', :style => 'display: inline') do
      button(:type => 'submit', :value => 'delete') {"Delete"}
    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 "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
  end
end