mirror of
https://github.com/penpot/penpot.git
synced 2025-03-13 00:01:51 -05:00
121 lines
3.8 KiB
Clojure
121 lines
3.8 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.settings.profile
|
|
(:require-macros [app.main.style :as stl])
|
|
(:require
|
|
[app.common.spec :as us]
|
|
[app.config :as cf]
|
|
[app.main.data.messages :as msg]
|
|
[app.main.data.modal :as modal]
|
|
[app.main.data.users :as du]
|
|
[app.main.refs :as refs]
|
|
[app.main.store :as st]
|
|
[app.main.ui.components.file-uploader :refer [file-uploader]]
|
|
[app.main.ui.components.forms :as fm]
|
|
[app.util.dom :as dom]
|
|
[app.util.i18n :as i18n :refer [tr]]
|
|
[cljs.spec.alpha :as s]
|
|
[rumext.v2 :as mf]))
|
|
|
|
(s/def ::fullname ::us/not-empty-string)
|
|
(s/def ::email ::us/email)
|
|
|
|
(s/def ::profile-form
|
|
(s/keys :req-un [::fullname ::email]))
|
|
|
|
(defn- on-submit
|
|
[form _event]
|
|
(let [data (:clean-data @form)]
|
|
(st/emit! (du/update-profile data)
|
|
(du/persist-profile)
|
|
(msg/success (tr "notifications.profile-saved")))))
|
|
|
|
;; --- Profile Form
|
|
|
|
(mf/defc profile-form
|
|
[]
|
|
(let [profile (mf/deref refs/profile)
|
|
form (fm/use-form :spec ::profile-form
|
|
:initial profile
|
|
:validators [(fm/validate-length :fullname fm/max-length-allowed (tr "auth.name.too-long"))
|
|
(fm/validate-not-empty :fullname (tr "auth.name.not-all-space"))])
|
|
|
|
handle-show-change-email
|
|
(mf/use-callback
|
|
#(modal/show! :change-email {}))
|
|
|
|
handle-show-delete-account
|
|
(mf/use-callback
|
|
#(modal/show! :delete-account {}))]
|
|
|
|
[:& fm/form {:on-submit on-submit
|
|
:form form
|
|
:class (stl/css :profile-form)}
|
|
[:div {:class (stl/css :fields-row)}
|
|
[:& fm/input
|
|
{:type "text"
|
|
:name :fullname
|
|
:label (tr "dashboard.your-name")}]]
|
|
|
|
[:div {:class (stl/css :fields-row)
|
|
:on-click handle-show-change-email}
|
|
[:& fm/input
|
|
{:type "email"
|
|
:name :email
|
|
:disabled true
|
|
:label (tr "dashboard.your-email")}]
|
|
|
|
[:div {:class (stl/css :options)}
|
|
[:div.change-email
|
|
[:a {:on-click handle-show-change-email}
|
|
(tr "dashboard.change-email")]]]]
|
|
|
|
[:> fm/submit-button*
|
|
{:label (tr "dashboard.save-settings")
|
|
:disabled (empty? (:touched @form))
|
|
:class (stl/css :btn-primary)}]
|
|
|
|
[:div {:class (stl/css :links)}
|
|
[:div {:class (stl/css :link-item)}
|
|
[:a {:on-click handle-show-delete-account
|
|
:data-test "remove-acount-btn"}
|
|
(tr "dashboard.remove-account")]]]]))
|
|
|
|
;; --- Profile Photo Form
|
|
|
|
(mf/defc profile-photo-form []
|
|
(let [file-input (mf/use-ref nil)
|
|
profile (mf/deref refs/profile)
|
|
photo (cf/resolve-profile-photo-url profile)
|
|
on-image-click #(dom/click (mf/ref-val file-input))
|
|
|
|
on-file-selected
|
|
(fn [file]
|
|
(st/emit! (du/update-photo file)))]
|
|
|
|
[:form {:class (stl/css :avatar-form)}
|
|
[:div {:class (stl/css :image-change-field)}
|
|
[:span {:class (stl/css :update-overlay)
|
|
:on-click on-image-click} (tr "labels.update")]
|
|
[:img {:src photo}]
|
|
[:& file-uploader {:accept "image/jpeg,image/png"
|
|
:multi false
|
|
:ref file-input
|
|
:on-selected on-file-selected
|
|
:data-test "profile-image-input"}]]]))
|
|
|
|
;; --- Profile Page
|
|
|
|
(mf/defc profile-page []
|
|
(mf/with-effect []
|
|
(dom/set-html-title (tr "title.settings.profile")))
|
|
[:div {:class (stl/css :dashboard-settings)}
|
|
[:div {:class (stl/css :form-container)}
|
|
[:h2 (tr "labels.profile")]
|
|
[:& profile-photo-form]
|
|
[:& profile-form]]])
|
|
|