🎉 Initial work on comments subsystem.

Only workspace part; missing viewer and dashboard.
This commit is contained in:
Andrey Antukh 2020-10-20 17:35:58 +02:00 committed by Hirunatan
parent 36abc4646a
commit ca83e13802
27 changed files with 1815 additions and 172 deletions

View file

@ -61,6 +61,7 @@
#{:sitemap
:sitemap-pages
:layers
:comments
:assets
:document-history
:colorpalette
@ -396,7 +397,7 @@
:sitemap
:document-history
:assets])))
right-sidebar? (not (empty? (keep layout [:element-options])))]
right-sidebar? (not (empty? (keep layout [:element-options :comments])))]
(update state :workspace-local
assoc :left-sidebar? left-sidebar?
:right-sidebar? right-sidebar?)))
@ -405,28 +406,36 @@
[state flags-to-toggle]
(update state :workspace-layout
(fn [flags]
(cond
(contains? (set flags-to-toggle) :assets)
(disj flags :sitemap :layers :document-history)
(cond-> flags
(contains? flags-to-toggle :assets)
(disj :sitemap :layers :document-history)
(contains? (set flags-to-toggle) :sitemap)
(disj flags :assets :document-history)
(contains? flags-to-toggle :sitemap)
(disj :assets :document-history)
(contains? (set flags-to-toggle) :document-history)
(disj flags :assets :sitemap :layers)
(contains? flags-to-toggle :document-history)
(disj :assets :sitemap :layers)
:else
flags))))
(contains? flags-to-toggle :document-history)
(disj :assets :sitemap :layers)
(and (contains? flags-to-toggle :comments)
(contains? flags :comments))
(disj :element-options)
(and (contains? flags-to-toggle :comments)
(not (contains? flags :comments)))
(conj :element-options)))))
(defn toggle-layout-flags
[& flags]
(us/assert ::layout-flags flags)
(ptk/reify ::toggle-layout-flags
ptk/UpdateEvent
(update [_ state]
(-> (reduce toggle-layout-flag state flags)
(check-auto-flags flags)
(check-sidebars)))))
(let [flags (into #{} flags)]
(ptk/reify ::toggle-layout-flags
ptk/UpdateEvent
(update [_ state]
(-> (reduce toggle-layout-flag state flags)
(check-auto-flags flags)
(check-sidebars))))))
;; --- Set element options mode
@ -597,7 +606,7 @@
shape (-> (cp/make-minimal-shape type)
(merge data)
(merge {:x x :y y})
(geom/setup-selrect))]
(geom/setup-selrect))]
(rx/of (add-shape shape))))))
;; --- Update Shape Attrs
@ -701,7 +710,7 @@
group-ids)))
#{}
ids)
rchanges
(d/concat
(reduce (fn [res id]
@ -1522,7 +1531,7 @@
(rx/of (dwc/commit-changes rchanges uchanges {:commit-local? true})
(dws/select-shapes (d/ordered-set (:id group))))))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Interactions

View file

@ -0,0 +1,310 @@
;; 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/.
;;
;; This Source Code Form is "Incompatible With Secondary Licenses", as
;; defined by the Mozilla Public License, v. 2.0.
;;
;; Copyright (c) 2020 UXBOX Labs SL
(ns app.main.data.workspace.comments
(:require
[cuerdas.core :as str]
[app.common.data :as d]
[app.common.exceptions :as ex]
[app.common.geom.matrix :as gmt]
[app.common.geom.point :as gpt]
[app.common.geom.shapes :as geom]
[app.common.math :as mth]
[app.common.pages :as cp]
[app.common.pages-helpers :as cph]
[app.common.spec :as us]
[app.common.uuid :as uuid]
[app.config :as cfg]
[app.main.constants :as c]
[app.main.data.workspace.common :as dwc]
[app.main.repo :as rp]
[app.main.store :as st]
[app.main.streams :as ms]
[app.main.worker :as uw]
[app.util.router :as rt]
[app.util.timers :as ts]
[app.util.transit :as t]
[app.util.webapi :as wapi]
[beicon.core :as rx]
[cljs.spec.alpha :as s]
[clojure.set :as set]
[potok.core :as ptk]))
(s/def ::comment-thread any?)
(s/def ::comment any?)
(declare create-draft-thread)
(declare clear-draft-thread)
(declare retrieve-comment-threads)
(declare refresh-comment-thread)
(declare handle-interrupt)
(declare handle-comment-layer-click)
(defn initialize-comments
[file-id]
(us/assert ::us/uuid file-id)
(ptk/reify ::start-commenting
ptk/UpdateEvent
(update [_ state]
(update state :workspace-local assoc :commenting true))
ptk/WatchEvent
(watch [_ state stream]
(let [stoper (rx/filter #(= ::finalize %) stream)]
(rx/merge
(rx/of (retrieve-comment-threads file-id))
(->> stream
(rx/filter ms/mouse-click?)
(rx/switch-map #(rx/take 1 ms/mouse-position))
(rx/mapcat #(rx/take 1 ms/mouse-position))
(rx/map handle-comment-layer-click)
(rx/take-until stoper))
(->> stream
(rx/filter dwc/interrupt?)
(rx/map handle-interrupt)
(rx/take-until stoper)))))))
(defn- handle-interrupt
[]
(ptk/reify ::handle-interrupt
ptk/UpdateEvent
(update [_ state]
(let [local (:workspace-comments state)]
(cond
(:draft local)
(update state :workspace-comments dissoc :draft)
(:open local)
(update state :workspace-comments dissoc :open)
:else
state)))))
;; Event responsible of the what should be executed when user clicked
;; on the comments layer. An option can be create a new draft thread,
;; an other option is close previously open thread or cancel the
;; latest opened thread draft.
(defn- handle-comment-layer-click
[position]
(ptk/reify ::handle-comment-layer-click
ptk/UpdateEvent
(update [_ state]
(let [local (:workspace-comments state)]
(if (:open local)
(update state :workspace-comments dissoc :open)
(update state :workspace-comments assoc
:draft {:position position :content ""}))))))
(defn create-thread
[data]
(letfn [(created [{:keys [id comment] :as thread} state]
(-> state
(update :comment-threads assoc id (dissoc thread :comment))
(update :workspace-comments assoc :draft nil :open id)
(update-in [:comments id] assoc (:id comment) comment)))]
(ptk/reify ::create-thread
ptk/WatchEvent
(watch [_ state stream]
(let [file-id (get-in state [:workspace-file :id])
page-id (:current-page-id state)
params (assoc data
:page-id page-id
:file-id file-id)]
(->> (rp/mutation :create-comment-thread params)
(rx/map #(partial created %))))))))
(defn update-comment-thread-status
[{:keys [id] :as thread}]
(us/assert ::comment-thread thread)
(ptk/reify ::update-comment-thread-status
ptk/UpdateEvent
(update [_ state]
(d/update-in-when state [:comment-threads id] assoc :count-unread-comments 0))
ptk/WatchEvent
(watch [_ state stream]
(->> (rp/mutation :update-comment-thread-status {:id id})
(rx/ignore)))))
(defn update-comment-thread
[{:keys [id is-resolved] :as thread}]
(us/assert ::comment-thread thread)
(ptk/reify ::update-comment-thread
ptk/UpdateEvent
(update [_ state]
(d/update-in-when state [:comment-threads id] assoc :is-resolved is-resolved))
ptk/WatchEvent
(watch [_ state stream]
(->> (rp/mutation :update-comment-thread {:id id :is-resolved is-resolved})
(rx/ignore)))))
(defn add-comment
[thread content]
(us/assert ::comment-thread thread)
(us/assert ::us/string content)
(letfn [(created [comment state]
(update-in state [:comments (:id thread)] assoc (:id comment) comment))]
(ptk/reify ::create-comment
ptk/WatchEvent
(watch [_ state stream]
(rx/concat
(->> (rp/mutation :add-comment {:thread-id (:id thread) :content content})
(rx/map #(partial created %)))
(rx/of (refresh-comment-thread thread)))))))
(defn update-comment
[{:keys [id content thread-id] :as comment}]
(us/assert ::comment comment)
(ptk/reify :update-comment
ptk/UpdateEvent
(update [_ state]
(d/update-in-when state [:comments thread-id id] assoc :content content))
ptk/WatchEvent
(watch [_ state stream]
(->> (rp/mutation :update-comment {:id id :content content})
(rx/ignore)))))
(defn delete-comment-thread
[{:keys [id] :as thread}]
(us/assert ::comment-thread thread)
(ptk/reify :delete-comment-thread
ptk/UpdateEvent
(update [_ state]
(-> state
(update :comments dissoc id)
(update :comment-threads dissoc id)))
ptk/WatchEvent
(watch [_ state stream]
(->> (rp/mutation :delete-comment-thread {:id id})
(rx/ignore)))))
(defn delete-comment
[{:keys [id thread-id] :as comment}]
(us/assert ::comment comment)
(ptk/reify :delete-comment
ptk/UpdateEvent
(update [_ state]
(d/update-in-when state [:comments thread-id] dissoc id))
ptk/WatchEvent
(watch [_ state stream]
(->> (rp/mutation :delete-comment {:id id})
(rx/ignore)))))
(defn refresh-comment-thread
[{:keys [id file-id] :as thread}]
(us/assert ::comment-thread thread)
(letfn [(fetched [thread state]
(assoc-in state [:comment-threads id] thread))]
(ptk/reify ::refresh-comment-thread
ptk/WatchEvent
(watch [_ state stream]
(->> (rp/query :comment-thread {:file-id file-id :id id})
(rx/map #(partial fetched %)))))))
(defn retrieve-comment-threads
[file-id]
(us/assert ::us/uuid file-id)
(letfn [(fetched [data state]
(assoc state :comment-threads (d/index-by :id data)))]
(ptk/reify ::retrieve-comment-threads
ptk/WatchEvent
(watch [_ state stream]
(->> (rp/query :comment-threads {:file-id file-id})
(rx/map #(partial fetched %)))))))
(defn retrieve-comments
[thread-id]
(us/assert ::us/uuid thread-id)
(letfn [(fetched [comments state]
(update state :comments assoc thread-id (d/index-by :id comments)))]
(ptk/reify ::retrieve-comments
ptk/WatchEvent
(watch [_ state stream]
(->> (rp/query :comments {:thread-id thread-id})
(rx/map #(partial fetched %)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Workspace (local) events
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn open-thread
[{:keys [id] :as thread}]
(us/assert ::comment-thread thread)
(ptk/reify ::open-thread
ptk/UpdateEvent
(update [_ state]
(update state :workspace-comments assoc :open id :draft nil))))
(defn close-thread
[]
(ptk/reify ::open-thread
ptk/UpdateEvent
(update [_ state]
(update state :workspace-comments dissoc :open :draft))))
(defn- clear-draft-thread
[state]
(update state :workspace-comments dissoc :draft))
;; TODO: add specs
(defn update-draft-thread
[data]
(ptk/reify ::update-draft-thread
ptk/UpdateEvent
(update [_ state]
(update state :workspace-comments assoc :draft data))))
(defn update-filters
[{:keys [main resolved]}]
(ptk/reify ::update-filters
ptk/UpdateEvent
(update [_ state]
(update state :workspace-comments
(fn [local]
(cond-> local
(some? main)
(assoc :filter main)
(some? resolved)
(assoc :filter-resolved resolved)))))))
(defn center-to-comment-thread
[{:keys [id position] :as thread}]
(us/assert ::comment-thread thread)
(ptk/reify :center-to-comment-thread
ptk/UpdateEvent
(update [_ state]
(update state :workspace-local
(fn [{:keys [vbox vport zoom] :as local}]
;; (prn "position=" position)
;; (prn "vbox=" vbox)
;; (prn "vport=" vport)
(let [pw (/ 50 zoom)
ph (/ 200 zoom)
nw (mth/round (- (/ (:width vbox) 2) pw))
nh (mth/round (- (/ (:height vbox) 2) ph))
nx (- (:x position) nw)
ny (- (:y position) nh)]
(update local :vbox assoc :x nx :y ny))))
)))

View file

@ -26,6 +26,7 @@
[app.util.router :as rt]
[app.util.time :as dt]
[app.util.transit :as t]
[app.util.avatars :as avatars]
[beicon.core :as rx]
[cljs.spec.alpha :as s]
[potok.core :as ptk]))
@ -224,6 +225,12 @@
:else
(throw error))))))))
(defn assoc-profile-avatar
[{:keys [photo fullname] :as profile}]
(cond-> profile
(or (nil? photo) (empty? photo))
(assoc :photo (avatars/generate {:name fullname}))))
(defn- bundle-fetched
[file users project libraries]
(ptk/reify ::bundle-fetched
@ -236,13 +243,14 @@
ptk/UpdateEvent
(update [_ state]
(assoc state
:workspace-undo {}
:workspace-project project
:workspace-file file
:workspace-data (:data file)
:workspace-users (d/index-by :id users)
:workspace-libraries (d/index-by :id libraries)))))
(let [users (map assoc-profile-avatar users)]
(assoc state
:workspace-undo {}
:workspace-project project
:workspace-file file
:workspace-data (:data file)
:workspace-users (d/index-by :id users)
:workspace-libraries (d/index-by :id libraries))))))
;; --- Set File shared

View file

@ -126,6 +126,8 @@
(def picker-harmony (icon-xref :picker-harmony))
(def picker-hsv (icon-xref :picker-hsv))
(def picker-ramp (icon-xref :picker-ramp))
(def checkbox-checked (icon-xref :checkbox-checked))
(def checkbox-unchecked (icon-xref :checkbox-unchecked))
(def loader-pencil
(mf/html

View file

@ -21,6 +21,7 @@
[app.main.ui.keyboard :as kbd]
[app.main.ui.workspace.colorpalette :refer [colorpalette]]
[app.main.ui.workspace.colorpicker]
[app.main.ui.workspace.comments :refer [comments-layer]]
[app.main.ui.workspace.context-menu :refer [context-menu]]
[app.main.ui.workspace.header :refer [header]]
[app.main.ui.workspace.left-toolbar :refer [left-toolbar]]
@ -31,6 +32,7 @@
[app.main.ui.workspace.viewport :refer [viewport coordinates]]
[app.util.dom :as dom]
[beicon.core :as rx]
[cuerdas.core :as str]
[okulary.core :as l]
[rumext.alpha :as mf]))
@ -51,6 +53,14 @@
[:section.workspace-content {:class classes}
[:section.workspace-viewport
(when (contains? layout :comments)
[:& comments-layer {:vbox (:vbox local)
:vport (:vport local)
:zoom (:zoom local)
:page-id page-id
:file-id (:id file)}
])
(when (contains? layout :rules)
[:*
[:div.empty-rule-square]
@ -62,6 +72,7 @@
:vport (:vport local)}]
[:& coordinates]])
[:& viewport {:page-id page-id
:key (str page-id)
:file file

View file

@ -0,0 +1,535 @@
;; 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/.
;;
;; This Source Code Form is "Incompatible With Secondary Licenses", as
;; defined by the Mozilla Public License, v. 2.0.
;;
;; Copyright (c) 2020 UXBOX Labs SL
(ns app.main.ui.workspace.comments
(:refer-clojure :exclude [comment])
(:require
[app.config :as cfg]
[app.main.data.workspace :as dw]
[app.main.data.workspace.comments :as dwcm]
[app.main.data.workspace.common :as dwc]
[app.main.refs :as refs]
[app.main.store :as st]
[app.main.streams :as ms]
[app.main.ui.components.dropdown :refer [dropdown]]
[app.main.data.modal :as modal]
[app.main.ui.hooks :as hooks]
[app.main.ui.icons :as i]
[app.main.ui.keyboard :as kbd]
[app.main.ui.workspace.colorpicker]
[app.main.ui.workspace.context-menu :refer [context-menu]]
[app.util.time :as dt]
[app.util.dom :as dom]
[app.util.object :as obj]
[beicon.core :as rx]
[app.util.i18n :as i18n :refer [t tr]]
[cuerdas.core :as str]
[okulary.core :as l]
[rumext.alpha :as mf]))
(declare group-threads-by-page)
(declare apply-filters)
(mf/defc resizing-textarea
{::mf/wrap-props false}
[props]
(let [value (obj/get props "value" "")
on-focus (obj/get props "on-focus")
on-blur (obj/get props "on-blur")
placeholder (obj/get props "placeholder")
on-change (obj/get props "on-change")
on-esc (obj/get props "on-esc")
ref (mf/use-ref)
;; state (mf/use-state value)
on-key-down
(mf/use-callback
(fn [event]
(when (and (kbd/esc? event)
(fn? on-esc))
(on-esc event))))
on-change*
(mf/use-callback
(mf/deps on-change)
(fn [event]
(let [content (dom/get-target-val event)]
(on-change content))))]
(mf/use-layout-effect
nil
(fn []
(let [node (mf/ref-val ref)]
(set! (.-height (.-style node)) "0")
(set! (.-height (.-style node)) (str (+ 2 (.-scrollHeight node)) "px")))))
[:textarea
{:ref ref
:on-key-down on-key-down
:on-focus on-focus
:on-blur on-blur
:value value
:placeholder placeholder
:on-change on-change*}]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Workspace
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(mf/defc reply-form
[{:keys [thread] :as props}]
(let [show-buttons? (mf/use-state false)
content (mf/use-state "")
on-focus
(mf/use-callback
#(reset! show-buttons? true))
on-blur
(mf/use-callback
#(reset! show-buttons? false))
on-change
(mf/use-callback
#(reset! content %))
on-cancel
(mf/use-callback
#(do (reset! content "")
(reset! show-buttons? false)))
on-submit
(mf/use-callback
(mf/deps thread @content)
(fn []
(st/emit! (dwcm/add-comment thread @content))
(on-cancel)))]
[:div.reply-form
[:& resizing-textarea {:value @content
:placeholder "Reply"
:on-blur on-blur
:on-focus on-focus
:on-change on-change}]
(when (or @show-buttons?
(not (empty? @content)))
[:div.buttons
[:input.btn-primary {:type "button" :value "Post" :on-click on-submit}]
[:input.btn-warning {:type "button" :value "Cancel" :on-click on-cancel}]])]))
(mf/defc draft-thread
[{:keys [draft zoom] :as props}]
(let [position (:position draft)
content (:content draft)
pos-x (* (:x position) zoom)
pos-y (* (:y position) zoom)
on-esc
(mf/use-callback
(mf/deps draft)
(st/emitf :interrupt))
on-change
(mf/use-callback
(mf/deps draft)
(fn [content]
(st/emit! (dwcm/update-draft-thread (assoc draft :content content)))))
on-submit
(mf/use-callback
(mf/deps draft)
(st/emitf (dwcm/create-thread draft)))]
[:*
[:div.thread-bubble
{:style {:top (str pos-y "px")
:left (str pos-x "px")}}
[:span "?"]]
[:div.thread-content
{:style {:top (str (- pos-y 14) "px")
:left (str (+ pos-x 14) "px")}}
[:div.reply-form
[:& resizing-textarea {:placeholder "Write new comment"
:value content
:on-esc on-esc
:on-change on-change}]
[:div.buttons
[:input.btn-primary
{:on-click on-submit
:type "button"
:value "Post"}]
[:input.btn-secondary
{:on-click on-esc
:type "button"
:value "Cancel"}]]]]]))
(mf/defc edit-form
[{:keys [content on-submit on-cancel] :as props}]
(let [content (mf/use-state content)
on-change
(mf/use-callback
#(reset! content %))
on-submit*
(mf/use-callback
(mf/deps @content)
(fn [] (on-submit @content)))]
[:div.reply-form.edit-form
[:& resizing-textarea {:value @content
:on-change on-change}]
[:div.buttons
[:input.btn-primary {:type "button" :value "Post" :on-click on-submit*}]
[:input.btn-warning {:type "button" :value "Cancel" :on-click on-cancel}]]]))
(mf/defc comment-item
[{:keys [comment thread] :as props}]
(let [profile (get @refs/workspace-users (:owner-id comment))
options? (mf/use-state false)
edition? (mf/use-state false)
on-edit-clicked
(mf/use-callback
(fn []
(reset! options? false)
(reset! edition? true)))
on-delete-comment
(mf/use-callback
(mf/deps comment)
(st/emitf (dwcm/delete-comment comment)))
delete-thread
(mf/use-callback
(mf/deps thread)
(st/emitf (dwcm/close-thread)
(dwcm/delete-comment-thread thread)))
on-delete-thread
(mf/use-callback
(mf/deps thread)
(st/emitf (modal/show
{:type :confirm
:title (tr "modals.delete-comment-thread.title")
:message (tr "modals.delete-comment-thread.message")
:accept-label (tr "modals.delete-comment-thread.accept")
:on-accept delete-thread})))
on-submit
(mf/use-callback
(mf/deps comment thread)
(fn [content]
(reset! edition? false)
(st/emit! (dwcm/update-comment (assoc comment :content content)))))
on-cancel
(mf/use-callback #(reset! edition? false))
toggle-resolved
(mf/use-callback
(mf/deps thread)
(st/emitf (dwcm/update-comment-thread (update thread :is-resolved not))))]
[:div.comment-container
[:div.comment
[:div.author
[:div.avatar
[:img {:src (cfg/resolve-media-path (:photo profile))}]]
[:div.name
[:div.fullname (:fullname profile)]
[:div.timeago (dt/timeago (:modified-at comment))]]
(when (some? thread)
[:div.options-resolve {:on-click toggle-resolved}
(if (:is-resolved thread)
[:span i/checkbox-checked]
[:span i/checkbox-unchecked])])
[:div.options
[:div.options-icon {:on-click #(swap! options? not)} i/actions]]]
[:div.content
(if @edition?
[:& edit-form {:content (:content comment)
:on-submit on-submit
:on-cancel on-cancel}]
[:span.text (:content comment)])]]
[:& dropdown {:show @options?
:on-close identity}
[:ul.dropdown.comment-options-dropdown
[:li {:on-click on-edit-clicked} "Edit"]
(if thread
[:li {:on-click on-delete-thread} "Delete thread"]
[:li {:on-click on-delete-comment} "Delete comment"])]]]))
(defn comments-ref
[thread-id]
(l/derived (l/in [:comments thread-id]) st/state))
(mf/defc thread-comments
[{:keys [thread zoom]}]
(let [ref (mf/use-ref)
pos (:position thread)
pos-x (+ (* (:x pos) zoom) 14)
pos-y (- (* (:y pos) zoom) 14)
comments-ref (mf/use-memo (mf/deps (:id thread)) #(comments-ref (:id thread)))
comments-map (mf/deref comments-ref)
comments (->> (vals comments-map)
(sort-by :created-at))
comment (first comments)]
(mf/use-effect
(st/emitf (dwcm/update-comment-thread-status thread)))
(mf/use-effect
(mf/deps thread)
(st/emitf (dwcm/retrieve-comments (:id thread))))
(mf/use-layout-effect
(mf/deps thread comments-map)
(fn []
(when-let [node (mf/ref-val ref)]
(.scrollIntoView ^js node))))
[:div.thread-content
{:style {:top (str pos-y "px")
:left (str pos-x "px")}}
[:div.comments
[:& comment-item {:comment comment
:thread thread}]
(for [item (rest comments)]
[:*
[:hr]
[:& comment-item {:comment item}]])
[:div {:ref ref}]]
[:& reply-form {:thread thread}]]))
(mf/defc thread-bubble
{::mf/wrap [mf/memo]}
[{:keys [thread zoom open?] :as params}]
(let [pos (:position thread)
pos-x (* (:x pos) zoom)
pos-y (* (:y pos) zoom)
on-open-toggle
(mf/use-callback
(mf/deps thread open?)
(fn []
(if open?
(st/emit! (dwcm/close-thread))
(st/emit! (dwcm/open-thread thread)))))]
[:div.thread-bubble
{:style {:top (str pos-y "px")
:left (str pos-x "px")}
:class (dom/classnames
:resolved (:is-resolved thread)
:unread (pos? (:count-unread-comments thread)))
:on-click on-open-toggle}
[:span (:seqn thread)]]))
(def threads-ref
(l/derived :comment-threads st/state))
(def workspace-comments-ref
(l/derived :workspace-comments st/state))
(mf/defc comments-layer
[{:keys [vbox vport zoom file-id page-id] :as props}]
(let [pos-x (* (- (:x vbox)) zoom)
pos-y (* (- (:y vbox)) zoom)
profile (mf/deref refs/profile)
local (mf/deref workspace-comments-ref)
threads-map (mf/deref threads-ref)
threads (->> (vals threads-map)
(filter #(= (:page-id %) page-id))
(apply-filters local profile))]
(mf/use-effect
(mf/deps file-id)
(fn []
(st/emit! (dwcm/initialize-comments file-id))
(fn []
(st/emit! ::dwcm/finalize))))
[:div.workspace-comments
{:style {:width (str (:width vport) "px")
:height (str (:height vport) "px")}}
[:div.threads {:style {:transform (str/format "translate(%spx, %spx)" pos-x pos-y)}}
(for [item threads]
[:& thread-bubble {:thread item
:zoom zoom
:open? (= (:id item) (:open local))
:key (:seqn item)}])
(when-let [id (:open local)]
(when-let [thread (get threads-map id)]
[:& thread-comments {:thread thread
:zoom zoom}]))
(when-let [draft (:draft local)]
[:& draft-thread {:draft draft :zoom zoom}])]]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Sidebar
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(mf/defc sidebar-group-item
[{:keys [item] :as props}]
(let [profile (get @refs/workspace-users (:owner-id item))
on-click
(mf/use-callback
(mf/deps item)
(st/emitf (dwcm/center-to-comment-thread item)
(dwcm/open-thread item)))]
[:div.comment {:on-click on-click}
[:div.author
[:div.thread-bubble
{:class (dom/classnames
:resolved (:is-resolved item)
:unread (pos? (:count-unread-comments item)))}
(:seqn item)]
[:div.avatar
[:img {:src (cfg/resolve-media-path (:photo profile))}]]
[:div.name
[:div.fullname (:fullname profile) ", "]
[:div.timeago (dt/timeago (:modified-at item))]]]
[:div.content
[:span.text (:content item)]]
[:div.content.replies
(let [unread (:count-unread-comments item ::none)
total (:count-comments item 1)]
[:*
(when (> total 1)
(if (= total 2)
[:span.total-replies "1 reply"]
[:span.total-replies (str (dec total) " replies")]))
(when (and (> total 1) (> unread 0))
(if (= unread 1)
[:span.new-replies "1 new reply"]
[:span.new-replies (str unread " new replies")]))])]]))
(defn page-name-ref
[id]
(l/derived (l/in [:workspace-data :pages-index id :name]) st/state))
(mf/defc sidebar-item
[{:keys [group]}]
(let [page-name-ref (mf/use-memo (mf/deps (:page-id group)) #(page-name-ref (:page-id group)))
page-name (mf/deref page-name-ref)]
[:div.page-section
[:div.section-title
[:span.icon i/file-html]
[:span.label page-name]]
[:div.comments-container
(for [item (:items group)]
[:& sidebar-group-item {:item item :key (:id item)}])]]))
(mf/defc sidebar-options
[{:keys [local] :as props}]
(let [filter-yours
(mf/use-callback
(mf/deps local)
(st/emitf (dwcm/update-filters {:main :yours})))
filter-all
(mf/use-callback
(mf/deps local)
(st/emitf (dwcm/update-filters {:main :all})))
toggle-resolved
(mf/use-callback
(mf/deps local)
(st/emitf (dwcm/update-filters {:resolved (not (:filter-resolved local))})))]
[:ul.dropdown.sidebar-options-dropdown
[:li {:on-click filter-all} "All"]
[:li {:on-click filter-yours} "Only yours"]
[:hr]
(if (:filter-resolved local)
[:li {:on-click toggle-resolved} "Show resolved comments"]
[:li {:on-click toggle-resolved} "Hide resolved comments"])]))
(mf/defc comments-sidebar
[]
(let [threads-map (mf/deref threads-ref)
profile (mf/deref refs/profile)
local (mf/deref workspace-comments-ref)
options? (mf/use-state false)
tgroups (->> (vals threads-map)
(sort-by :modified-at)
(reverse)
(apply-filters local profile)
(group-threads-by-page))]
[:div.workspace-comments.workspace-comments-sidebar
[:div.sidebar-title
[:div.label "Comments"]
[:div.options {:on-click #(reset! options? true)}
[:div.label (case (:filter local)
(nil :all) "All"
:yours "Only yours")]
[:div.icon i/arrow-down]]]
[:& dropdown {:show @options?
:on-close #(reset! options? false)}
[:& sidebar-options {:local local}]]
(when (seq tgroups)
[:div.threads
[:& sidebar-item {:group (first tgroups)}]
(for [tgroup (rest tgroups)]
[:*
[:hr]
[:& sidebar-item {:group tgroup
:key (:page-id tgroup)}]])])]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Helpers
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- group-threads-by-page
[threads]
(letfn [(group-by-page [result thread]
(let [current (first result)]
(if (= (:page-id current) (:page-id thread))
(cons (update current :items conj thread)
(rest result))
(cons {:page-id (:page-id thread) :items [thread]}
result))))]
(reverse
(reduce group-by-page nil threads))))
(defn- apply-filters
[local profile threads]
(cond->> threads
(true? (:filter-resolved local))
(filter (fn [item]
(or (not (:is-resolved item))
(= (:id item) (:open local)))))
(= :yours (:filter local))
(filter #(contains? (:participants %) (:id profile)))))

View file

@ -93,26 +93,33 @@
{:alt (t locale "workspace.toolbar.path")
:class (when (= selected-drawtool :path) "selected")
:on-click (partial select-drawtool :path)}
i/curve]]
i/curve]
[:li.tooltip.tooltip-right
{:alt (t locale "workspace.toolbar.comments")
:class (when (contains? layout :comments) "selected")
:on-click (st/emitf (dw/toggle-layout-flags :comments))
}
i/chat]]
[:ul.left-toolbar-options.panels
[:li.tooltip.tooltip-right
{:alt "Layers"
:class (when (contains? layout :layers) "selected")
:on-click #(st/emit! (dw/toggle-layout-flags :sitemap :layers))}
:on-click (st/emitf (dw/toggle-layout-flags :sitemap :layers))}
i/layers]
[:li.tooltip.tooltip-right
{:alt (t locale "workspace.toolbar.assets")
:class (when (contains? layout :assets) "selected")
:on-click #(st/emit! (dw/toggle-layout-flags :assets))}
:on-click (st/emitf (dw/toggle-layout-flags :assets))}
i/library]
[:li.tooltip.tooltip-right
{:alt "History"
:class (when (contains? layout :document-history) "selected")
:on-click #(st/emit! (dw/toggle-layout-flags :document-history))}
:on-click (st/emitf (dw/toggle-layout-flags :document-history))}
i/undo-history]
[:li.tooltip.tooltip-right
{:alt (t locale "workspace.toolbar.color-palette")
:class (when (contains? layout :colorpalette) "selected")
:on-click #(st/emit! (dw/toggle-layout-flags :colorpalette))}
:on-click (st/emitf (dw/toggle-layout-flags :colorpalette))}
i/palette]]]]))

View file

@ -11,6 +11,7 @@
(:require
[rumext.alpha :as mf]
[cuerdas.core :as str]
[app.main.ui.workspace.comments :refer [comments-sidebar]]
[app.main.ui.workspace.sidebar.history :refer [history-toolbox]]
[app.main.ui.workspace.sidebar.layers :refer [layers-toolbox]]
[app.main.ui.workspace.sidebar.options :refer [options-toolbox]]
@ -47,4 +48,6 @@
[:& options-toolbox
{:page-id page-id
:file-id file-id
:local local}])]])
:local local}])
(when (contains? layout :comments)
[:& comments-sidebar])]])

View file

@ -9,49 +9,49 @@
(ns app.main.ui.workspace.viewport
(:require
[clojure.set :as set]
[cuerdas.core :as str]
[beicon.core :as rx]
[goog.events :as events]
[potok.core :as ptk]
[rumext.alpha :as mf]
[promesa.core :as p]
[app.main.ui.icons :as i]
[app.main.ui.cursors :as cur]
[app.main.data.modal :as modal]
[app.common.data :as d]
[app.common.geom.point :as gpt]
[app.common.geom.shapes :as gsh]
[app.common.math :as mth]
[app.common.uuid :as uuid]
[app.main.constants :as c]
[app.main.data.workspace :as dw]
[app.main.data.workspace.libraries :as dwl]
[app.main.data.workspace.drawing :as dd]
[app.main.data.colors :as dwc]
[app.main.data.fetch :as mdf]
[app.main.data.modal :as modal]
[app.main.data.workspace :as dw]
[app.main.data.workspace.drawing :as dd]
[app.main.data.workspace.libraries :as dwl]
[app.main.refs :as refs]
[app.main.store :as st]
[app.main.streams :as ms]
[app.main.ui.keyboard :as kbd]
[app.main.ui.context :as muc]
[app.main.ui.cursors :as cur]
[app.main.ui.hooks :as hooks]
[app.main.ui.icons :as i]
[app.main.ui.keyboard :as kbd]
[app.main.ui.workspace.drawarea :refer [draw-area]]
[app.main.ui.workspace.frame-grid :refer [frame-grid]]
[app.main.ui.workspace.presence :as presence]
[app.main.ui.workspace.selection :refer [selection-handlers]]
[app.main.ui.workspace.shapes :refer [shape-wrapper frame-wrapper]]
[app.main.ui.workspace.shapes.interactions :refer [interactions]]
[app.main.ui.workspace.drawarea :refer [draw-area]]
[app.main.ui.workspace.selection :refer [selection-handlers]]
[app.main.ui.workspace.presence :as presence]
[app.main.ui.workspace.snap-points :refer [snap-points]]
[app.main.ui.workspace.snap-distances :refer [snap-distances]]
[app.main.ui.workspace.frame-grid :refer [frame-grid]]
[app.main.ui.workspace.shapes.outline :refer [outline]]
[app.main.ui.workspace.gradients :refer [gradient-handlers]]
[app.main.ui.workspace.colorpicker.pixel-overlay :refer [pixel-overlay]]
[app.common.math :as mth]
[app.main.ui.workspace.snap-distances :refer [snap-distances]]
[app.main.ui.workspace.snap-points :refer [snap-points]]
[app.util.dom :as dom]
[app.util.dom.dnd :as dnd]
[app.util.object :as obj]
[app.main.ui.context :as muc]
[app.common.geom.shapes :as gsh]
[app.common.geom.point :as gpt]
[app.util.perf :as perf]
[app.common.uuid :as uuid]
[app.util.timers :as timers])
[app.util.timers :as timers]
[beicon.core :as rx]
[clojure.set :as set]
[cuerdas.core :as str]
[goog.events :as events]
[potok.core :as ptk]
[promesa.core :as p]
[rumext.alpha :as mf])
(:import goog.events.EventType))
;; --- Coordinates Widget
@ -306,7 +306,8 @@
(st/emit! (ms/->KeyboardEvent :down key ctrl? shift? alt?))
(when (and (kbd/space? event)
(not= "rich-text" (obj/get target "className"))
(not= "INPUT" (obj/get target "tagName")))
(not= "INPUT" (obj/get target "tagName"))
(not= "TEXTAREA" (obj/get target "tagName")))
(handle-viewport-positioning viewport-ref))))))
on-key-up

View file

@ -15,7 +15,7 @@
(defn generate
[{:keys [name color size]
:or {color "#303236" size 128}}]
:or {color "#000000" size 128}}]
(let [parts (str/words (str/upper name))
letters (if (= 1 (count parts))
(ffirst parts)

View file

@ -11,6 +11,7 @@
(:require
["date-fns/format" :as df-format]
["date-fns/formatDistanceToNow" :as df-format-distance]
["date-fns/formatDistanceToNowStrict" :as df-format-distance-strict]
["date-fns/locale/fr" :as df-fr-locale]
["date-fns/locale/en-US" :as df-en-locale]
["date-fns/locale/es" :as df-es-locale]
@ -44,7 +45,8 @@
([v {:keys [seconds? locale]
:or {seconds? true
locale "default"}}]
(df-format-distance v
#js {:includeSeconds seconds?
:addSuffix true
:locale (gobj/get locales locale)})))
(when v
(df-format-distance-strict v
#js {:includeSeconds seconds?
:addSuffix true
:locale (gobj/get locales locale)}))))