-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): refactor notification item
- Loading branch information
Vu Van Duc
authored and
Vu Van Duc
committed
Jul 15, 2024
1 parent
6e834ba
commit 3d0d8ee
Showing
12 changed files
with
387 additions
and
118 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { KeriaNotification } from "../../../core/agent/agent.types"; | ||
|
||
enum NotificationFilter { | ||
All = "all", | ||
Identifier = "identifiers", | ||
Credential = "credentials", | ||
} | ||
|
||
interface NotificationItemProps { | ||
item: KeriaNotification; | ||
onClick: (item: KeriaNotification) => void; | ||
onOptionButtonClick: (item: KeriaNotification) => void; | ||
} | ||
|
||
interface FilterChipProps { | ||
filter: NotificationFilter; | ||
label: string; | ||
isActive: boolean; | ||
onClick: (filter: NotificationFilter) => void; | ||
} | ||
|
||
export { NotificationFilter }; | ||
|
||
export type { NotificationItemProps, FilterChipProps }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.