This repository was archived by the owner on Aug 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDialog.tsx
More file actions
executable file
Β·142 lines (125 loc) Β· 3.87 KB
/
Dialog.tsx
File metadata and controls
executable file
Β·142 lines (125 loc) Β· 3.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
CPAL-1.0 License
The contents of this file are subject to the Common Public Attribution License
Version 1.0. (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
The License is based on the Mozilla Public License Version 1.1, but Sections 14
and 15 have been added to cover use of software over a computer network and
provide for limited attribution for the Original Developer. In addition,
Exhibit A has been modified to be consistent with Exhibit B.
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
specific language governing rights and limitations under the License.
The Original Code is Ethereal Engine.
The Original Developer is the Initial Developer. The Initial Developer of the
Original Code is the Ethereal Engine team.
All portions of the code written by the Ethereal Engine team are Copyright Β© 2021-2023
Ethereal Engine. All Rights Reserved.
*/
import React, { useCallback } from 'react'
import { Button, SecondaryButton } from '../inputs/Button'
const dialogContainerStyles = {
display: 'flex',
flexDirection: 'column',
borderRadius: '4px',
backgroundColor: 'var(--dockBackground)',
maxWidth: '800px',
minWidth: '250px',
minHeight: '150px',
maxHeight: '80vh'
}
const dialogHeaderStyles = {
display: 'flex',
flexDirection: 'row',
justifyContent: 'space-between',
padding: '8px',
fontSize: '20px',
overflow: 'hidden',
borderTopLeftRadius: 'inherit',
borderTopRightRadius: 'inherit',
color: 'white'
}
const dialogContentStyles = {
color: 'var(--textColor)',
display: 'flex',
flex: 1,
flexDirection: 'row',
overflow: 'hidden',
padding: '8px',
minHeight: '100px',
fontFamily: 'var(--lato)',
fontSize: '12px',
backgroundColor: 'var(--background)'
}
const dialogBottomNavStyles = {
display: 'flex',
padding: '8px',
marginBottom: '10px'
}
const buttonStyles = {
minWidth: '75px',
margin: '10px'
}
const DialogForm = ({ tag, onSubmit, children }) => {
return tag ? React.createElement(tag, { onSubmit }, children) : <form onSubmit={onSubmit}>{children}</form>
}
/**
* Dialog used to render view for Dialog which contains form.
*
* @param {Props}
* @constructor
*/
interface Props {
tag?: any
title?: string
bottomNav?: any
children?: any
cancelLabel?: string
confirmLabel?: string
onCancel?: any
onConfirm?: any
disabled?: boolean
}
const Dialog = (props: Props) => {
// callback function used to handle form submit
const onSubmitForm = useCallback(
(e) => {
e.preventDefault()
if (props.onConfirm) {
props.onConfirm(e)
}
},
[props.onConfirm]
)
// returning view for Dialog component
return (
<DialogForm tag={props.tag} onSubmit={onSubmitForm}>
<div style={dialogContainerStyles as React.CSSProperties}>
<div style={dialogHeaderStyles as React.CSSProperties}>{props.title}</div>
<div style={dialogContentStyles as React.CSSProperties}>{props.children}</div>
{(props.onConfirm || props.onCancel || props.bottomNav) && (
<div style={dialogBottomNavStyles}>
{props.bottomNav}
{props.onCancel && (
<SecondaryButton onClick={props.onCancel} style={buttonStyles}>
{props.cancelLabel || 'Cancel'}
</SecondaryButton>
)}
{props.onConfirm && (
<Button
disabled={props.disabled}
type="submit"
onClick={props.tag === 'form' ? null : props.onConfirm}
style={buttonStyles}
>
{props.confirmLabel}
</Button>
)}
</div>
)}
</div>
</DialogForm>
)
}
export default Dialog