Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Neos
Commits
f4c86309
Commit
f4c86309
authored
Feb 09, 2024
by
Chunchi Che
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add modal shared component
parent
d724a676
Pipeline
#25388
passed with stages
in 15 minutes and 7 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
145 additions
and
0 deletions
+145
-0
src/ui/Shared/Modal/index.module.scss
src/ui/Shared/Modal/index.module.scss
+33
-0
src/ui/Shared/Modal/index.tsx
src/ui/Shared/Modal/index.tsx
+111
-0
src/ui/Shared/index.ts
src/ui/Shared/index.ts
+1
-0
No files found.
src/ui/Shared/Modal/index.module.scss
0 → 100644
View file @
f4c86309
.title
{
color
:
red
;
}
.footer
{
display
:
flex
;
justify-content
:
flex-end
;
gap
:
12px
;
}
.modal
{
position
:
fixed
;
left
:
0
;
right
:
0
;
top
:
0
!
important
;
bottom
:
0
!
important
;
top
:
-
webkit-fill-available
;
margin
:
auto
;
height
:
fit-content
;
transition
:
top
0
.3s
;
}
.mini
{
top
:
100%
!
important
;
bottom
:
0
!
important
;
transform
:
translateY
(
calc
(
50%
-
66px
));
}
.btn-minimize
{
position
:
absolute
;
right
:
16px
;
top
:
16px
;
}
src/ui/Shared/Modal/index.tsx
0 → 100644
View file @
f4c86309
import
{
MinusOutlined
,
UpOutlined
}
from
"
@ant-design/icons
"
;
import
{
Button
}
from
"
antd
"
;
import
type
{
ModalFunc
}
from
"
antd/es/modal/confirm
"
;
import
classNames
from
"
classnames
"
;
import
{
proxy
}
from
"
valtio
"
;
import
styles
from
"
./index.module.scss
"
;
type
PropsWithOnResult
<
Props
extends
{},
Result
extends
{}
>
=
Props
&
{
onResult
:
(
result
:
Result
)
=>
void
;
};
export
type
ReactFcWithOnResult
<
Props
extends
{},
Result
extends
{}
>
=
React
.
FC
<
PropsWithOnResult
<
Props
,
Result
>
>
;
export
const
Title
:
React
.
FC
<
React
.
PropsWithChildren
>
=
({
children
})
=>
(
<
div
className=
{
styles
.
title
}
>
{
children
}
</
div
>
);
export
const
Footer
:
React
.
FC
<
React
.
PropsWithChildren
>
=
({
children
})
=>
(
<
div
className=
{
styles
.
footer
}
>
{
children
}
</
div
>
);
/**
* 目的是通过传入不同的 Content 组件和配置选项,生成不同类型的弹窗,并在弹窗的 Content 中处理回调,最终返回一个 Promise 来处理弹窗的结果。
*/
export
const
genModal
=
<
Props
extends
{},
Result
extends
{}
>
(
{
api
,
Content
:
_Content
,
type
=
"
confirm
"
,
...
rest
}
:
{
api
:
any
;
Content
:
React
.
ComponentType
<
PropsWithOnResult
<
Props
,
Result
>>
;
type
?:
"
confirm
"
|
"
info
"
|
"
success
"
|
"
error
"
;
}
&
Omit
<
Parameters
<
ModalFunc
>
[0],
"content" | "onCancel" | "onOk" | "footer" | "title"
>
) =
>
{
return
(
props
:
Props
):
Promise
<
Result
>
=>
new
Promise
<
Result
>
((
rs
)
=>
{
let
isMini
=
proxy
({
value
:
false
});
const
getClassNames
=
()
=>
classNames
(
styles
.
modal
,
{
[
styles
.
mini
]:
isMini
.
value
,
});
// const Content = ContentWrap(_Content);
const
BtnMini
=
()
=>
(
<
Button
icon=
{
<
MinusOutlined
/>
}
onClick=
{
function
()
{
isMini
.
value
=
!
isMini
.
value
;
update
({
className
:
getClassNames
(),
title
:
BtnMax
()
});
}
}
/>
);
const
BtnMax
=
()
=>
(
<
Button
icon=
{
<
UpOutlined
/>
}
onClick=
{
function
()
{
isMini
.
value
=
!
isMini
.
value
;
update
({
className
:
getClassNames
(),
title
:
BtnMini
()
});
}
}
/>
);
const
genMinimizeBtn
=
()
=>
(
<
Button
className=
{
styles
[
"
btn-minimize
"
]
}
type=
"text"
// size=
{16}
icon=
{
isMini
.
value
?
<
UpOutlined
/>
:
<
MinusOutlined
/>
}
onClick=
{
()
=>
{
isMini
.
value
=
!
isMini
.
value
;
update
({
className
:
getClassNames
(),
title
:
genMinimizeBtn
()
});
}
}
/>
);
const
{
destroy
,
update
}
=
api
[
type
]({
content
:
(
<
div
>
<
_Content
onResult=
{
(
result
)
=>
{
rs
(
result
);
destroy
();
}
}
{
...
props
}
/>
</
div
>
),
icon
:
null
,
title
:
genMinimizeBtn
(),
footer
:
null
,
centered
:
true
,
className
:
getClassNames
(),
onCancel
:
()
=>
false
,
...
rest
,
});
});
}
;
// function ContentWrap
<
P
extends
{}
>
(ChildrenComponent: React.ComponentType
<
P
>
)
{
// return (props: P &
{
toggleMini
:
()
=>
void
;
isMini
:
boolean
})
=>
{
// return (
// <>
// <Button onClick=
{
props
.
toggleMini
}
icon
=
{
props
.
isMini
?
"
a
"
:
"
b
"
}
/
>
// <ChildrenComponent
{...
props
}
/
>
// </>
// );
//
};
//
}
src/ui/Shared/index.ts
View file @
f4c86309
...
@@ -6,6 +6,7 @@ export * from "./DeckCard";
...
@@ -6,6 +6,7 @@ export * from "./DeckCard";
export
*
from
"
./DeckZone
"
;
export
*
from
"
./DeckZone
"
;
export
*
from
"
./IconFont
"
;
export
*
from
"
./IconFont
"
;
export
*
from
"
./Loading
"
;
export
*
from
"
./Loading
"
;
export
*
from
"
./Modal
"
;
export
*
from
"
./Scrollbar
"
;
export
*
from
"
./Scrollbar
"
;
export
*
from
"
./Select
"
;
export
*
from
"
./Select
"
;
export
*
from
"
./SpecialButton
"
;
export
*
from
"
./SpecialButton
"
;
...
...
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