@@ -2016,82 +2016,82 @@ class Browser extends DashboardView {
2016
2016
}
2017
2017
browser = (
2018
2018
< >
2019
- < DataBrowser
2020
- app = { this . context }
2021
- ref = { this . dataBrowserRef }
2022
- isUnique = { this . state . isUnique }
2023
- uniqueField = { this . state . uniqueField }
2024
- count = { count }
2025
- perms = { this . state . clp [ className ] }
2026
- schema = { this . props . schema }
2027
- filters = { this . state . filters }
2028
- onFilterChange = { this . updateFilters }
2029
- onFilterSave = { ( ...args ) => this . saveFilters ( ...args ) }
2030
- onRemoveColumn = { this . showRemoveColumn }
2031
- onDeleteRows = { this . showDeleteRows }
2032
- onDropClass = { this . showDropClass }
2033
- onExport = { this . showExport }
2034
- onChangeCLP = { this . handleCLPChange }
2035
- onRefresh = { this . refresh }
2036
- onAttachRows = { this . showAttachRowsDialog }
2037
- onAttachSelectedRows = { this . showAttachSelectedRowsDialog }
2038
- onExecuteScriptRows = { this . showExecuteScriptRowsDialog }
2039
- onCloneSelectedRows = { this . showCloneSelectedRowsDialog }
2040
- onEditSelectedRow = { this . showEditRowDialog }
2041
- onEditPermissions = { this . onDialogToggle }
2042
- onExportSelectedRows = { this . showExportSelectedRowsDialog }
2043
- onExportSchema = { this . showExportSchemaDialog }
2044
- onSaveNewRow = { this . saveNewRow }
2045
- onShowPointerKey = { this . showPointerKeyDialog }
2046
- onAbortAddRow = { this . abortAddRow }
2047
- onSaveEditCloneRow = { this . saveEditCloneRow }
2048
- onAbortEditCloneRow = { this . abortEditCloneRow }
2049
- onCancelPendingEditRows = { this . cancelPendingEditRows }
2050
- currentUser = { this . state . currentUser }
2051
- useMasterKey = { this . state . useMasterKey }
2052
- login = { this . login }
2053
- logout = { this . logout }
2054
- toggleMasterKeyUsage = { this . toggleMasterKeyUsage }
2055
- markRequiredFieldRow = { this . state . markRequiredFieldRow }
2056
- requiredColumnFields = { this . state . requiredColumnFields }
2057
- columns = { columns }
2058
- className = { className }
2059
- fetchNextPage = { this . fetchNextPage }
2060
- maxFetched = { this . state . lastMax }
2061
- selectRow = { this . selectRow }
2062
- selection = { this . state . selection }
2063
- data = { this . state . data }
2064
- ordering = { this . state . ordering }
2065
- newObject = { this . state . newObject }
2066
- editCloneRows = { this . state . editCloneRows }
2067
- relation = { this . state . relation }
2068
- disableKeyControls = { this . hasExtras ( ) }
2069
- updateRow = { this . updateRow }
2070
- updateOrdering = { this . updateOrdering }
2071
- onPointerClick = { this . handlePointerClick }
2072
- onPointerCmdClick = { this . handlePointerCmdClick }
2073
- setRelation = { this . setRelation }
2074
- onAddColumn = { this . showAddColumn }
2075
- onAddRow = { this . addRow }
2076
- onAddRowWithModal = { this . addRowWithModal }
2077
- onAddClass = { this . showCreateClass }
2078
- showNote = { this . showNote }
2079
- onMouseDownRowCheckBox = { this . onMouseDownRowCheckBox }
2080
- onMouseUpRowCheckBox = { this . onMouseUpRowCheckBox }
2081
- onMouseOverRowCheckBox = { this . onMouseOverRowCheckBox }
2082
- classes = { this . classes }
2083
- classwiseCloudFunctions = { this . state . classwiseCloudFunctions }
2084
- callCloudFunction = { this . fetchAggregationPanelData }
2085
- isLoadingCloudFunction = { this . state . isLoading }
2086
- setLoading = { this . setLoading }
2087
- AggregationPanelData = { this . state . AggregationPanelData }
2088
- setAggregationPanelData = { this . setAggregationPanelData }
2089
- setErrorAggregatedData = { this . setErrorAggregatedData }
2090
- errorAggregatedData = { this . state . errorAggregatedData }
2091
- appName = { this . props . params . appId }
2092
- limit = { this . state . limit }
2093
- />
2094
- < BrowserFooter
2019
+ < DataBrowser
2020
+ app = { this . context }
2021
+ ref = { this . dataBrowserRef }
2022
+ isUnique = { this . state . isUnique }
2023
+ uniqueField = { this . state . uniqueField }
2024
+ count = { count }
2025
+ perms = { this . state . clp [ className ] }
2026
+ schema = { this . props . schema }
2027
+ filters = { this . state . filters }
2028
+ onFilterChange = { this . updateFilters }
2029
+ onFilterSave = { ( ...args ) => this . saveFilters ( ...args ) }
2030
+ onRemoveColumn = { this . showRemoveColumn }
2031
+ onDeleteRows = { this . showDeleteRows }
2032
+ onDropClass = { this . showDropClass }
2033
+ onExport = { this . showExport }
2034
+ onChangeCLP = { this . handleCLPChange }
2035
+ onRefresh = { this . refresh }
2036
+ onAttachRows = { this . showAttachRowsDialog }
2037
+ onAttachSelectedRows = { this . showAttachSelectedRowsDialog }
2038
+ onExecuteScriptRows = { this . showExecuteScriptRowsDialog }
2039
+ onCloneSelectedRows = { this . showCloneSelectedRowsDialog }
2040
+ onEditSelectedRow = { this . showEditRowDialog }
2041
+ onEditPermissions = { this . onDialogToggle }
2042
+ onExportSelectedRows = { this . showExportSelectedRowsDialog }
2043
+ onExportSchema = { this . showExportSchemaDialog }
2044
+ onSaveNewRow = { this . saveNewRow }
2045
+ onShowPointerKey = { this . showPointerKeyDialog }
2046
+ onAbortAddRow = { this . abortAddRow }
2047
+ onSaveEditCloneRow = { this . saveEditCloneRow }
2048
+ onAbortEditCloneRow = { this . abortEditCloneRow }
2049
+ onCancelPendingEditRows = { this . cancelPendingEditRows }
2050
+ currentUser = { this . state . currentUser }
2051
+ useMasterKey = { this . state . useMasterKey }
2052
+ login = { this . login }
2053
+ logout = { this . logout }
2054
+ toggleMasterKeyUsage = { this . toggleMasterKeyUsage }
2055
+ markRequiredFieldRow = { this . state . markRequiredFieldRow }
2056
+ requiredColumnFields = { this . state . requiredColumnFields }
2057
+ columns = { columns }
2058
+ className = { className }
2059
+ fetchNextPage = { this . fetchNextPage }
2060
+ maxFetched = { this . state . lastMax }
2061
+ selectRow = { this . selectRow }
2062
+ selection = { this . state . selection }
2063
+ data = { this . state . data }
2064
+ ordering = { this . state . ordering }
2065
+ newObject = { this . state . newObject }
2066
+ editCloneRows = { this . state . editCloneRows }
2067
+ relation = { this . state . relation }
2068
+ disableKeyControls = { this . hasExtras ( ) }
2069
+ updateRow = { this . updateRow }
2070
+ updateOrdering = { this . updateOrdering }
2071
+ onPointerClick = { this . handlePointerClick }
2072
+ onPointerCmdClick = { this . handlePointerCmdClick }
2073
+ setRelation = { this . setRelation }
2074
+ onAddColumn = { this . showAddColumn }
2075
+ onAddRow = { this . addRow }
2076
+ onAddRowWithModal = { this . addRowWithModal }
2077
+ onAddClass = { this . showCreateClass }
2078
+ showNote = { this . showNote }
2079
+ onMouseDownRowCheckBox = { this . onMouseDownRowCheckBox }
2080
+ onMouseUpRowCheckBox = { this . onMouseUpRowCheckBox }
2081
+ onMouseOverRowCheckBox = { this . onMouseOverRowCheckBox }
2082
+ classes = { this . classes }
2083
+ classwiseCloudFunctions = { this . state . classwiseCloudFunctions }
2084
+ callCloudFunction = { this . fetchAggregationPanelData }
2085
+ isLoadingCloudFunction = { this . state . isLoading }
2086
+ setLoading = { this . setLoading }
2087
+ AggregationPanelData = { this . state . AggregationPanelData }
2088
+ setAggregationPanelData = { this . setAggregationPanelData }
2089
+ setErrorAggregatedData = { this . setErrorAggregatedData }
2090
+ errorAggregatedData = { this . state . errorAggregatedData }
2091
+ appName = { this . props . params . appId }
2092
+ limit = { this . state . limit }
2093
+ />
2094
+ < BrowserFooter
2095
2095
skip = { this . state . skip }
2096
2096
setSkip = { skip => {
2097
2097
this . setState ( { skip } ) ;
0 commit comments