emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/gnosis 6320d065e8 03/16: dashboard: Remove graph.


From: ELPA Syncer
Subject: [nongnu] elpa/gnosis 6320d065e8 03/16: dashboard: Remove graph.
Date: Sun, 6 Oct 2024 04:00:02 -0400 (EDT)

branch: elpa/gnosis
commit 6320d065e82b9462824895f55b75d8ee9be468e7
Author: Thanos Apollo <public@thanosapollo.org>
Commit: Thanos Apollo <public@thanosapollo.org>

    dashboard: Remove graph.
    
    * Creating & maintaining a graph using text characters is unnecessary.
---
 gnosis-dashboard.el | 57 -----------------------------------------------------
 1 file changed, 57 deletions(-)

diff --git a/gnosis-dashboard.el b/gnosis-dashboard.el
index 23a04f71e1..3b96348899 100644
--- a/gnosis-dashboard.el
+++ b/gnosis-dashboard.el
@@ -143,63 +143,6 @@ Skips days where no note was reviewed."
               do (setq total (+ total entry)))
       (/ total (max (length (remove 0 entries)) 1))))
 
-;; TODO: Add more conds & faces
-(defun gnosis-dashboard--graph-propertize (string num)
-  "Propertize STRING depending on the NUM of reviews."
-  (cond ((= num 0)
-        (propertize string 'face 'shadow))
-       ((> num 0)
-        (propertize string 'face 'font-lock-constant-face))))
-
-(defun gnosis-dashboard--add-padding (str-length)
-  "Add padding for STR-LENGTH."
-  (let ((padding (/ (- (window-width) str-length) 2)))
-    (make-string padding ?\s)))
-
-(defun gnosis-dashboard-reviews-graph (dates &optional )
-  "Insert graph for month DATES.
-
-Optionally, use  when using multiple months."
-  (let ((count 0)
-       (row 0)
-       (start-column (current-column))
-       (end-column nil))
-    (cl-loop for day in dates
-            when (= count 0)
-            do (let ((current-column (current-column)))
-                 (and (< (move-to-column start-column) start-column)
-                      ;; Add spaces to reach start-column.
-                      (insert (make-string (- start-column current-column) 
?\s))))
-            (insert " ")
-            do (end-of-line)
-            (insert (gnosis-dashboard--graph-propertize (format "[%s] " (if (= 
day 0) "-" "x")) day))
-            (cl-incf count)
-            when (= count 7)
-            do
-            (setq end-column (current-column))
-            (setq count 0)
-            (insert " ")
-            (cl-incf row)
-            (end-of-line)
-            (when (and (/= (forward-line 1) 0) (eobp))
-              (insert "\n")
-              (forward-line 0)))
-    (insert (make-string (- end-column (current-column)) ?\s))
-    (insert " ")))
-;; TODO: Refactor this!
-(defun gnosis-dashboard-month-overview (&optional num)
-  "Insert review graph for MONTHS."
-  (gnosis-insert-separator)
-  (let* ((point (point))
-        (month (car (calendar-current-date))))
-    (insert (gnosis-dashboard--add-padding (min (* (max num 1) 50) 
(window-width))))
-    (while (<= month (+ (car (calendar-current-date)) num))
-      ;; (insert (format "%d" month))
-      (gnosis-dashboard-reviews-graph (gnosis-dashboard-month-reviews month))
-      (goto-char point)
-      (end-of-line)
-      (cl-incf month))))
-
 (defun gnosis-dashboard-output-note (id)
   "Output contents for note with ID, formatted for gnosis dashboard."
   (cl-loop for item in (append (gnosis-select '[main options answer tags type] 
'notes `(= id ,id) t)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]