Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sweepstake
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Arjun Jhukal
sweepstake
Commits
b01ec1f2
Commit
b01ec1f2
authored
Mar 04, 2026
by
Arjun Jhukal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated the minor changes
parent
3f60ac1c
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
142 additions
and
15 deletions
+142
-15
AgeGate.tsx
src/components/organism/dialog/AgeGate.tsx
+5
-0
index.tsx
src/components/pages/auth/register/index.tsx
+10
-11
AddPlayerForm.tsx
...rd/adminDashboard/players/addPlayerForm/AddPlayerForm.tsx
+104
-0
index.tsx
.../dashboard/adminDashboard/players/addPlayerForm/index.tsx
+11
-0
index.tsx
...board/userDashboard/account/profile/editProfile/index.tsx
+8
-3
auth.ts
src/types/auth.ts
+1
-1
player.ts
src/types/player.ts
+3
-0
No files found.
src/components/organism/dialog/AgeGate.tsx
View file @
b01ec1f2
...
@@ -27,6 +27,7 @@ export default function AgeGate() {
...
@@ -27,6 +27,7 @@ export default function AgeGate() {
key
:
process
.
env
.
NEXT_PUBLIC_AGE_CHECKER_KEY
,
key
:
process
.
env
.
NEXT_PUBLIC_AGE_CHECKER_KEY
,
mode
:
"manual"
,
mode
:
"manual"
,
autoload
:
true
,
autoload
:
true
,
show_close
:
true
,
onready
:
()
=>
{
onready
:
()
=>
{
(
window
as
any
).
AgeCheckerAPI
.
show
(
uuid
);
(
window
as
any
).
AgeCheckerAPI
.
show
(
uuid
);
},
},
...
@@ -35,6 +36,10 @@ export default function AgeGate() {
...
@@ -35,6 +36,10 @@ export default function AgeGate() {
handleSuccess
(
verification
.
uuid
);
handleSuccess
(
verification
.
uuid
);
}
}
},
},
onpagehide
:
()
=>
{
(
window
as
any
).
AgeCheckerAPI
.
close
();
// Optional: Handle page hide if needed
}
};
};
// 3. Now load the script
// 3. Now load the script
...
...
src/components/pages/auth/register/index.tsx
View file @
b01ec1f2
...
@@ -65,11 +65,11 @@ const validationSchema = Yup.object().shape({
...
@@ -65,11 +65,11 @@ const validationSchema = Yup.object().shape({
.
email
(
'Must be a valid email'
)
.
email
(
'Must be a valid email'
)
.
max
(
255
)
.
max
(
255
)
.
required
(
'Email is required'
),
.
required
(
'Email is required'
),
displayName
:
Yup
.
string
()
//
displayName: Yup.string()
.
required
(
"Display Name is required"
)
//
.required("Display Name is required")
.
max
(
14
,
"Display Name must be less than 14 characters"
)
//
.max(14, "Display Name must be less than 14 characters")
.
min
(
6
,
"Display Name must be at least 6 characters long"
)
//
.min(6, "Display Name must be at least 6 characters long")
.
matches
(
/^
\S
+$/
,
"Display Name cannot contain spaces"
),
//
.matches(/^\S+$/, "Display Name cannot contain spaces"),
phone
:
Yup
.
string
()
phone
:
Yup
.
string
()
.
required
(
"Phone number is required"
),
.
required
(
"Phone number is required"
),
password
:
Yup
.
string
()
password
:
Yup
.
string
()
...
@@ -94,7 +94,7 @@ const validationSchema = Yup.object().shape({
...
@@ -94,7 +94,7 @@ const validationSchema = Yup.object().shape({
first_name
:
Yup
.
string
().
required
(
'First name is required'
),
first_name
:
Yup
.
string
().
required
(
'First name is required'
),
middle_name
:
Yup
.
string
(),
middle_name
:
Yup
.
string
(),
last_name
:
Yup
.
string
().
required
(
'Last name is required'
),
last_name
:
Yup
.
string
().
required
(
'Last name is required'
),
photoid_number
:
Yup
.
string
().
required
(
'Photo ID is required'
),
//
photoid_number: Yup.string().required('Photo ID is required'),
city
:
Yup
.
string
(),
city
:
Yup
.
string
(),
pob
:
Yup
.
string
().
required
(
'Place of birth is required'
),
pob
:
Yup
.
string
().
required
(
'Place of birth is required'
),
agree
:
Yup
.
boolean
().
required
().
oneOf
([
true
],
'You must agree to the terms and conditions'
),
agree
:
Yup
.
boolean
().
required
().
oneOf
([
true
],
'You must agree to the terms and conditions'
),
...
@@ -160,7 +160,7 @@ export default function RegisterPage() {
...
@@ -160,7 +160,7 @@ export default function RegisterPage() {
password
:
""
,
password
:
""
,
confirmPassword
:
""
,
confirmPassword
:
""
,
phone
:
""
,
phone
:
""
,
photoid_number
:
''
,
//
photoid_number: '',
dob
:
null
as
Dayjs
|
null
,
dob
:
null
as
Dayjs
|
null
,
city
:
''
,
city
:
''
,
pob
:
''
,
pob
:
''
,
...
@@ -190,7 +190,7 @@ export default function RegisterPage() {
...
@@ -190,7 +190,7 @@ export default function RegisterPage() {
middle_name
:
values
.
middle_name
,
middle_name
:
values
.
middle_name
,
last_name
:
values
.
last_name
,
last_name
:
values
.
last_name
,
phone
:
fullPhoneNumber
,
phone
:
fullPhoneNumber
,
photoid_number
:
values
.
photoid_number
,
//
photoid_number: values.photoid_number,
dob
:
formattedDob
,
dob
:
formattedDob
,
city
:
values
.
city
,
city
:
values
.
city
,
pob
:
values
.
pob
,
pob
:
values
.
pob
,
...
@@ -332,9 +332,8 @@ export default function RegisterPage() {
...
@@ -332,9 +332,8 @@ export default function RegisterPage() {
{
/* Photo ID */
}
{
/* Photo ID */
}
<
div
className=
"col-span-2 lg:col-span-3"
>
{
/*
<div className="col-span-2 lg:col-span-3">
<div className="input__field">
<div className="input__field">
{
/* <InputLabel htmlFor="photoid_number"></InputLabel> */
}
<PasswordField
<PasswordField
label='Photo ID Number'
label='Photo ID Number'
name="photoid_number"
name="photoid_number"
...
@@ -345,7 +344,7 @@ export default function RegisterPage() {
...
@@ -345,7 +344,7 @@ export default function RegisterPage() {
/>
/>
<span className="error">{touched.photoid_number && errors.photoid_number}</span>
<span className="error">{touched.photoid_number && errors.photoid_number}</span>
</div>
</div>
</
div
>
</div>
*/
}
{
/* Address */
}
{
/* Address */
}
<
div
className=
"col-span-2 lg:col-span-3"
>
<
div
className=
"col-span-2 lg:col-span-3"
>
...
...
src/components/pages/dashboard/adminDashboard/players/addPlayerForm/AddPlayerForm.tsx
View file @
b01ec1f2
...
@@ -3,8 +3,51 @@ import InputFile from '@/components/atom/InputFile';
...
@@ -3,8 +3,51 @@ import InputFile from '@/components/atom/InputFile';
import
PasswordField
from
'@/components/molecules/PasswordField'
;
import
PasswordField
from
'@/components/molecules/PasswordField'
;
import
{
PlayerProps
,
SinlgePlayerResponseProps
}
from
'@/types/player'
;
import
{
PlayerProps
,
SinlgePlayerResponseProps
}
from
'@/types/player'
;
import
{
Button
,
InputLabel
,
OutlinedInput
}
from
'@mui/material'
;
import
{
Button
,
InputLabel
,
OutlinedInput
}
from
'@mui/material'
;
import
{
DatePicker
,
LocalizationProvider
}
from
'@mui/x-date-pickers'
;
import
{
AdapterDayjs
}
from
'@mui/x-date-pickers/AdapterDayjs'
;
import
dayjs
from
'dayjs'
;
import
{
FormikProps
}
from
'formik'
;
import
{
FormikProps
}
from
'formik'
;
const
formFieldSx
=
{
'& .MuiOutlinedInput-root, & .MuiPickersInputBase-root, & .MuiPickersOutlinedInput-root'
:
{
borderRadius
:
'27px'
,
background
:
'rgba(118, 107, 120, 0.55)'
,
color
:
'#fff'
,
'& .MuiOutlinedInput-notchedOutline, & .MuiPickersOutlinedInput-notchedOutline'
:
{
border
:
'0.576px solid rgba(255, 255, 255, 0.04)'
,
},
'&:hover .MuiOutlinedInput-notchedOutline, &:hover .MuiPickersOutlinedInput-notchedOutline'
:
{
borderColor
:
'rgba(255,255,255,0.2)'
,
},
'&.Mui-focused .MuiOutlinedInput-notchedOutline, &.Mui-focused .MuiPickersOutlinedInput-notchedOutline'
:
{
borderColor
:
'#B801C0'
,
},
},
'& .MuiOutlinedInput-input, & .MuiPickersInputBase-input'
:
{
padding
:
'12px 16px'
,
color
:
'#fff'
,
'&::placeholder'
:
{
color
:
'rgba(255, 255, 255, 0.2)'
,
fontWeight
:
300
,
fontSize
:
'12px'
,
opacity
:
1
,
},
},
'& .MuiInputAdornment-root'
:
{
marginRight
:
'8px'
,
},
'& .MuiInputAdornment-root button'
:
{
color
:
'rgba(255, 255, 255, 0.7)'
,
'&:hover'
:
{
color
:
'#fff'
,
background
:
'rgba(255, 255, 255, 0.08)'
,
}
},
'& .MuiIconButton-root'
:
{
padding
:
'8px'
,
}
};
export
default
function
AddPlayerForm
({
formik
,
id
,
data
,
loading
,
buttonLabel
}:
{
formik
:
FormikProps
<
PlayerProps
>
,
id
?:
string
,
data
?:
SinlgePlayerResponseProps
,
loading
?:
boolean
,
buttonLabel
?:
string
})
{
export
default
function
AddPlayerForm
({
formik
,
id
,
data
,
loading
,
buttonLabel
}:
{
formik
:
FormikProps
<
PlayerProps
>
,
id
?:
string
,
data
?:
SinlgePlayerResponseProps
,
loading
?:
boolean
,
buttonLabel
?:
string
})
{
return
(
return
(
...
@@ -139,6 +182,67 @@ export default function AddPlayerForm({ formik, id, data, loading, buttonLabel }
...
@@ -139,6 +182,67 @@ export default function AddPlayerForm({ formik, id, data, loading, buttonLabel }
</
span
>
</
span
>
</
div
>
</
div
>
{
/* DOB */
}
<
div
className=
"input__field"
>
<
InputLabel
htmlFor=
"dob"
>
Date of Birth
<
span
className=
"text-red-500"
>
*
</
span
></
InputLabel
>
<
LocalizationProvider
dateAdapter=
{
AdapterDayjs
}
>
<
DatePicker
value=
{
formik
.
values
.
dob
?
dayjs
(
formik
.
values
.
dob
)
:
null
}
onChange=
{
(
newValue
)
=>
{
formik
.
setFieldValue
(
'dob'
,
newValue
);
}
}
onClose=
{
()
=>
formik
.
setFieldTouched
(
'dob'
,
true
)
}
slotProps=
{
{
textField
:
{
fullWidth
:
true
,
id
:
'dob'
,
name
:
'dob'
,
placeholder
:
'MM/DD/YYYY'
,
error
:
Boolean
(
formik
.
touched
.
dob
&&
formik
.
errors
.
dob
),
onBlur
:
formik
.
handleBlur
,
helperText
:
formik
.
touched
.
dob
&&
formik
.
errors
.
dob
,
sx
:
formFieldSx
},
popper
:
{
sx
:
{
'& .MuiPickersCalendarHeader-label'
:
{
color
:
'#fff'
,
},
'& .MuiDayCalendar-weekDayLabel'
:
{
color
:
'#fff'
,
},
'& .MuiPickersDay-root'
:
{
color
:
'#fff'
,
},
'& .MuiPickersDay-root.Mui-selected'
:
{
backgroundColor
:
'#B801C0'
,
},
'& .MuiPickersDay-root:hover'
:
{
backgroundColor
:
'rgba(184, 1, 192, 0.3)'
,
},
'& .MuiPickersArrowSwitcher-button'
:
{
color
:
'#fff'
,
},
'& .MuiPickersCalendarHeader-root'
:
{
color
:
'#fff'
,
},
'& .MuiPickersDay-root.MuiPickersDay-today'
:
{
backgroundColor
:
'#B801C0'
,
border
:
'1px solid #fff'
,
'&:not(.Mui-selected)'
:
{
backgroundColor
:
'#B801C0'
,
}
},
}
}
}
}
maxDate=
{
dayjs
()
}
format=
"MM/DD/YYYY"
/>
</
LocalizationProvider
>
</
div
>
<
div
className=
"input__field"
>
<
div
className=
"input__field"
>
<
PasswordField
<
PasswordField
name=
"password"
name=
"password"
...
...
src/components/pages/dashboard/adminDashboard/players/addPlayerForm/index.tsx
View file @
b01ec1f2
...
@@ -4,6 +4,7 @@ import { useAppDispatch } from '@/hooks/hook'
...
@@ -4,6 +4,7 @@ import { useAppDispatch } from '@/hooks/hook'
import
{
useCreatePlayerMutation
,
useGetPlayerByIdQuery
,
useUpdatePlayerByIdMutation
}
from
'@/services/playerApi'
import
{
useCreatePlayerMutation
,
useGetPlayerByIdQuery
,
useUpdatePlayerByIdMutation
}
from
'@/services/playerApi'
import
{
showToast
,
ToastVariant
}
from
'@/slice/toastSlice'
import
{
showToast
,
ToastVariant
}
from
'@/slice/toastSlice'
import
{
initialPlayerValues
}
from
'@/types/player'
import
{
initialPlayerValues
}
from
'@/types/player'
import
dayjs
,
{
Dayjs
}
from
'dayjs'
import
{
useFormik
}
from
'formik'
import
{
useFormik
}
from
'formik'
import
{
useRouter
}
from
'next/navigation'
import
{
useRouter
}
from
'next/navigation'
import
*
as
Yup
from
"yup"
import
*
as
Yup
from
"yup"
...
@@ -30,6 +31,14 @@ export const PlayerValidationSchema = (isEdit: boolean) => Yup.object().shape({
...
@@ -30,6 +31,14 @@ export const PlayerValidationSchema = (isEdit: boolean) => Yup.object().shape({
then
:
(
schema
)
=>
schema
.
oneOf
([
Yup
.
ref
(
"password"
)],
"Passwords must match"
).
required
(
"Password confirmation is required"
),
then
:
(
schema
)
=>
schema
.
oneOf
([
Yup
.
ref
(
"password"
)],
"Passwords must match"
).
required
(
"Password confirmation is required"
),
otherwise
:
(
schema
)
=>
schema
.
nullable
(),
otherwise
:
(
schema
)
=>
schema
.
nullable
(),
}),
}),
dob
:
Yup
.
date
()
.
required
(
"Date of birth is required"
)
.
max
(
new
Date
(),
'Date of birth cannot be in the future'
)
.
test
(
'age'
,
'You must be at least 21 years old'
,
function
(
value
)
{
if
(
!
value
)
return
true
;
const
cutoff
=
dayjs
().
subtract
(
21
,
'years'
);
return
dayjs
(
value
).
isBefore
(
cutoff
);
}),
// profile_image: Yup.mixed().required("Profile is required"),
// profile_image: Yup.mixed().required("Profile is required"),
});
});
export
default
function
AddPlayerPage
({
id
}:
{
id
?:
string
})
{
export
default
function
AddPlayerPage
({
id
}:
{
id
?:
string
})
{
...
@@ -57,6 +66,7 @@ export default function AddPlayerPage({ id }: { id?: string }) {
...
@@ -57,6 +66,7 @@ export default function AddPlayerPage({ id }: { id?: string }) {
password
:
data
?.
data
.
password
,
password
:
data
?.
data
.
password
,
password_confirmation
:
data
?.
data
.
password_confirmation
,
password_confirmation
:
data
?.
data
.
password_confirmation
,
profile_image
:
null
,
profile_image
:
null
,
dob
:
data
?.
data
.
dob
||
null
as
Dayjs
|
null
,
}
:
initialPlayerValues
,
}
:
initialPlayerValues
,
validationSchema
:
PlayerValidationSchema
(
!!
id
),
validationSchema
:
PlayerValidationSchema
(
!!
id
),
enableReinitialize
:
true
,
enableReinitialize
:
true
,
...
@@ -72,6 +82,7 @@ export default function AddPlayerPage({ id }: { id?: string }) {
...
@@ -72,6 +82,7 @@ export default function AddPlayerPage({ id }: { id?: string }) {
if
(
values
.
address
)
formData
.
append
(
"address"
,
values
.
address
);
if
(
values
.
address
)
formData
.
append
(
"address"
,
values
.
address
);
if
(
values
.
city
)
formData
.
append
(
"city"
,
values
.
city
);
if
(
values
.
city
)
formData
.
append
(
"city"
,
values
.
city
);
if
(
values
.
phone
)
formData
.
append
(
"phone"
,
values
.
phone
);
if
(
values
.
phone
)
formData
.
append
(
"phone"
,
values
.
phone
);
if
(
values
.
dob
)
formData
.
append
(
"dob"
,
values
.
dob
.
toString
());
if
(
values
.
profile_image
)
{
if
(
values
.
profile_image
)
{
if
(
Array
.
isArray
(
values
.
profile_image
))
{
if
(
Array
.
isArray
(
values
.
profile_image
))
{
...
...
src/components/pages/dashboard/userDashboard/account/profile/editProfile/index.tsx
View file @
b01ec1f2
...
@@ -6,6 +6,7 @@ import { useUpdateUserProfileMutation } from '@/services/userApi';
...
@@ -6,6 +6,7 @@ import { useUpdateUserProfileMutation } from '@/services/userApi';
import
{
setTokens
}
from
'@/slice/authSlice'
;
import
{
setTokens
}
from
'@/slice/authSlice'
;
import
{
showToast
,
ToastVariant
}
from
'@/slice/toastSlice'
;
import
{
showToast
,
ToastVariant
}
from
'@/slice/toastSlice'
;
import
{
initialPlayerValues
,
PlayerItem
}
from
'@/types/player'
;
import
{
initialPlayerValues
,
PlayerItem
}
from
'@/types/player'
;
import
dayjs
,
{
Dayjs
}
from
'dayjs'
;
import
{
useFormik
}
from
'formik'
;
import
{
useFormik
}
from
'formik'
;
export
default
function
EditUserProfile
({
id
,
buttonLabel
}:
{
id
:
string
,
buttonLabel
?:
string
;
})
{
export
default
function
EditUserProfile
({
id
,
buttonLabel
}:
{
id
:
string
,
buttonLabel
?:
string
;
})
{
...
@@ -16,7 +17,6 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
...
@@ -16,7 +17,6 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
const
access_token
=
useAppSelector
((
state
)
=>
state
?.
auth
.
access_token
);
const
access_token
=
useAppSelector
((
state
)
=>
state
?.
auth
.
access_token
);
const
formik
=
useFormik
({
const
formik
=
useFormik
({
initialValues
:
user
?
{
initialValues
:
user
?
{
name
:
user
.
name
,
name
:
user
.
name
,
...
@@ -30,10 +30,12 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
...
@@ -30,10 +30,12 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
password
:
''
,
password
:
''
,
password_confirmation
:
''
,
password_confirmation
:
''
,
profile_image
:
null
,
profile_image
:
null
,
dob
:
user
.
dob
||
null
as
Dayjs
|
null
,
}
:
initialPlayerValues
,
}
:
initialPlayerValues
,
validationSchema
:
PlayerValidationSchema
(
!!
user
?.
id
),
validationSchema
:
PlayerValidationSchema
(
user
?.
id
?
true
:
false
),
enableReinitialize
:
true
,
enableReinitialize
:
true
,
onSubmit
:
async
(
values
)
=>
{
onSubmit
:
async
(
values
)
=>
{
const
formattedDob
=
values
.
dob
?
dayjs
(
values
.
dob
).
format
(
'YYYY-MM-DD'
)
:
''
;
const
formData
=
new
FormData
();
const
formData
=
new
FormData
();
formData
.
append
(
"name"
,
values
.
name
);
formData
.
append
(
"name"
,
values
.
name
);
formData
.
append
(
"email"
,
values
.
email
);
formData
.
append
(
"email"
,
values
.
email
);
...
@@ -41,10 +43,12 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
...
@@ -41,10 +43,12 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
formData
.
append
(
"last_name"
,
values
.
last_name
);
formData
.
append
(
"last_name"
,
values
.
last_name
);
formData
.
append
(
"password"
,
values
.
password
);
formData
.
append
(
"password"
,
values
.
password
);
formData
.
append
(
"password_confirmation"
,
values
.
password_confirmation
);
formData
.
append
(
"password_confirmation"
,
values
.
password_confirmation
);
if
(
values
.
wallet_address
)
formData
.
append
(
"wallet_address"
,
values
.
wallet_address
);
if
(
values
.
wallet_address
)
formData
.
append
(
"wallet_address"
,
values
.
wallet_address
);
if
(
values
.
address
)
formData
.
append
(
"address"
,
values
.
address
);
if
(
values
.
address
)
formData
.
append
(
"address"
,
values
.
address
);
if
(
values
.
city
)
formData
.
append
(
"city"
,
values
.
city
);
if
(
values
.
city
)
formData
.
append
(
"city"
,
values
.
city
);
if
(
values
.
phone
)
formData
.
append
(
"phone"
,
values
.
phone
);
if
(
values
.
phone
)
formData
.
append
(
"phone"
,
values
.
phone
);
if
(
values
.
dob
)
formData
.
append
(
"dob"
,
formattedDob
);
if
(
values
.
profile_image
)
{
if
(
values
.
profile_image
)
{
if
(
Array
.
isArray
(
values
.
profile_image
))
{
if
(
Array
.
isArray
(
values
.
profile_image
))
{
...
@@ -69,7 +73,7 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
...
@@ -69,7 +73,7 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
dispatch
(
dispatch
(
setTokens
({
setTokens
({
access_token
:
access_token
,
access_token
:
access_token
,
user
:
response
?.
data
?.
data
,
user
:
{
...
user
,
...
response
?.
data
?.
data
}
,
}),
}),
);
);
}
}
...
@@ -103,6 +107,7 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
...
@@ -103,6 +107,7 @@ export default function EditUserProfile({ id, buttonLabel }: { id: string, butto
total_withdrawl
:
user
.
total_withdrawl
??
undefined
,
total_withdrawl
:
user
.
total_withdrawl
??
undefined
,
total_deposited
:
user
.
total_deposited
??
undefined
,
total_deposited
:
user
.
total_deposited
??
undefined
,
profile_image_file
:
user
.
profile_image_file
??
undefined
,
profile_image_file
:
user
.
profile_image_file
??
undefined
,
dob
:
user
.
dob
?
dayjs
(
user
.
dob
).
format
(
'YYYY-MM-DD'
)
:
undefined
,
}
as
PlayerItem
,
}
as
PlayerItem
,
}
}
:
undefined
;
:
undefined
;
...
...
src/types/auth.ts
View file @
b01ec1f2
...
@@ -36,7 +36,7 @@ export interface RegisterProps extends LoginProps {
...
@@ -36,7 +36,7 @@ export interface RegisterProps extends LoginProps {
middle_name
:
string
;
middle_name
:
string
;
last_name
:
string
;
last_name
:
string
;
phone
:
string
;
phone
:
string
;
photoid_number
:
string
;
//
photoid_number: string;
dob
:
string
;
dob
:
string
;
city
:
string
;
city
:
string
;
pob
:
string
;
pob
:
string
;
...
...
src/types/player.ts
View file @
b01ec1f2
import
{
Dayjs
}
from
"dayjs"
;
import
{
Pagination
}
from
"./game"
;
import
{
Pagination
}
from
"./game"
;
...
@@ -14,6 +15,7 @@ export interface CommonPlayerProps {
...
@@ -14,6 +15,7 @@ export interface CommonPlayerProps {
password_confirmation
:
string
;
password_confirmation
:
string
;
role
?:
string
;
role
?:
string
;
state
?:
string
;
state
?:
string
;
dob
?:
string
|
Dayjs
|
null
;
}
}
export
interface
PlayerProps
extends
CommonPlayerProps
{
export
interface
PlayerProps
extends
CommonPlayerProps
{
id
?:
string
;
id
?:
string
;
...
@@ -37,6 +39,7 @@ export const initialPlayerValues: PlayerProps = {
...
@@ -37,6 +39,7 @@ export const initialPlayerValues: PlayerProps = {
password
:
""
,
password
:
""
,
password_confirmation
:
""
,
password_confirmation
:
""
,
profile_image
:
null
,
profile_image
:
null
,
dob
:
null
as
Dayjs
|
null
,
};
};
type
GameInformation
=
{
type
GameInformation
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment