mirror of
https://github.com/penpot/penpot.git
synced 2025-05-07 13:35:54 +02:00
133 lines
5 KiB
Clojure
133 lines
5 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.dashboard.project-menu
|
|
(:require
|
|
[app.main.data.dashboard :as dd]
|
|
[app.main.data.messages :as msg]
|
|
[app.main.data.modal :as modal]
|
|
[app.main.refs :as refs]
|
|
[app.main.store :as st]
|
|
[app.main.ui.components.context-menu-a11y :refer [context-menu-a11y]]
|
|
[app.main.ui.context :as ctx]
|
|
[app.main.ui.dashboard.import :as udi]
|
|
[app.util.dom :as dom]
|
|
[app.util.i18n :as i18n :refer [tr]]
|
|
[app.util.router :as rt]
|
|
[rumext.v2 :as mf]))
|
|
|
|
(mf/defc project-menu
|
|
[{:keys [project show? on-edit on-menu-close top left on-import] :as props}]
|
|
(let [top (or top 0)
|
|
left (or left 0)
|
|
|
|
current-team-id (mf/use-ctx ctx/current-team-id)
|
|
teams (mf/deref refs/teams)
|
|
teams (-> teams (dissoc current-team-id) vals vec)
|
|
|
|
on-duplicate-success
|
|
(fn [new-project]
|
|
(st/emit! (msg/success (tr "dashboard.success-duplicate-project"))
|
|
(rt/nav :dashboard-files
|
|
{:team-id (:team-id new-project)
|
|
:project-id (:id new-project)})))
|
|
|
|
on-duplicate
|
|
(fn []
|
|
(st/emit! (dd/duplicate-project
|
|
(with-meta project {:on-success on-duplicate-success}))))
|
|
|
|
toggle-pin
|
|
#(st/emit! (dd/toggle-project-pin project))
|
|
|
|
on-move-success
|
|
(fn [team-id]
|
|
(st/emit! (dd/go-to-projects team-id)))
|
|
|
|
on-move
|
|
(fn [team-id]
|
|
(let [data {:id (:id project) :team-id team-id}
|
|
mdata {:on-success #(on-move-success team-id)}]
|
|
#(st/emit! (msg/success (tr "dashboard.success-move-project"))
|
|
(dd/move-project (with-meta data mdata)))))
|
|
|
|
delete-fn
|
|
(fn [_]
|
|
(st/emit! (msg/success (tr "dashboard.success-delete-project"))
|
|
(dd/delete-project project)
|
|
(dd/go-to-projects (:team-id project))))
|
|
|
|
on-delete
|
|
#(st/emit!
|
|
(modal/show
|
|
{:type :confirm
|
|
:title (tr "modals.delete-project-confirm.title")
|
|
:message (tr "modals.delete-project-confirm.message")
|
|
:accept-label (tr "modals.delete-project-confirm.accept")
|
|
:on-accept delete-fn}))
|
|
|
|
file-input (mf/use-ref nil)
|
|
|
|
on-import-files
|
|
(mf/use-callback
|
|
(fn []
|
|
(dom/click (mf/ref-val file-input))))
|
|
|
|
on-finish-import
|
|
(mf/use-callback
|
|
(fn []
|
|
(when (fn? on-import) (on-import))))
|
|
|
|
options [(when-not (:is-default project)
|
|
{:option-name (tr "labels.rename")
|
|
:id "project-menu-rename"
|
|
:option-handler on-edit
|
|
:data-testid "project-rename"})
|
|
(when-not (:is-default project)
|
|
{:option-name (tr "dashboard.duplicate")
|
|
:id "project-menu-duplicated"
|
|
:option-handler on-duplicate
|
|
:data-testid "project-duplicate"})
|
|
(when-not (:is-default project)
|
|
{:option-name (tr "dashboard.pin-unpin")
|
|
:id "project-menu-pin"
|
|
:option-handler toggle-pin})
|
|
|
|
(when (and (seq teams) (not (:is-default project)))
|
|
{:option-name (tr "dashboard.move-to")
|
|
:id "project-menu-move-to"
|
|
:sub-options (for [team teams]
|
|
{:option-name (:name team)
|
|
:id (:name team)
|
|
:option-handler (on-move (:id team))})
|
|
:data-testid "project-move-to"})
|
|
(when (some? on-import)
|
|
{:option-name (tr "dashboard.import")
|
|
:id "project-menu-import"
|
|
:option-handler on-import-files
|
|
:data-testid "file-import"})
|
|
(when-not (:is-default project)
|
|
{:option-name :separator})
|
|
(when-not (:is-default project)
|
|
{:option-name (tr "labels.delete")
|
|
:id "project-menu-delete"
|
|
:option-handler on-delete
|
|
:data-testid "project-delete"})]]
|
|
|
|
[:*
|
|
[:& udi/import-form {:ref file-input
|
|
:project-id (:id project)
|
|
:on-finish-import on-finish-import}]
|
|
[:& context-menu-a11y
|
|
{:on-close on-menu-close
|
|
:show show?
|
|
:fixed? (or (not= top 0) (not= left 0))
|
|
:min-width? true
|
|
:top top
|
|
:left left
|
|
:options options
|
|
:workspace false}]]))
|
|
|