This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
a1f9156
commit 67ec3f1
Showing
2 changed files
with
29 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
import { MediaPlayer } from "../Common/MediaPlayer/MediaPlayer"; | ||
|
||
export const AudioDataGroup = ({ value }) => { | ||
const style = { | ||
padding: 10, | ||
height: AudioDataGroup.height, | ||
boxSizing: "content-box", | ||
}; | ||
|
||
return ( | ||
<div style={{ padding: 10, height: AudioDataGroup.height }}> | ||
<div style={style}> | ||
<MediaPlayer src={value} /> | ||
</div> | ||
); | ||
}; | ||
|
||
AudioDataGroup.height = 42; | ||
AudioDataGroup.height = 32; |
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 |
---|---|---|
@@ -1,21 +1,35 @@ | ||
const valueToString = (value) => { | ||
import { format, isValid } from "date-fns"; | ||
import { dateTimeFormat } from "../CellViews/DateTimeCell"; | ||
|
||
export const valueToString = (value) => { | ||
if (typeof value === "string") return value; | ||
/* if undefined or null we'll treat it as empty string */ | ||
if (value === undefined || value === null) return ""; | ||
if (value instanceof Date && isValid(value)) return format(value, dateTimeFormat); | ||
|
||
try { | ||
/* JSON.stringify will handle JSON and non-strings, non-null, non-undefined */ | ||
return JSON.stringify(value); | ||
} catch { | ||
return value.toString(); | ||
return 'Error: Invalid JSON'; | ||
} | ||
}; | ||
|
||
export const TextDataGroup = ({ value }) => { | ||
const output = valueToString(value); | ||
const style = { | ||
padding: 5, | ||
height: TextDataGroup.height, | ||
overflow: "hidden", | ||
whiteSpace: "nowrap", | ||
textOverflow: "ellipsis", | ||
}; | ||
|
||
return ( | ||
<div | ||
style={{ padding: 5, height: TextDataGroup.height, overflow: "hidden" }} | ||
> | ||
{value ? valueToString(value) : ""} | ||
<div style={style} title={output}> | ||
{output} | ||
</div> | ||
); | ||
}; | ||
|
||
TextDataGroup.height = 77; | ||
TextDataGroup.height = 32; |