2021-11-29 22:00:45 +01:00
|
|
|
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
;;
|
2022-09-20 23:23:22 +02:00
|
|
|
;; Copyright (c) KALEIDOS INC
|
2021-11-29 22:00:45 +01:00
|
|
|
|
|
|
|
(ns debug
|
|
|
|
(:require
|
|
|
|
[app.common.data :as d]
|
2022-04-04 09:26:05 +02:00
|
|
|
[app.common.logging :as l]
|
2022-11-30 11:25:54 +01:00
|
|
|
[app.common.math :as mth]
|
2021-12-30 11:19:46 +01:00
|
|
|
[app.common.transit :as t]
|
2022-06-23 17:43:43 +02:00
|
|
|
[app.common.types.file :as ctf]
|
2021-12-21 12:32:04 +01:00
|
|
|
[app.common.uuid :as uuid]
|
2022-03-25 12:18:33 +01:00
|
|
|
[app.main.data.dashboard.shortcuts]
|
2022-03-25 11:53:50 +01:00
|
|
|
[app.main.data.viewer.shortcuts]
|
2022-01-21 13:45:17 +01:00
|
|
|
[app.main.data.workspace :as dw]
|
2022-02-07 12:37:54 +01:00
|
|
|
[app.main.data.workspace.changes :as dwc]
|
2022-03-25 11:53:50 +01:00
|
|
|
[app.main.data.workspace.path.shortcuts]
|
|
|
|
[app.main.data.workspace.shortcuts]
|
2021-11-29 22:00:45 +01:00
|
|
|
[app.main.store :as st]
|
2022-04-01 11:21:50 +02:00
|
|
|
[app.util.dom :as dom]
|
2021-11-29 22:00:45 +01:00
|
|
|
[app.util.object :as obj]
|
|
|
|
[app.util.timers :as timers]
|
|
|
|
[beicon.core :as rx]
|
|
|
|
[cljs.pprint :refer [pprint]]
|
|
|
|
[cuerdas.core :as str]
|
2021-12-30 11:19:46 +01:00
|
|
|
[potok.core :as ptk]
|
2022-03-25 12:18:33 +01:00
|
|
|
[promesa.core :as p]))
|
2021-11-29 22:00:45 +01:00
|
|
|
|
2022-04-04 09:26:05 +02:00
|
|
|
(defn ^:export set-logging
|
|
|
|
([level]
|
|
|
|
(l/set-level! :app (keyword level)))
|
|
|
|
([ns level]
|
|
|
|
(l/set-level! (keyword ns) (keyword level))))
|
|
|
|
|
2021-12-21 12:32:04 +01:00
|
|
|
(def debug-options
|
|
|
|
#{;; Displays the bounding box for the shapes
|
|
|
|
:bounding-boxes
|
|
|
|
|
|
|
|
;; Displays an overlay over the groups
|
|
|
|
:group
|
|
|
|
|
|
|
|
;; Displays in the console log the events through the application
|
|
|
|
:events
|
|
|
|
|
2022-03-09 12:55:21 +01:00
|
|
|
;; Display the boxes that represent the rotation and resize handlers
|
|
|
|
:handlers
|
2021-12-21 12:32:04 +01:00
|
|
|
|
|
|
|
;; Displays the center of a selection
|
|
|
|
:selection-center
|
|
|
|
|
|
|
|
;; When active the single selection will not take into account previous transformations
|
|
|
|
;; this is useful to debug transforms
|
|
|
|
:simple-selection
|
|
|
|
|
|
|
|
;; When active the thumbnails will be displayed with a sepia filter
|
|
|
|
:thumbnails
|
2022-01-13 18:24:55 +01:00
|
|
|
|
|
|
|
;; When active we can check in the browser the export values
|
|
|
|
:show-export-metadata
|
2022-03-24 16:56:30 +01:00
|
|
|
|
|
|
|
;; Show text fragments outlines
|
|
|
|
:text-outline
|
2022-05-09 12:35:34 +02:00
|
|
|
|
|
|
|
;; Disable thumbnail cache
|
2022-05-13 16:02:40 +02:00
|
|
|
:disable-thumbnail-cache
|
2022-05-24 22:44:44 +02:00
|
|
|
|
|
|
|
;; Disable frame thumbnails
|
|
|
|
:disable-frame-thumbnails
|
2022-10-14 14:44:10 +02:00
|
|
|
|
|
|
|
;; Enable a widget to show the auto-layout drop-zones
|
|
|
|
:layout-drop-zones
|
2022-11-04 14:56:51 +01:00
|
|
|
|
2022-11-07 17:26:28 +01:00
|
|
|
;; Display the layout lines
|
|
|
|
:layout-lines
|
|
|
|
|
2022-11-24 12:16:59 +01:00
|
|
|
;; Display the bounds for the hug content adjust
|
|
|
|
:layout-content-bounds
|
|
|
|
|
2022-11-04 14:56:51 +01:00
|
|
|
;; Makes the pixel grid red so its more visibile
|
|
|
|
:pixel-grid
|
2022-11-23 13:03:37 +01:00
|
|
|
|
|
|
|
;; Show the bounds relative to the parent
|
|
|
|
:parent-bounds
|
2022-12-01 16:13:21 +01:00
|
|
|
|
|
|
|
;; Show html text
|
|
|
|
:html-text
|
2021-12-21 12:32:04 +01:00
|
|
|
})
|
2021-11-29 22:00:45 +01:00
|
|
|
|
|
|
|
;; These events are excluded when we activate the :events flag
|
|
|
|
(def debug-exclude-events
|
|
|
|
#{:app.main.data.workspace.notifications/handle-pointer-update
|
2022-12-02 12:17:32 +01:00
|
|
|
:app.main.data.workspace.notifications/handle-pointer-send
|
|
|
|
:app.main.data.workspace.persistence/update-persistence-status
|
|
|
|
:app.main.data.workspace.changes/update-indices
|
|
|
|
:app.main.data.websocket/send-message
|
2021-11-29 22:00:45 +01:00
|
|
|
:app.main.data.workspace.selection/change-hover-state})
|
|
|
|
|
2022-10-10 11:51:52 +02:00
|
|
|
(defonce ^:dynamic *debug* (atom #{#_:events}))
|
2021-11-29 22:00:45 +01:00
|
|
|
|
|
|
|
(defn debug-all! [] (reset! *debug* debug-options))
|
|
|
|
(defn debug-none! [] (reset! *debug* #{}))
|
|
|
|
(defn debug! [option] (swap! *debug* conj option))
|
|
|
|
(defn -debug! [option] (swap! *debug* disj option))
|
|
|
|
|
|
|
|
(defn ^:export ^boolean debug?
|
|
|
|
[option]
|
|
|
|
(if *assert*
|
|
|
|
(boolean (@*debug* option))
|
|
|
|
false))
|
|
|
|
|
|
|
|
(defn ^:export toggle-debug [name] (let [option (keyword name)]
|
|
|
|
(if (debug? option)
|
|
|
|
(-debug! option)
|
|
|
|
(debug! option))))
|
|
|
|
(defn ^:export debug-all [] (debug-all!))
|
|
|
|
(defn ^:export debug-none [] (debug-none!))
|
|
|
|
|
|
|
|
(defn ^:export tap
|
|
|
|
"Transducer function that can execute a side-effect `effect-fn` per input"
|
|
|
|
[effect-fn]
|
|
|
|
(fn [rf]
|
|
|
|
(fn
|
|
|
|
([] (rf))
|
|
|
|
([result] (rf result))
|
|
|
|
([result input]
|
|
|
|
(effect-fn input)
|
|
|
|
(rf result input)))))
|
|
|
|
|
2022-11-30 11:25:54 +01:00
|
|
|
(defn prettify
|
|
|
|
"Prepare x fror cleaner output when logged."
|
|
|
|
[x]
|
|
|
|
(cond
|
|
|
|
(map? x) (d/mapm #(prettify %2) x)
|
|
|
|
(vector? x) (mapv prettify x)
|
|
|
|
(seq? x) (map prettify x)
|
|
|
|
(set? x) (into #{} (map prettify x))
|
|
|
|
(number? x) (mth/precision x 4)
|
|
|
|
(uuid? x) (str "#uuid " x)
|
|
|
|
:else x))
|
|
|
|
|
2021-11-29 22:00:45 +01:00
|
|
|
(defn ^:export logjs
|
|
|
|
([str] (tap (partial logjs str)))
|
|
|
|
([str val]
|
2022-11-30 11:25:54 +01:00
|
|
|
(js/console.log str (clj->js (prettify val)))
|
2021-11-29 22:00:45 +01:00
|
|
|
val))
|
|
|
|
|
|
|
|
(when (exists? js/window)
|
|
|
|
(set! (.-dbg ^js js/window) clj->js)
|
|
|
|
(set! (.-pp ^js js/window) pprint))
|
|
|
|
|
|
|
|
(defonce widget-style "
|
|
|
|
background: black;
|
|
|
|
bottom: 10px;
|
|
|
|
color: white;
|
|
|
|
height: 20px;
|
|
|
|
padding-left: 8px;
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
width: 40px;
|
|
|
|
z-index: 99999;
|
|
|
|
opacity: 0.5;
|
|
|
|
")
|
|
|
|
|
|
|
|
(defn ^:export fps
|
|
|
|
"Adds a widget to keep track of the average FPS's"
|
|
|
|
[]
|
|
|
|
(let [last (volatile! (.now js/performance))
|
|
|
|
avg (volatile! 0)
|
|
|
|
node (-> (.createElement js/document "div")
|
|
|
|
(obj/set! "id" "fps")
|
|
|
|
(obj/set! "style" widget-style))
|
|
|
|
body (obj/get js/document "body")
|
|
|
|
|
|
|
|
do-thing (fn do-thing []
|
|
|
|
(timers/raf
|
|
|
|
(fn []
|
|
|
|
(let [cur (.now js/performance)
|
|
|
|
ts (/ 1000 (* (- cur @last)))
|
|
|
|
val (+ @avg (* (- ts @avg) 0.1))]
|
|
|
|
|
2022-03-02 15:50:06 +01:00
|
|
|
(obj/set! node "innerText" val)
|
2021-11-29 22:00:45 +01:00
|
|
|
(vreset! last cur)
|
|
|
|
(vreset! avg val)
|
|
|
|
(do-thing)))))]
|
|
|
|
|
|
|
|
(.appendChild body node)
|
|
|
|
(do-thing)))
|
|
|
|
|
|
|
|
(defn ^:export dump-state []
|
2021-12-21 12:32:04 +01:00
|
|
|
(logjs "state" @st/state)
|
|
|
|
nil)
|
2021-11-29 22:00:45 +01:00
|
|
|
|
2022-09-23 10:20:20 +02:00
|
|
|
(defn ^:export dump-data []
|
|
|
|
(logjs "workspace-data" (get @st/state :workspace-data))
|
|
|
|
nil)
|
|
|
|
|
2021-11-29 22:00:45 +01:00
|
|
|
(defn ^:export dump-buffer []
|
2022-04-29 11:05:04 +02:00
|
|
|
(logjs "last-events" @st/last-events)
|
2021-12-21 12:32:04 +01:00
|
|
|
nil)
|
2021-11-29 22:00:45 +01:00
|
|
|
|
|
|
|
(defn ^:export get-state [str-path]
|
|
|
|
(let [path (->> (str/split str-path " ")
|
2022-04-29 11:05:04 +02:00
|
|
|
(map d/read-string)
|
|
|
|
vec)]
|
|
|
|
(js/console.log (clj->js (get-in @st/state path))))
|
2021-12-21 12:32:04 +01:00
|
|
|
nil)
|
2021-11-29 22:00:45 +01:00
|
|
|
|
2022-03-16 11:27:51 +01:00
|
|
|
(defn dump-objects'
|
|
|
|
[state]
|
|
|
|
(let [page-id (get state :current-page-id)
|
|
|
|
objects (get-in state [:workspace-data :pages-index page-id :objects])]
|
2021-12-21 12:32:04 +01:00
|
|
|
(logjs "objects" objects)
|
|
|
|
nil))
|
2021-11-29 22:00:45 +01:00
|
|
|
|
2022-03-16 11:27:51 +01:00
|
|
|
(defn ^:export dump-objects
|
|
|
|
[]
|
|
|
|
(dump-objects' @st/state))
|
|
|
|
|
|
|
|
(defn dump-object'
|
|
|
|
[state name]
|
|
|
|
(let [page-id (get state :current-page-id)
|
|
|
|
objects (get-in state [:workspace-data :pages-index page-id :objects])
|
2021-12-21 12:32:04 +01:00
|
|
|
result (or (d/seek (fn [[_ shape]] (= name (:name shape))) objects)
|
|
|
|
(get objects (uuid/uuid name)))]
|
|
|
|
(logjs name result)
|
|
|
|
nil))
|
|
|
|
|
2022-03-16 11:27:51 +01:00
|
|
|
(defn ^:export dump-object
|
|
|
|
[name]
|
|
|
|
(dump-object' @st/state name))
|
|
|
|
|
|
|
|
(defn dump-selected'
|
|
|
|
[state]
|
|
|
|
(let [page-id (get state :current-page-id)
|
|
|
|
objects (get-in state [:workspace-data :pages-index page-id :objects])
|
|
|
|
selected (get-in state [:workspace-local :selected])
|
2021-12-21 12:32:04 +01:00
|
|
|
result (->> selected (map (d/getf objects)))]
|
|
|
|
(logjs "selected" result)
|
|
|
|
nil))
|
2021-11-29 22:00:45 +01:00
|
|
|
|
2022-03-16 11:27:51 +01:00
|
|
|
(defn ^:export dump-selected
|
|
|
|
[]
|
|
|
|
(dump-selected' @st/state))
|
|
|
|
|
|
|
|
(defn dump-tree'
|
2022-08-16 15:15:02 +02:00
|
|
|
([state] (dump-tree' state false false))
|
2022-03-16 11:27:51 +01:00
|
|
|
([state show-ids] (dump-tree' state show-ids false))
|
|
|
|
([state show-ids show-touched]
|
|
|
|
(let [page-id (get state :current-page-id)
|
2022-06-23 17:43:43 +02:00
|
|
|
file-data (get state :workspace-data)
|
|
|
|
libraries (get state :workspace-libraries)]
|
|
|
|
(ctf/dump-tree file-data page-id libraries show-ids show-touched))))
|
2021-11-29 22:00:45 +01:00
|
|
|
|
2022-03-16 11:27:51 +01:00
|
|
|
(defn ^:export dump-tree
|
|
|
|
([] (dump-tree' @st/state))
|
|
|
|
([show-ids] (dump-tree' @st/state show-ids))
|
|
|
|
([show-ids show-touched] (dump-tree' @st/state show-ids show-touched)))
|
|
|
|
|
2021-11-29 22:00:45 +01:00
|
|
|
(when *assert*
|
|
|
|
(defonce debug-subscription
|
|
|
|
(->> st/stream
|
|
|
|
(rx/filter ptk/event?)
|
|
|
|
(rx/filter (fn [s] (and (debug? :events)
|
|
|
|
(not (debug-exclude-events (ptk/type s))))))
|
|
|
|
(rx/subs #(println "[stream]: " (ptk/repr-event %))))))
|
|
|
|
|
2021-12-30 11:19:46 +01:00
|
|
|
(defn ^:export apply-changes
|
|
|
|
"Takes a Transit JSON changes"
|
|
|
|
[^string changes*]
|
|
|
|
|
|
|
|
(let [file-id (:current-file-id @st/state)
|
|
|
|
changes (t/decode-str changes*)]
|
|
|
|
(st/emit! (dwc/commit-changes {:redo-changes changes
|
|
|
|
:undo-changes []
|
|
|
|
:save-undo? true
|
|
|
|
:file-id file-id}))))
|
|
|
|
|
|
|
|
(defn ^:export fetch-apply
|
|
|
|
[^string url]
|
|
|
|
(-> (p/let [response (js/fetch url)]
|
|
|
|
(.text response))
|
|
|
|
(p/then apply-changes)))
|
2022-01-21 13:45:17 +01:00
|
|
|
|
|
|
|
(defn ^:export reset-viewport
|
|
|
|
[]
|
|
|
|
(st/emit!
|
|
|
|
dw/reset-zoom
|
|
|
|
(dw/update-viewport-position {:x (constantly 0) :y (constantly 0)})))
|
|
|
|
|
2022-01-26 17:26:57 +01:00
|
|
|
(defn ^:export hide-ui
|
|
|
|
[]
|
|
|
|
(st/emit!
|
2022-03-07 23:22:05 +01:00
|
|
|
(dw/toggle-layout-flag :hide-ui)))
|
2022-03-25 11:53:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
(defn ^:export shortcuts
|
|
|
|
[]
|
|
|
|
|
|
|
|
(letfn [(print-shortcuts [shortcuts]
|
|
|
|
(.table js/console
|
|
|
|
(->> shortcuts
|
|
|
|
(map (fn [[key {:keys [command]}]]
|
|
|
|
[(d/name key)
|
|
|
|
(if (vector? command)
|
|
|
|
(str/join " | " command)
|
|
|
|
command)]))
|
|
|
|
(into {})
|
|
|
|
(clj->js))))]
|
2022-03-25 12:18:33 +01:00
|
|
|
(let [style "font-weight: bold; font-size: 1.25rem;"]
|
|
|
|
(.log js/console "%c Dashboard" style)
|
|
|
|
(print-shortcuts app.main.data.dashboard.shortcuts/shortcuts)
|
2022-03-25 11:53:50 +01:00
|
|
|
|
2022-03-25 12:18:33 +01:00
|
|
|
(.log js/console "%c Workspace" style)
|
|
|
|
(print-shortcuts app.main.data.workspace.shortcuts/shortcuts)
|
2022-03-25 11:53:50 +01:00
|
|
|
|
2022-03-25 12:18:33 +01:00
|
|
|
(.log js/console "%c Path" style)
|
|
|
|
(print-shortcuts app.main.data.workspace.path.shortcuts/shortcuts)
|
2022-03-25 11:53:50 +01:00
|
|
|
|
2022-03-25 12:18:33 +01:00
|
|
|
(.log js/console "%c Viewer" style)
|
|
|
|
(print-shortcuts app.main.data.viewer.shortcuts/shortcuts)))
|
2022-03-25 11:53:50 +01:00
|
|
|
nil)
|
2022-04-01 11:21:50 +02:00
|
|
|
|
|
|
|
(defn ^:export nodeStats
|
|
|
|
[]
|
|
|
|
(let [root-node (dom/query ".viewport .render-shapes")
|
|
|
|
num-nodes (->> (dom/seq-nodes root-node) count)]
|
|
|
|
#js {:number num-nodes}))
|
2022-07-06 12:40:07 +02:00
|
|
|
|
2022-10-14 14:44:10 +02:00
|
|
|
(defn modif->js
|
2022-07-06 12:40:07 +02:00
|
|
|
[modif-tree objects]
|
|
|
|
(clj->js (into {}
|
|
|
|
(map (fn [[k v]]
|
|
|
|
[(get-in objects [k :name]) v]))
|
|
|
|
modif-tree)))
|
2022-10-14 14:44:10 +02:00
|
|
|
|
|
|
|
(defn ^:export dump-modifiers
|
|
|
|
[]
|
|
|
|
(let [page-id (get @st/state :current-page-id)
|
|
|
|
objects (get-in @st/state [:workspace-data :pages-index page-id :objects])]
|
|
|
|
(.log js/console (modif->js (:workspace-modifiers @st/state) objects)))
|
|
|
|
nil)
|
2022-11-22 16:52:31 +01:00
|
|
|
|
|
|
|
(defn ^:export set-workspace-read-only
|
|
|
|
[read-only?]
|
|
|
|
(st/emit! (dw/set-workspace-read-only read-only?)))
|
|
|
|
|
2022-12-27 07:03:12 +01:00
|
|
|
(defn ^:export fix-orphan-shapes
|
|
|
|
[]
|
|
|
|
(st/emit! (dw/fix-orphan-shapes)))
|