2018-04-12 18:25:19 +00:00
|
|
|
#lang racket/base
|
|
|
|
|
|
|
|
(require racket/list
|
|
|
|
racket/file
|
|
|
|
racket/string
|
|
|
|
"config.rkt"
|
|
|
|
"io.rkt"
|
|
|
|
"messages.rkt")
|
|
|
|
|
|
|
|
(provide (all-defined-out))
|
|
|
|
|
2018-04-12 18:37:01 +00:00
|
|
|
(define (d-hash-ref hash-list key)
|
|
|
|
(display (hash-ref hash-list key)))
|
|
|
|
|
|
|
|
(define (d-vector-ref args key)
|
|
|
|
(display (vector-ref args key)))
|
|
|
|
|
2018-04-13 05:02:48 +00:00
|
|
|
(define (quote-item-in-list lst args)
|
|
|
|
(display
|
|
|
|
(string-append
|
|
|
|
"\""
|
|
|
|
(list-ref lst
|
|
|
|
(string->number args))
|
|
|
|
"\"")))
|
|
|
|
|
2018-04-12 18:25:19 +00:00
|
|
|
(define (make-numbered lst)
|
|
|
|
(map
|
|
|
|
string-append
|
|
|
|
(map
|
|
|
|
number->string
|
|
|
|
(range (length lst)))
|
|
|
|
lst))
|
|
|
|
|
|
|
|
(define (add-spaces)
|
|
|
|
(lambda (lst)
|
|
|
|
(string-append ". " lst)))
|
|
|
|
|
|
|
|
(define (show-list-from-file)
|
|
|
|
(let
|
2018-04-13 05:02:48 +00:00
|
|
|
([todo-list
|
|
|
|
(file->lines path
|
|
|
|
#:mode 'text
|
|
|
|
#:line-mode 'linefeed)])
|
|
|
|
(display
|
|
|
|
(string-join
|
|
|
|
(make-numbered (map (add-spaces) todo-list))
|
|
|
|
"\n"
|
|
|
|
#:after-last "\n"))))
|
2018-04-12 18:25:19 +00:00
|
|
|
|
|
|
|
(define (show-list)
|
|
|
|
(if
|
|
|
|
(and
|
|
|
|
(check-for-folder)
|
|
|
|
(check-for-file))
|
|
|
|
(show-list-from-file)
|
|
|
|
(begin
|
|
|
|
(d-hash-ref messages 'file-not-found)
|
|
|
|
(d-hash-ref messages 'try-init))))
|
|
|
|
|
2018-04-13 05:02:48 +00:00
|
|
|
(define (add-item-to-file args)
|
|
|
|
(let ([args (string-append args "\n")])
|
|
|
|
(display-to-file args
|
|
|
|
path
|
|
|
|
#:mode 'text
|
|
|
|
#:exists 'append)))
|
2018-04-12 18:25:19 +00:00
|
|
|
|
|
|
|
(define (add-item args)
|
|
|
|
(if
|
|
|
|
(and
|
|
|
|
(check-for-folder)
|
|
|
|
(check-for-file))
|
|
|
|
(begin
|
|
|
|
(add-item-to-file (vector-ref args 1))
|
|
|
|
(d-hash-ref messages 'item-added-prefix)
|
|
|
|
(d-vector-ref args 1)
|
|
|
|
(d-hash-ref messages 'item-added-suffix))
|
|
|
|
(begin
|
|
|
|
(d-hash-ref messages 'file-not-found)
|
|
|
|
(d-hash-ref messages 'try-init))))
|
|
|
|
|
2018-04-13 05:02:48 +00:00
|
|
|
(define (remove-item-from-file args)
|
|
|
|
(let ([todo-list
|
|
|
|
(file->lines path
|
|
|
|
#:mode 'text
|
|
|
|
#:line-mode 'linefeed)])
|
|
|
|
(d-hash-ref messages 'item-removed-prefix)
|
|
|
|
(quote-item-in-list todo-list args)
|
|
|
|
(d-hash-ref messages 'item-removed-suffix)
|
|
|
|
(let ([new-list
|
|
|
|
(remove
|
|
|
|
(list-ref
|
|
|
|
todo-list
|
|
|
|
(string->number
|
|
|
|
args))
|
|
|
|
todo-list)])
|
|
|
|
(display-to-file
|
|
|
|
(string-append (string-join new-list "\n") "\n")
|
|
|
|
path
|
|
|
|
#:mode 'text
|
|
|
|
#:exists 'replace))))
|
|
|
|
|
2018-04-12 18:25:19 +00:00
|
|
|
(define (remove-item args)
|
|
|
|
(if
|
|
|
|
(and
|
2018-04-13 05:02:48 +00:00
|
|
|
(number? (string->number (vector-ref args 1)))
|
2018-04-12 18:25:19 +00:00
|
|
|
(check-for-folder)
|
|
|
|
(check-for-file))
|
2018-04-13 05:02:48 +00:00
|
|
|
(remove-item-from-file (vector-ref args 1))
|
2018-04-12 18:25:19 +00:00
|
|
|
(begin
|
|
|
|
(d-hash-ref messages 'file-not-found)
|
|
|
|
(d-hash-ref messages 'try-init))))
|