@@ -5,20 +5,17 @@ import { useRouter } from "next/navigation";
5
5
import { useState , useEffect } from "react" ;
6
6
import { useForm } from "react-hook-form" ;
7
7
8
- import LicenseRequired from "@calcom/features/ee/common/components/LicenseRequired" ;
9
8
import BrandColorsForm from "@calcom/features/ee/components/BrandColorsForm" ;
10
9
import { AppearanceSkeletonLoader } from "@calcom/features/ee/components/CommonSkeletonLoaders" ;
11
10
import SectionBottomActions from "@calcom/features/settings/SectionBottomActions" ;
12
11
import ThemeLabel from "@calcom/features/settings/ThemeLabel" ;
13
- import { getLayout } from "@calcom/features/settings/layouts/SettingsLayout" ;
14
12
import { DEFAULT_LIGHT_BRAND_COLOR , DEFAULT_DARK_BRAND_COLOR } from "@calcom/lib/constants" ;
15
13
import { APP_NAME } from "@calcom/lib/constants" ;
16
14
import { useLocale } from "@calcom/lib/hooks/useLocale" ;
17
15
import { MembershipRole } from "@calcom/prisma/enums" ;
18
16
import { trpc } from "@calcom/trpc/react" ;
19
17
import type { RouterOutputs } from "@calcom/trpc/react" ;
20
- import { Button , Form , Meta , showToast , SettingsToggle , Avatar , ImageUploader } from "@calcom/ui" ;
21
- import { Icon } from "@calcom/ui" ;
18
+ import { Button , Form , showToast , SettingsToggle } from "@calcom/ui" ;
22
19
23
20
type BrandColorsFormValues = {
24
21
brandColor : string ;
@@ -27,7 +24,6 @@ type BrandColorsFormValues = {
27
24
28
25
const OrgAppearanceView = ( {
29
26
currentOrg,
30
- isAdminOrOwner,
31
27
} : {
32
28
currentOrg : RouterOutputs [ "viewer" ] [ "organizations" ] [ "listCurrent" ] ;
33
29
isAdminOrOwner : boolean ;
@@ -79,134 +75,79 @@ const OrgAppearanceView = ({
79
75
} ;
80
76
81
77
return (
82
- < LicenseRequired >
83
- < Meta
84
- title = { t ( "appearance" ) }
85
- description = { t ( "appearance_org_description" ) }
86
- borderInShellHeader = { false }
87
- />
88
- { isAdminOrOwner ? (
89
- < div >
90
- < div className = "my-6" >
91
- < div className = "flex items-center text-sm" >
92
- < Avatar
93
- alt = "calVideoLogo"
94
- imageSrc = { currentOrg ?. calVideoLogo }
95
- fallback = { < Icon name = "plus" className = "text-subtle h-6 w-6" /> }
96
- size = "lg"
97
- />
98
- < div className = "ms-4" >
99
- < div className = "flex gap-2" >
100
- < ImageUploader
101
- target = "avatar"
102
- id = "cal-video-logo-upload"
103
- buttonMsg = {
104
- currentOrg ?. calVideoLogo ? t ( "update_cal_video_logo" ) : t ( "upload_cal_video_logo" )
105
- }
106
- handleAvatarChange = { ( newLogo ) => {
107
- mutation . mutate ( {
108
- calVideoLogo : newLogo ,
109
- } ) ;
110
- } }
111
- disabled = { mutation . isPending }
112
- imageSrc = { currentOrg ?. calVideoLogo ?? undefined }
113
- uploadInstruction = { t ( "cal_video_logo_upload_instruction" ) }
114
- triggerButtonColor = { currentOrg ?. calVideoLogo ? "secondary" : "primary" }
115
- />
116
- { currentOrg ?. calVideoLogo && (
117
- < Button
118
- color = "destructive"
119
- disabled = { mutation . isPending }
120
- onClick = { ( ) => {
121
- mutation . mutate ( {
122
- calVideoLogo : null ,
123
- } ) ;
124
- } } >
125
- { t ( "remove" ) }
126
- </ Button >
127
- ) }
128
- </ div >
129
- </ div >
130
- </ div >
78
+ < div >
79
+ < Form
80
+ form = { themeForm }
81
+ handleSubmit = { ( value ) => {
82
+ mutation . mutate ( {
83
+ theme : value . theme ?? null ,
84
+ } ) ;
85
+ } } >
86
+ < div className = "border-subtle mt-6 flex items-center rounded-t-xl border p-6 text-sm" >
87
+ < div >
88
+ < p className = "text-default text-base font-semibold" > { t ( "theme" ) } </ p >
89
+ < p className = "text-default" > { t ( "theme_applies_note" ) } </ p >
131
90
</ div >
132
- < Form
133
- form = { themeForm }
134
- handleSubmit = { ( value ) => {
135
- mutation . mutate ( {
136
- theme : value . theme ?? null ,
137
- } ) ;
138
- } } >
139
- < div className = "border-subtle mt-6 flex items-center rounded-t-xl border p-6 text-sm" >
140
- < div >
141
- < p className = "text-default text-base font-semibold" > { t ( "theme" ) } </ p >
142
- < p className = "text-default" > { t ( "theme_applies_note" ) } </ p >
143
- </ div >
144
- </ div >
145
- < div className = "border-subtle flex flex-col justify-between border-x px-6 py-8 sm:flex-row" >
146
- < ThemeLabel
147
- variant = "system"
148
- value = { undefined }
149
- label = { t ( "theme_system" ) }
150
- defaultChecked = { currentOrg . theme === null }
151
- register = { themeForm . register }
152
- />
153
- < ThemeLabel
154
- variant = "light"
155
- value = "light"
156
- label = { t ( "light" ) }
157
- defaultChecked = { currentOrg . theme === "light" }
158
- register = { themeForm . register }
159
- />
160
- < ThemeLabel
161
- variant = "dark"
162
- value = "dark"
163
- label = { t ( "dark" ) }
164
- defaultChecked = { currentOrg . theme === "dark" }
165
- register = { themeForm . register }
166
- />
167
- </ div >
168
- < SectionBottomActions className = "mb-6" align = "end" >
169
- < Button
170
- disabled = { isOrgThemeSubmitting || ! isOrgThemeDirty }
171
- type = "submit"
172
- data-testid = "update-org-theme-btn"
173
- color = "primary" >
174
- { t ( "update" ) }
175
- </ Button >
176
- </ SectionBottomActions >
177
- </ Form >
178
-
179
- < Form
180
- form = { brandColorsFormMethods }
181
- handleSubmit = { ( values ) => {
182
- onBrandColorsFormSubmit ( values ) ;
183
- } } >
184
- < BrandColorsForm
185
- onSubmit = { onBrandColorsFormSubmit }
186
- brandColor = { currentOrg ?. brandColor ?? DEFAULT_LIGHT_BRAND_COLOR }
187
- darkBrandColor = { currentOrg ?. darkBrandColor ?? DEFAULT_DARK_BRAND_COLOR }
188
- />
189
- </ Form >
190
-
191
- < SettingsToggle
192
- toggleSwitchAtTheEnd = { true }
193
- title = { t ( "disable_cal_branding" , { appName : APP_NAME } ) }
194
- disabled = { mutation ?. isPending }
195
- description = { t ( "removes_cal_branding" , { appName : APP_NAME } ) }
196
- checked = { hideBrandingValue }
197
- onCheckedChange = { ( checked ) => {
198
- setHideBrandingValue ( checked ) ;
199
- mutation . mutate ( { hideBranding : checked } ) ;
200
- } }
201
- switchContainerClassName = "mt-6"
202
- />
203
91
</ div >
204
- ) : (
205
- < div className = "py-5" >
206
- < span className = "text-default text-sm" > { t ( "only_owner_change" ) } </ span >
92
+ < div className = "border-subtle flex flex-col justify-between border-x px-6 py-8 sm:flex-row" >
93
+ < ThemeLabel
94
+ variant = "system"
95
+ value = { undefined }
96
+ label = { t ( "theme_system" ) }
97
+ defaultChecked = { currentOrg . theme === null }
98
+ register = { themeForm . register }
99
+ />
100
+ < ThemeLabel
101
+ variant = "light"
102
+ value = "light"
103
+ label = { t ( "light" ) }
104
+ defaultChecked = { currentOrg . theme === "light" }
105
+ register = { themeForm . register }
106
+ />
107
+ < ThemeLabel
108
+ variant = "dark"
109
+ value = "dark"
110
+ label = { t ( "dark" ) }
111
+ defaultChecked = { currentOrg . theme === "dark" }
112
+ register = { themeForm . register }
113
+ />
207
114
</ div >
208
- ) }
209
- </ LicenseRequired >
115
+ < SectionBottomActions className = "mb-6" align = "end" >
116
+ < Button
117
+ disabled = { isOrgThemeSubmitting || ! isOrgThemeDirty }
118
+ type = "submit"
119
+ data-testid = "update-org-theme-btn"
120
+ color = "primary" >
121
+ { t ( "update" ) }
122
+ </ Button >
123
+ </ SectionBottomActions >
124
+ </ Form >
125
+
126
+ < Form
127
+ form = { brandColorsFormMethods }
128
+ handleSubmit = { ( values ) => {
129
+ onBrandColorsFormSubmit ( values ) ;
130
+ } } >
131
+ < BrandColorsForm
132
+ onSubmit = { onBrandColorsFormSubmit }
133
+ brandColor = { currentOrg ?. brandColor ?? DEFAULT_LIGHT_BRAND_COLOR }
134
+ darkBrandColor = { currentOrg ?. darkBrandColor ?? DEFAULT_DARK_BRAND_COLOR }
135
+ />
136
+ </ Form >
137
+
138
+ < SettingsToggle
139
+ toggleSwitchAtTheEnd = { true }
140
+ title = { t ( "disable_cal_branding" , { appName : APP_NAME } ) }
141
+ disabled = { mutation ?. isPending }
142
+ description = { t ( "removes_cal_branding" , { appName : APP_NAME } ) }
143
+ checked = { hideBrandingValue }
144
+ onCheckedChange = { ( checked ) => {
145
+ setHideBrandingValue ( checked ) ;
146
+ mutation . mutate ( { hideBranding : checked } ) ;
147
+ } }
148
+ switchContainerClassName = "mt-6"
149
+ />
150
+ </ div >
210
151
) ;
211
152
} ;
212
153
@@ -237,6 +178,4 @@ const OrgAppearanceViewWrapper = () => {
237
178
return < OrgAppearanceView currentOrg = { currentOrg } isAdminOrOwner = { isAdminOrOwner } /> ;
238
179
} ;
239
180
240
- OrgAppearanceViewWrapper . getLayout = getLayout ;
241
-
242
181
export default OrgAppearanceViewWrapper ;
0 commit comments