-
Notifications
You must be signed in to change notification settings - Fork 11
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
fix(ObjectSummary): do not display CreateTime if CreateStep is 0 #2018
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,27 +15,30 @@ import './ExternalTable.scss'; | |
|
||
const b = cn('ydb-external-table-info'); | ||
|
||
const prepareExternalTableSummary = ( | ||
data: TEvDescribeSchemeResult, | ||
pathToDataSource: string, | ||
): InfoViewerItem[] => { | ||
const prepareExternalTableSummary = (data: TEvDescribeSchemeResult, pathToDataSource: string) => { | ||
const {CreateStep} = data.PathDescription?.Self || {}; | ||
const {SourceType, DataSourcePath} = data.PathDescription?.ExternalTableDescription || {}; | ||
|
||
const dataSourceName = DataSourcePath?.split('/').pop(); | ||
|
||
return [ | ||
const info: InfoViewerItem[] = [ | ||
{label: i18n('external-objects.source-type'), value: SourceType}, | ||
formatCommonItem('CreateStep', CreateStep), | ||
{ | ||
label: i18n('external-objects.data-source'), | ||
value: DataSourcePath && ( | ||
<span title={DataSourcePath}> | ||
<LinkWithIcon title={dataSourceName || ''} url={pathToDataSource} /> | ||
</span> | ||
), | ||
}, | ||
]; | ||
|
||
if (Number(CreateStep)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mb it would be more consistent to display EMPTY_DATA_PLACEHOLDER (via date formatter and defaultValue) everywhere? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think so. Normally, we have 0 |
||
info.push(formatCommonItem('CreateStep', CreateStep)); | ||
} | ||
|
||
info.push({ | ||
label: i18n('external-objects.data-source'), | ||
value: DataSourcePath && ( | ||
<span title={DataSourcePath}> | ||
<LinkWithIcon title={dataSourceName || ''} url={pathToDataSource} /> | ||
</span> | ||
), | ||
}); | ||
|
||
return info; | ||
}; | ||
|
||
const prepareExternalTableInfo = ( | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe it would be better to handle zero values in formatDateTime and to pass EMPTY_DATA_PLACEHOLDER as defaultValue ?
Can't imagine anyone would need 1970-01-01 03:00 value (that is returned for formatDateTime(0)) anywhere accross the project