-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Query and display single credential in sidepanel
- Loading branch information
Jason Healy
committed
Jan 24, 2020
1 parent
57f099b
commit 28420bd
Showing
13 changed files
with
194 additions
and
161 deletions.
There are no files selected for viewing
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
3 changes: 3 additions & 0 deletions
3
examples/react-graphql/client/src/components/Credential/Credential.css
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,3 @@ | ||
.credential_hover:hover { | ||
box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.3); | ||
} |
55 changes: 50 additions & 5 deletions
55
examples/react-graphql/client/src/components/Credential/Credential.tsx
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
25 changes: 0 additions & 25 deletions
25
examples/react-graphql/client/src/components/Credential/CredentialDetail.tsx
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
examples/react-graphql/client/src/components/MessageItem/MessageItem.css
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,3 @@ | ||
.message_item:hover { | ||
background-color: #292929; | ||
} |
39 changes: 28 additions & 11 deletions
39
examples/react-graphql/client/src/components/MessageItem/MessageItem.tsx
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export interface Identity { | ||
isManaged?: boolean | ||
did: string | ||
type?: string | ||
shortId: string | ||
firstName?: string | ||
lastName?: string | ||
url?: string | ||
description?: string | ||
profileImage?: string | ||
} | ||
|
||
export interface Field { | ||
type: string | ||
value: any | ||
isObj: boolean | ||
} |
Oops, something went wrong.