todo-jsonl 0.1.18 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/todo.rb +35 -15
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f947add722dd8daa2e1c9e95b28e88ca906adb71c27af00ef251702c75c868e8
|
4
|
+
data.tar.gz: ec96ca95d021e7eb4ed2ebb2e4738d08a19291e54c366873843b5c6a66108347
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bb56460d8dd36f2643e13f0c5d4c969c4a3ebdfb887da54dabf07771ad9fbf80cbd5c115e8b058cc837aaa690ecb54850183e25d6609d4387b6335bffc0e5df
|
7
|
+
data.tar.gz: 8abecd75607bc3208ddc5a73bc13cf7a1f3921a9c9275e0d067ee9c0b12c22cc7280701943c0f11d417daa1cf3cbcb3541704c2c5ec9c99ea6ada8ffe9372642
|
data/bin/todo.rb
CHANGED
@@ -115,9 +115,14 @@ class Todo
|
|
115
115
|
raise action + ' command requires exactly one parameter' if args.length != 1
|
116
116
|
show(args.first.to_i)
|
117
117
|
when 'help'
|
118
|
+
raise action + ' command has no parameters' if args.length > 0
|
118
119
|
puts usage
|
119
120
|
when 'repl'
|
121
|
+
raise action + ' command has no parameters' if args.length > 0
|
120
122
|
start_repl
|
123
|
+
when 'cleanup'
|
124
|
+
raise action + ' command requires at least one parameter' if args.nil? || args.empty?
|
125
|
+
cleanup(args)
|
121
126
|
else
|
122
127
|
list(nil, arguments)
|
123
128
|
end
|
@@ -150,6 +155,7 @@ class Todo
|
|
150
155
|
* list <regex> [regex...] list tasks (only active tasks by default)
|
151
156
|
* show <tasknumber> show all task details
|
152
157
|
* repl enter read-eval-print loop mode
|
158
|
+
* cleanup <regex> [regex...] cleanup completed tasks by regexp
|
153
159
|
* help this help screen
|
154
160
|
|
155
161
|
With list command the following pre-defined regex patterns can be also used:
|
@@ -165,8 +171,8 @@ class Todo
|
|
165
171
|
end
|
166
172
|
|
167
173
|
def setup
|
168
|
-
@today =
|
169
|
-
next_7_days = (0..6).map do |day|
|
174
|
+
@today = Date.today
|
175
|
+
next_7_days = (0..6).map do |day| @today + day end
|
170
176
|
@due_date_days = next_7_days.map do |day| day.strftime('%A').downcase end
|
171
177
|
due_dates_for_queries = next_7_days.map do |day| day.strftime(DATE_FORMAT) end
|
172
178
|
|
@@ -281,7 +287,7 @@ class Todo
|
|
281
287
|
list(tasks)
|
282
288
|
end
|
283
289
|
|
284
|
-
def due_date(item, date = ''
|
290
|
+
def due_date(item, date = '')
|
285
291
|
tasks = load_tasks(item)
|
286
292
|
tasks[item][:due] = convert_due_date(date)
|
287
293
|
tasks[item].delete(:due) if tasks[item][:due].nil?
|
@@ -291,18 +297,10 @@ class Todo
|
|
291
297
|
end
|
292
298
|
|
293
299
|
def list(tasks = nil, patterns = nil)
|
294
|
-
items = {}
|
295
300
|
tasks = tasks || load_tasks
|
296
301
|
task_indent = [tasks.keys.max.to_s.size, 4].max
|
297
302
|
patterns = patterns.nil? || patterns.empty? ? [@queries[':active']] : patterns
|
298
|
-
|
299
|
-
normalized_task = "state=#{task[:state]} due=#{task[:due]} #{task[:title]}"
|
300
|
-
match = true
|
301
|
-
patterns.each do |pattern|
|
302
|
-
match = false unless /#{@queries[pattern] || pattern}/ix.match(normalized_task)
|
303
|
-
end
|
304
|
-
items[num] = task if match
|
305
|
-
end
|
303
|
+
items = filter_tasks(tasks, patterns)
|
306
304
|
items = items.sort_by do |num, task|
|
307
305
|
[task[:priority] && task[:state] != 'done' ? 0 : 1, ORDER[task[:state] || 'default'], task[:due] || 'n/a', num]
|
308
306
|
end
|
@@ -316,7 +314,7 @@ class Todo
|
|
316
314
|
priority_flag = task[:priority] ? colorize(PRIORITY_FLAG, :red) : ' '
|
317
315
|
due_date = ''
|
318
316
|
if task[:due] && state != 'done'
|
319
|
-
date_diff = (Date.
|
317
|
+
date_diff = (Date.strptime(task[:due], DATE_FORMAT) - @today).to_i
|
320
318
|
if date_diff < 0
|
321
319
|
due_date = colorize("(#{date_diff.abs}d overdue)", :red)
|
322
320
|
elsif date_diff == 0 || date_diff == 1
|
@@ -369,6 +367,28 @@ class Todo
|
|
369
367
|
end
|
370
368
|
end
|
371
369
|
|
370
|
+
def cleanup(patterns)
|
371
|
+
tasks = load_tasks
|
372
|
+
patterns = [@queries[':done']] + patterns.to_a
|
373
|
+
items = filter_tasks(tasks, patterns)
|
374
|
+
items.keys.each do |num| tasks.delete(num) end
|
375
|
+
write_tasks(tasks)
|
376
|
+
puts "Deleted #{items.size} todo(s)"
|
377
|
+
end
|
378
|
+
|
379
|
+
def filter_tasks(tasks, patterns)
|
380
|
+
items = {}
|
381
|
+
tasks.each do |num, task|
|
382
|
+
normalized_task = "state=#{task[:state]} due=#{task[:due]} #{task[:title]}"
|
383
|
+
match = true
|
384
|
+
patterns.each do |pattern|
|
385
|
+
match = false unless /#{@queries[pattern] || pattern}/ix.match(normalized_task)
|
386
|
+
end
|
387
|
+
items[num] = task if match
|
388
|
+
end
|
389
|
+
return items
|
390
|
+
end
|
391
|
+
|
372
392
|
def colorize(text, color)
|
373
393
|
"\e[#{COLOR_CODES[color]}m#{text}\e[0m"
|
374
394
|
end
|
@@ -379,9 +399,9 @@ class Todo
|
|
379
399
|
DUE_DATE_DAYS_SIMPLE.index(date.to_s.downcase) ||
|
380
400
|
@due_date_days.map do |day| day[0..2] end.index(date.to_s.downcase)
|
381
401
|
if day_index
|
382
|
-
due = (@today
|
402
|
+
due = (@today + day_index).strftime(DATE_FORMAT)
|
383
403
|
else
|
384
|
-
due = date.nil? || date.empty? ? nil : Date.
|
404
|
+
due = date.nil? || date.empty? ? nil : Date.strptime(date, DATE_FORMAT).strftime(DATE_FORMAT)
|
385
405
|
end
|
386
406
|
return due
|
387
407
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: todo-jsonl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.24
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabor Bata
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|