;; 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/.
;;
;; Copyright (c) KALEIDOS INC Sucursal en España SL

(ns app.main.ui.workspace.sidebar.debug-shape-info
  (:require-macros [app.main.style :as stl])
  (:require
   [app.common.data :as d]
   [app.common.data.macros :as dm]
   [app.common.geom.matrix :as gmt]
   [app.main.data.workspace :as dw]
   [app.main.refs :as refs]
   [app.main.store :as st]
   [debug :as dbg]
   [rumext.v2 :as mf]))

(def display-attrs
  [:type
   :id
   :parent-id
   :frame-id
   :shapes
   :component-id
   :component-file
   :component-root
   :main-instance
   :shape-ref
   :x
   :y
   :width
   :height
   :selrect
   :points
   :transform
   :transform-inverse])

(def remove-attrs
  #{:name, :remote-synced})

(def vertical-layout-attrs
  #{})

(defn get-attrs
  [shape]
  (let [shape-attrs (->> (keys shape)
                         (remove (set display-attrs))
                         (remove remove-attrs)
                         (sort-by name))]
    (as-> display-attrs $
      (d/removev #(nil? (get shape %)) $)
      (into $ shape-attrs))))

(def custom-renderer
  {:parent-id :shape-link
   :frame-id :shape-link
   :shapes :shape-list
   :shape-ref :shape-link
   :transform :matrix-render
   :transform-inverse :matrix-render
   :selrect :rect-render
   :points :points-render
   :layout-grid-cells :cells-render})

(mf/defc shape-link
  [{:keys [id objects]}]
  [:a {:class (stl/css :shape-link)
       :on-click #(st/emit! (dw/select-shape id))}
   (dm/str (dm/get-in objects [id :name]) " #" id)])

(mf/defc cells-render
  [{:keys [cells objects]}]
  [:div {:class (stl/css :cells-render)}
   (for [[id cell] cells]

     [:div {:key (dm/str "cell-" id)
            :class (stl/css :cell-container)}
      [:div {:class (stl/css :cell-position)}
       (dm/fmt "(%, %) -> (%, %)"
               (:row cell)
               (:column cell)
               (+ (:row cell) (dec (:row-span cell)))
               (+ (:column cell) (dec (:column-span cell))))]

      [:div {:class (stl/css :cell-shape)}
       (if (empty? (:shapes cell))
         [:div "<empty>"]
         [:& shape-link {:id (first (:shapes cell)) :objects objects}])]])])

(mf/defc debug-shape-attr
  [{:keys [attr value objects]}]

  (case (get custom-renderer attr)
    :shape-link
    [:& shape-link {:id value :objects objects}]

    :shape-list
    [:div {:class (stl/css :shape-list)}
     (for [id value]
       [:& shape-link {:key (dm/str "child-" id)
                       :id id :objects objects}])]

    :matrix-render
    [:div (dm/str (gmt/format-precision value 2))]

    :rect-render
    [:div (dm/fmt "X:% Y:% W:% H:%" (:x value) (:y value) (:width value) (:height value))]

    :points-render
    [:div {:class (stl/css :point-list)}
     (for [[idx point] (d/enumerate value)]
       [:div {:key (dm/str "point-" idx)} (dm/fmt "(%, %)" (:x point) (:y point))])]

    :cells-render
    [:& cells-render {:cells value :objects objects}]

    [:div {:class (stl/css :attrs-container-value)} (str value)]))

(mf/defc debug-shape-info*
  []
  (let [objects  (mf/deref refs/workspace-page-objects)
        selected (->> (mf/deref refs/selected-shapes)
                      (map (d/getf objects)))]

    [:div {:class (stl/css :shape-info)}
     (if (empty? selected)
       [:div {:class (stl/css :attrs-container)} "No shapes selected"]
       (for [[idx current] (d/enumerate selected)]
         [:div {:class (stl/css :attrs-container) :key (dm/str "shape" idx)}
          [:div {:class (stl/css :shape-title)}
           [:div {:class (stl/css :shape-name)} (:name current)]
           [:button {:on-click #(debug/dump-object (dm/str (:id current)))} "object"]
           [:button {:on-click #(debug/dump-subtree (dm/str (:id current)) true)} "tree"]]

          [:div {:class (stl/css :shape-attrs)}
           (let [attrs (get-attrs current)]
             (for [attr attrs]
               (when-let [value (get current attr)]
                 [:div {:class (stl/css-case :attrs-container-attr true
                                             :vertical-layout (contains? vertical-layout-attrs attr))
                        :key (dm/str "att-" idx "-" attr)}
                  [:div {:class (stl/css :attrs-container-name)} (d/name attr)]

                  [:& debug-shape-attr {:attr attr :value value :objects objects}]])))]]))]))
