mirror of
https://github.com/penpot/penpot.git
synced 2025-06-07 00:41:37 +02:00
284 lines
11 KiB
Clojure
284 lines
11 KiB
Clojure
;; 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
|
|
|
|
(ns app.main.ui.export
|
|
"Assets exportation common components."
|
|
(:require-macros [app.main.style :as stl])
|
|
(:require
|
|
[app.common.colors :as clr]
|
|
[app.common.data :as d]
|
|
[app.common.data.macros :as dm]
|
|
[app.main.data.exports :as de]
|
|
[app.main.data.modal :as modal]
|
|
[app.main.refs :as refs]
|
|
[app.main.store :as st]
|
|
[app.main.ui.context :as ctx]
|
|
[app.main.ui.icons :as i]
|
|
[app.main.ui.workspace.shapes :refer [shape-wrapper]]
|
|
[app.util.dom :as dom]
|
|
[app.util.i18n :as i18n :refer [tr c]]
|
|
[app.util.strings :as ust]
|
|
[cuerdas.core :as str]
|
|
[rumext.v2 :as mf]))
|
|
|
|
(mf/defc export-multiple-dialog
|
|
[{:keys [exports title cmd no-selection]}]
|
|
(let [lstate (mf/deref refs/export)
|
|
in-progress? (:in-progress lstate)
|
|
|
|
exports (mf/use-state exports)
|
|
|
|
all-exports (deref exports)
|
|
all-checked? (every? :enabled all-exports)
|
|
all-unchecked? (every? (complement :enabled) all-exports)
|
|
|
|
enabled-exports (into []
|
|
(comp (filter :enabled)
|
|
(map #(dissoc % :shape :enabled)))
|
|
all-exports)
|
|
|
|
cancel-fn
|
|
(fn [event]
|
|
(dom/prevent-default event)
|
|
(st/emit! (modal/hide)))
|
|
|
|
accept-fn
|
|
(fn [event]
|
|
(dom/prevent-default event)
|
|
(st/emit! (modal/hide)
|
|
(de/request-multiple-export
|
|
{:exports enabled-exports
|
|
:cmd cmd})))
|
|
|
|
on-toggle-enabled
|
|
(fn [index]
|
|
(swap! exports update-in [index :enabled] not))
|
|
|
|
change-all
|
|
(fn [_]
|
|
(swap! exports (fn [exports]
|
|
(mapv #(assoc % :enabled (not all-checked?)) exports))))]
|
|
[:div.modal-overlay
|
|
[:div.modal-container.export-multiple-dialog
|
|
{:class (when (empty? all-exports) "empty")}
|
|
|
|
[:div.modal-header
|
|
[:div.modal-header-title
|
|
[:h2 title]]
|
|
|
|
[:div.modal-close-button
|
|
{:on-click cancel-fn} i/close]]
|
|
|
|
[:*
|
|
[:div.modal-content
|
|
(if (> (count all-exports) 0)
|
|
[:*
|
|
[:div.header
|
|
[:div.field.check {:on-click change-all}
|
|
(cond
|
|
all-checked? [:span.checked i/checkbox-checked]
|
|
all-unchecked? [:span.unchecked i/checkbox-unchecked]
|
|
:else [:span.intermediate i/checkbox-intermediate])]
|
|
[:div.field.title (tr "dashboard.export-multiple.selected"
|
|
(c (count enabled-exports))
|
|
(c (count all-exports)))]]
|
|
|
|
[:div.body
|
|
(for [[index {:keys [shape suffix] :as export}] (d/enumerate @exports)]
|
|
(let [{:keys [x y width height]} (:selrect shape)]
|
|
[:div.row
|
|
[:div.field.check {:on-click #(on-toggle-enabled index)}
|
|
(if (:enabled export)
|
|
[:span.checked i/checkbox-checked]
|
|
[:span.unchecked i/checkbox-unchecked])]
|
|
|
|
[:div.field.image
|
|
(if (some? (:thumbnail shape))
|
|
[:img {:src (:thumbnail shape)}]
|
|
[:svg {:view-box (dm/str x " " y " " width " " height)
|
|
:width 24
|
|
:height 20
|
|
:version "1.1"
|
|
:xmlns "http://www.w3.org/2000/svg"
|
|
:xmlnsXlink "http://www.w3.org/1999/xlink"
|
|
;; Fix Chromium bug about color of html texts
|
|
;; https://bugs.chromium.org/p/chromium/issues/detail?id=1244560#c5
|
|
:style {:-webkit-print-color-adjust :exact}
|
|
:fill "none"}
|
|
|
|
[:& shape-wrapper {:shape shape}]])]
|
|
|
|
[:div.field.name (cond-> (:name shape) suffix (str suffix))]
|
|
(when (:scale export)
|
|
[:div.field.scale (dm/str (ust/format-precision (* width (:scale export)) 2) "x"
|
|
(ust/format-precision (* height (:scale export)) 2) "px ")])
|
|
|
|
(when (:type export)
|
|
[:div.field.extension (-> export :type d/name str/upper)])]))]
|
|
|
|
[:div.modal-footer
|
|
[:div.action-buttons
|
|
[:input.cancel-button
|
|
{:type "button"
|
|
:value (tr "labels.cancel")
|
|
:on-click cancel-fn}]
|
|
|
|
[:input.accept-button.primary
|
|
{:class (dom/classnames
|
|
:btn-disabled (or in-progress? all-unchecked?))
|
|
:disabled (or in-progress? all-unchecked?)
|
|
:type "button"
|
|
:value (if in-progress?
|
|
(tr "workspace.options.exporting-object")
|
|
(tr "labels.export"))
|
|
:on-click (when-not in-progress? accept-fn)}]]]]
|
|
|
|
[:& no-selection])]]]]))
|
|
|
|
(mf/defc shapes-no-selection []
|
|
[:div.no-selection
|
|
[:img {:src "images/export-no-shapes.png" :border "0"}]
|
|
[:p (tr "dashboard.export-shapes.no-elements")]
|
|
[:p (tr "dashboard.export-shapes.how-to")]
|
|
[:p [:a {:target "_blank"
|
|
:href "https://help.penpot.app/user-guide/exporting/ "}
|
|
(tr "dashboard.export-shapes.how-to-link")]]])
|
|
|
|
(mf/defc export-shapes-dialog
|
|
{::mf/register modal/components
|
|
::mf/register-as :export-shapes}
|
|
[{:keys [exports]}]
|
|
(let [title (tr "dashboard.export-shapes.title")]
|
|
[:& export-multiple-dialog
|
|
{:exports exports
|
|
:title title
|
|
:cmd :export-shapes
|
|
:no-selection shapes-no-selection}]))
|
|
|
|
(mf/defc export-frames
|
|
{::mf/register modal/components
|
|
::mf/register-as :export-frames}
|
|
[{:keys [exports]}]
|
|
(let [title (tr "dashboard.export-frames.title")]
|
|
[:& export-multiple-dialog
|
|
{:exports exports
|
|
:title title
|
|
:cmd :export-frames}]))
|
|
|
|
(mf/defc export-progress-widget
|
|
{::mf/wrap [mf/memo]}
|
|
[]
|
|
(let [new-css-system (mf/use-ctx ctx/new-css-system)
|
|
state (mf/deref refs/export)
|
|
error? (:error state)
|
|
healthy? (:healthy? state)
|
|
detail-visible? (:detail-visible state)
|
|
widget-visible? (:widget-visible state)
|
|
progress (:progress state)
|
|
exports (:exports state)
|
|
total (count exports)
|
|
complete? (= progress total)
|
|
circ (* 2 Math/PI 12)
|
|
pct (- circ (* circ (/ progress total)))
|
|
|
|
pwidth (if error?
|
|
280
|
|
(/ (* progress 280) total))
|
|
color (if new-css-system
|
|
(cond
|
|
error? clr/new-danger
|
|
healthy? clr/new-primary
|
|
(not healthy?) clr/new-warning)
|
|
(cond
|
|
error? clr/danger
|
|
healthy? clr/primary
|
|
(not healthy?) clr/warning))
|
|
title (cond
|
|
error? (tr "workspace.options.exporting-object-error")
|
|
complete? (tr "workspace.options.exporting-complete")
|
|
healthy? (tr "workspace.options.exporting-object")
|
|
(not healthy?) (tr "workspace.options.exporting-object-slow"))
|
|
|
|
retry-last-export
|
|
(mf/use-fn #(st/emit! (de/retry-last-export)))
|
|
|
|
toggle-detail-visibility
|
|
(mf/use-fn #(st/emit! (de/toggle-detail-visibililty)))]
|
|
|
|
(if new-css-system
|
|
(when detail-visible?
|
|
[:div {:class (stl/css :export-progress-modal-overlay)}
|
|
[:div {:class (stl/css :export-progress-modal-container)}
|
|
[:div {:class (stl/css :export-progress-modal-header)}
|
|
[:p {:class (stl/css :export-progress-modal-title)}
|
|
[:span {:class (stl/css :title-text)}
|
|
title]
|
|
(if error?
|
|
[:button {:class (stl/css :retry-btn)
|
|
:on-click retry-last-export} (tr "workspace.options.retry")]
|
|
[:p {:class (stl/css :progress)} (dm/str progress " / " total)])]
|
|
|
|
[:button {:class (stl/css :modal-close-button)
|
|
:on-click toggle-detail-visibility} i/close-refactor]]
|
|
|
|
[:svg {:class (stl/css :progress-bar)
|
|
:height 5 :width 280}
|
|
[:g
|
|
[:path {:d "M0 0 L280 0"
|
|
:stroke clr/black
|
|
:stroke-width 30}]
|
|
[:path {:d (dm/str "M0 0 L280 0")
|
|
:stroke color
|
|
:stroke-width 30
|
|
:fill "transparent"
|
|
:stroke-dasharray 280
|
|
:stroke-dashoffset (- 280 pwidth)
|
|
:style {:transition "stroke-dashoffset 1s ease-in-out"}}]]]]])
|
|
[:*
|
|
(when widget-visible?
|
|
[:div.export-progress-widget {:on-click toggle-detail-visibility}
|
|
[:svg {:width "32" :height "32"}
|
|
[:circle {:r "12"
|
|
:cx "16"
|
|
:cy "16"
|
|
:fill "transparent"
|
|
:stroke clr/gray-40
|
|
:stroke-width "4"}]
|
|
[:circle {:r "12"
|
|
:cx "16"
|
|
:cy "16"
|
|
:fill "transparent"
|
|
:stroke color
|
|
:stroke-width "4"
|
|
:stroke-dasharray (dm/str circ " " circ)
|
|
:stroke-dashoffset pct
|
|
:transform "rotate(-90 16,16)"
|
|
:style {:transition "stroke-dashoffset 1s ease-in-out"}}]]])
|
|
|
|
(when detail-visible?
|
|
[:div.export-progress-modal-overlay
|
|
[:div.export-progress-modal-container
|
|
[:div.export-progress-modal-header
|
|
[:p.export-progress-modal-title title]
|
|
(if error?
|
|
[:button.btn-secondary.retry {:on-click retry-last-export} (tr "workspace.options.retry")]
|
|
[:p.progress (dm/str progress " / " total)])
|
|
|
|
[:button.modal-close-button {:on-click toggle-detail-visibility} i/close]]
|
|
|
|
[:svg.progress-bar {:height 8 :width 280}
|
|
[:g
|
|
[:path {:d "M0 0 L280 0"
|
|
:stroke clr/gray-10
|
|
:stroke-width 30}]
|
|
[:path {:d (dm/str "M0 0 L280 0")
|
|
:stroke color
|
|
:stroke-width 30
|
|
:fill "transparent"
|
|
:stroke-dasharray 280
|
|
:stroke-dashoffset (- 280 pwidth)
|
|
:style {:transition "stroke-dashoffset 1s ease-in-out"}}]]]]])])))
|
|
|