Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(web/alert): new options for alert dialog #213

Merged
merged 1 commit into from
Feb 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions package/client/resource/interface/alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ interface AlertDialogProps {
header: string;
content: string;
centered?: boolean;
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
overflow?: boolean;
cancel?: boolean;
labels?: {
cancel?: string;
Expand Down
2 changes: 2 additions & 0 deletions resource/interface/client/alert.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ local alert = nil
---@field header string;
---@field content string;
---@field centered? boolean?;
---@field size? 'xs' | 'sm' | 'md' | 'lg' | 'xl';
---@field overflow? boolean?;
---@field cancel? boolean?;
---@field labels? {cancel?: string, confirm?: string}

Expand Down
2 changes: 2 additions & 0 deletions web/src/features/dev/debug/alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ export const debugAlert = () => {
header: 'Hello there',
content: 'General kenobi \n Markdown works',
centered: true,
size: 'lg',
overflow: true,
cancel: true,
// labels: {
// confirm: 'Ok',
Expand Down
4 changes: 4 additions & 0 deletions web/src/features/dialog/AlertDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export interface AlertProps {
header: string;
content: string;
centered?: boolean;
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
overflow?: boolean;
cancel?: boolean;
labels?: {
cancel?: string;
Expand Down Expand Up @@ -45,6 +47,8 @@ const AlertDialog: React.FC = () => {
<Modal
opened={opened}
centered={dialogData.centered}
size={dialogData.size || 'md'}
overflow={dialogData.overflow ? 'inside' : 'outside'}
closeOnClickOutside={false}
onClose={() => {
setOpened(false);
Expand Down