mirror of
https://github.com/penpot/penpot.git
synced 2026-04-25 11:18:36 +00:00
125 lines
4.3 KiB
Clojure
125 lines
4.3 KiB
Clojure
(ns app.main.data.nitrate
|
|
(:require
|
|
[app.common.data.macros :as dm]
|
|
[app.common.uri :as u]
|
|
[app.config :as cf]
|
|
[app.main.data.common :as dcm]
|
|
[app.main.data.modal :as modal]
|
|
[app.main.data.notifications :as ntf]
|
|
[app.main.data.team :as dt]
|
|
[app.main.repo :as rp]
|
|
[app.main.router :as rt]
|
|
[app.main.store :as st]
|
|
[app.util.i18n :refer [tr]]
|
|
[app.util.storage :as storage]
|
|
[beicon.v2.core :as rx]
|
|
[potok.v2.core :as ptk]))
|
|
|
|
(def ^:private nitrate-entry-active-key ::nitrate-entry-active)
|
|
(def ^:private nitrate-entry-pending-popup-key ::nitrate-entry-pending-popup)
|
|
|
|
(defn activate-nitrate-entry-popup!
|
|
[]
|
|
(binding [storage/*sync* true]
|
|
(swap! storage/storage assoc
|
|
nitrate-entry-active-key true
|
|
nitrate-entry-pending-popup-key true)))
|
|
|
|
(defn nitrate-entry-active?
|
|
[]
|
|
(true? (get storage/storage nitrate-entry-active-key)))
|
|
|
|
(defn nitrate-entry-popup-pending?
|
|
[]
|
|
(true? (get storage/storage nitrate-entry-pending-popup-key)))
|
|
|
|
(defn consume-nitrate-entry-popup!
|
|
[]
|
|
(binding [storage/*sync* true]
|
|
(swap! storage/storage dissoc
|
|
nitrate-entry-active-key
|
|
nitrate-entry-pending-popup-key)))
|
|
|
|
(defn show-nitrate-popup
|
|
[popup-type]
|
|
(ptk/reify ::show-nitrate-popup
|
|
ptk/WatchEvent
|
|
(watch [_ _ _]
|
|
(->> (rp/cmd! ::get-nitrate-connectivity {})
|
|
(rx/map (fn [connectivity]
|
|
(modal/show popup-type (or connectivity {}))))))))
|
|
|
|
(defn go-to-nitrate-cc
|
|
([]
|
|
(st/emit! (rt/nav-raw :href "/control-center/")))
|
|
([{:keys [organization-id organization-slug]}]
|
|
(if (and organization-id organization-slug)
|
|
(let [href (dm/str "/control-center/org/"
|
|
(u/percent-encode organization-slug)
|
|
"/"
|
|
(u/percent-encode (str organization-id))
|
|
"/people/")]
|
|
(st/emit! (rt/nav-raw :href href)))
|
|
(st/emit! (rt/nav-raw :href "/control-center/")))))
|
|
|
|
(defn go-to-nitrate-cc-create-org
|
|
[]
|
|
(st/emit! (rt/nav-raw :href "/control-center/?action=create-org")))
|
|
|
|
(def go-to-subscription-url (u/join cf/public-uri "#/settings/subscriptions"))
|
|
|
|
(defn go-to-nitrate-billing
|
|
[]
|
|
(let [href (dm/str "/control-center/licenses/billing?callback=" (js/encodeURIComponent go-to-subscription-url))]
|
|
(st/emit! (rt/nav-raw :href href))))
|
|
|
|
(defn go-to-buy-nitrate-license
|
|
([subscription]
|
|
(go-to-buy-nitrate-license subscription nil))
|
|
([subscription callback]
|
|
(let [params (cond-> {:subscription subscription}
|
|
callback (assoc :callback callback))
|
|
href (dm/str "/control-center/licenses/start?" (u/map->query-string params))]
|
|
(st/emit! (rt/nav-raw :href href)))))
|
|
|
|
(defn is-valid-license?
|
|
[profile]
|
|
(and (contains? cf/flags :nitrate)
|
|
;; Possible values: "active" "canceled" "incomplete" "incomplete_expired" "past_due" "paused" "trialing" "unpaid"
|
|
(contains? #{"active" "past_due" "trialing"}
|
|
(dm/get-in profile [:subscription :status]))))
|
|
|
|
(defn leave-org
|
|
[{:keys [org-id org-name default-team-id teams-to-delete teams-to-leave on-error] :as params}]
|
|
|
|
(ptk/reify ::leave-org
|
|
ptk/WatchEvent
|
|
(watch [_ state _]
|
|
(let [profile-team-id (dm/get-in state [:profile :default-team-id])]
|
|
(->> (rp/cmd! ::leave-org {:org-id org-id
|
|
:org-name org-name
|
|
:default-team-id default-team-id
|
|
:teams-to-delete teams-to-delete
|
|
:teams-to-leave teams-to-leave})
|
|
(rx/mapcat
|
|
(fn [_]
|
|
(rx/of
|
|
(dt/fetch-teams)
|
|
(dcm/go-to-dashboard-recent :team-id profile-team-id)
|
|
(modal/hide)
|
|
(ntf/show {:content (tr "dasboard.leave-org.toast" org-name)
|
|
:type :toast
|
|
:level :success}))))
|
|
(rx/catch on-error))))))
|
|
|
|
|
|
(defn remove-team-from-org
|
|
[{:keys [team-id organization-id organization-name] :as params}]
|
|
(ptk/reify ::remove-team-from-org
|
|
ptk/WatchEvent
|
|
(watch [_ _ _]
|
|
(->> (rp/cmd! ::remove-team-from-org {:team-id team-id :organization-id organization-id :organization-name organization-name})
|
|
(rx/mapcat
|
|
(fn [_]
|
|
(rx/of
|
|
(modal/hide)))))))) |