Merge pull request #245 from uxbox/bug_fixing

Bug fixing
This commit is contained in:
Andrey Antukh 2020-06-04 15:58:43 +02:00 committed by GitHub
commit c6581a91e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 7 deletions

View file

@ -431,6 +431,7 @@
.input-text { .input-text {
padding-left: 0; padding-left: 0;
color: #b1b2b5; color: #b1b2b5;
background-color: transparent;
} }
} }

View file

@ -13,13 +13,15 @@
[uxbox.common.geom.shapes :as gsh] [uxbox.common.geom.shapes :as gsh]
[uxbox.util.object :as obj] [uxbox.util.object :as obj]
[rumext.util :refer [map->obj]] [rumext.util :refer [map->obj]]
[uxbox.main.ui.shapes.path :as path])) [uxbox.main.ui.shapes.path :as path]
[uxbox.main.refs :as refs]))
(mf/defc outline (mf/defc outline
{::mf/wrap-props false} {::mf/wrap-props false}
[props] [props]
(let [shape (unchecked-get props "shape") (let [zoom (mf/deref refs/selected-zoom)
shape (unchecked-get props "shape")
transform (gsh/transform-matrix shape) transform (gsh/transform-matrix shape)
{:keys [id x y width height]} shape {:keys [id x y width height]} shape
@ -30,7 +32,7 @@
common {:fill "transparent" common {:fill "transparent"
:stroke "#31EFB8" :stroke "#31EFB8"
:strokeWidth "1px" :strokeWidth (/ 1 zoom)
:pointerEvents "none" :pointerEvents "none"
:transform transform} :transform transform}

View file

@ -68,7 +68,8 @@
on-width-change #(on-size-change % :width) on-width-change #(on-size-change % :width)
on-height-change #(on-size-change % :height) on-height-change #(on-size-change % :height)
on-pos-x-change #(on-position-change % :x) on-pos-x-change #(on-position-change % :x)
on-pos-y-change #(on-position-change % :y)] on-pos-y-change #(on-position-change % :y)
select-all #(-> % (dom/get-target) (.select))]
[:div.element-set [:div.element-set
@ -103,6 +104,7 @@
[:div.input-element.pixels [:div.input-element.pixels
[:input.input-text {:type "number" [:input.input-text {:type "number"
:min "0" :min "0"
:on-click select-all
:on-change on-width-change :on-change on-width-change
:value (-> (:width shape) :value (-> (:width shape)
(math/precision 2) (math/precision 2)
@ -112,6 +114,7 @@
[:div.input-element.pixels [:div.input-element.pixels
[:input.input-text {:type "number" [:input.input-text {:type "number"
:min "0" :min "0"
:on-click select-all
:on-change on-height-change :on-change on-height-change
:value (-> (:height shape) :value (-> (:height shape)
(math/precision 2) (math/precision 2)
@ -123,6 +126,7 @@
[:div.input-element.pixels [:div.input-element.pixels
[:input.input-text {:placeholder "x" [:input.input-text {:placeholder "x"
:type "number" :type "number"
:on-click select-all
:on-change on-pos-x-change :on-change on-pos-x-change
:value (-> (:x shape) :value (-> (:x shape)
(math/precision 2) (math/precision 2)
@ -130,6 +134,7 @@
[:div.input-element.pixels [:div.input-element.pixels
[:input.input-text {:placeholder "y" [:input.input-text {:placeholder "y"
:type "number" :type "number"
:on-click select-all
:on-change on-pos-y-change :on-change on-pos-y-change
:value (-> (:y shape) :value (-> (:y shape)
(math/precision 2) (math/precision 2)

View file

@ -22,7 +22,6 @@
[uxbox.util.i18n :refer [t] :as i18n])) [uxbox.util.i18n :refer [t] :as i18n]))
;; -- User/drawing coords ;; -- User/drawing coords
(mf/defc measures-menu (mf/defc measures-menu
[{:keys [shape options] :as props}] [{:keys [shape options] :as props}]
(let [options (or options #{:size :position :rotation :radius}) (let [options (or options #{:size :position :rotation :radius})
@ -72,7 +71,8 @@
on-width-change #(on-size-change % :width) on-width-change #(on-size-change % :width)
on-height-change #(on-size-change % :height) on-height-change #(on-size-change % :height)
on-pos-x-change #(on-position-change % :x) on-pos-x-change #(on-position-change % :x)
on-pos-y-change #(on-position-change % :y)] on-pos-y-change #(on-position-change % :y)
select-all #(-> % (dom/get-target) (.select))]
[:div.element-set [:div.element-set
[:div.element-set-content [:div.element-set-content
@ -90,6 +90,7 @@
[:input.input-text {:type "number" [:input.input-text {:type "number"
:min "0" :min "0"
:no-validate true :no-validate true
:on-click select-all
:on-change on-width-change :on-change on-width-change
:value (str (-> (:width shape) :value (str (-> (:width shape)
(d/coalesce 0) (d/coalesce 0)
@ -100,6 +101,7 @@
[:input.input-text {:type "number" [:input.input-text {:type "number"
:min "0" :min "0"
:no-validate true :no-validate true
:on-click select-all
:on-change on-height-change :on-change on-height-change
:value (str (-> (:height shape) :value (str (-> (:height shape)
(d/coalesce 0) (d/coalesce 0)
@ -113,12 +115,14 @@
[:input.input-text {:placeholder "x" [:input.input-text {:placeholder "x"
:type "number" :type "number"
:no-validate true :no-validate true
:on-click select-all
:on-change on-pos-x-change :on-change on-pos-x-change
:value (-> shape :selrect :x (math/precision 2))}]] :value (-> shape :selrect :x (math/precision 2))}]]
[:div.input-element.Yaxis [:div.input-element.Yaxis
[:input.input-text {:placeholder "y" [:input.input-text {:placeholder "y"
:type "number" :type "number"
:no-validate true :no-validate true
:on-click select-all
:on-change on-pos-y-change :on-change on-pos-y-change
:value (-> shape :selrect :y (math/precision 2))}]]]) :value (-> shape :selrect :y (math/precision 2))}]]])
@ -132,6 +136,7 @@
:no-validate true :no-validate true
:min "0" :min "0"
:max "359" :max "359"
:on-click select-all
:on-change on-rotation-change :on-change on-rotation-change
:value (str (-> (:rotation shape) :value (str (-> (:rotation shape)
(d/coalesce 0) (d/coalesce 0)
@ -154,6 +159,7 @@
[:input.input-text [:input.input-text
{:placeholder "rx" {:placeholder "rx"
:type "number" :type "number"
:on-click select-all
:on-change on-radius-change :on-change on-radius-change
:value (str (-> (:rx shape) :value (str (-> (:rx shape)
(d/coalesce 0) (d/coalesce 0)

View file

@ -77,7 +77,8 @@
dom/get-target dom/get-target
dom/get-value dom/get-value
string->opacity string->opacity
change-opacity))] change-opacity))
select-all #(-> % (dom/get-target) (.select))]
(mf/use-effect (mf/use-effect
(mf/deps value) (mf/deps value)
@ -91,12 +92,14 @@
[:div.color-info [:div.color-info
[:input {:value (-> @state :value (subs 1)) [:input {:value (-> @state :value (subs 1))
:pattern "^[0-9a-fA-F]{0,6}$" :pattern "^[0-9a-fA-F]{0,6}$"
:on-click select-all
:on-change handle-input-color-change}]] :on-change handle-input-color-change}]]
(when (not disable-opacity) (when (not disable-opacity)
[:div.input-element.percentail [:div.input-element.percentail
[:input.input-text {:type "number" [:input.input-text {:type "number"
:value (-> @state :opacity opacity->string) :value (-> @state :opacity opacity->string)
:on-click select-all
:on-change handle-opacity-change :on-change handle-opacity-change
:min "0" :min "0"
:max "100"}]]) :max "100"}]])