mirror of
https://github.com/minio/minio.git
synced 2025-04-04 20:00:31 -04:00
browser: Listing should append instead of replacing previous listing (#4188)
Fixes #4144
This commit is contained in:
parent
d36dd80a8a
commit
1ea53b4d9f
@ -26,6 +26,8 @@ export const SET_BUCKETS = 'SET_BUCKETS'
|
|||||||
export const ADD_BUCKET = 'ADD_BUCKET'
|
export const ADD_BUCKET = 'ADD_BUCKET'
|
||||||
export const SET_VISIBLE_BUCKETS = 'SET_VISIBLE_BUCKETS'
|
export const SET_VISIBLE_BUCKETS = 'SET_VISIBLE_BUCKETS'
|
||||||
export const SET_OBJECTS = 'SET_OBJECTS'
|
export const SET_OBJECTS = 'SET_OBJECTS'
|
||||||
|
export const APPEND_OBJECTS = 'APPEND_OBJECTS'
|
||||||
|
export const RESET_OBJECTS = 'RESET_OBJECTS'
|
||||||
export const SET_STORAGE_INFO = 'SET_STORAGE_INFO'
|
export const SET_STORAGE_INFO = 'SET_STORAGE_INFO'
|
||||||
export const SET_SERVER_INFO = 'SET_SERVER_INFO'
|
export const SET_SERVER_INFO = 'SET_SERVER_INFO'
|
||||||
export const SHOW_MAKEBUCKET_MODAL = 'SHOW_MAKEBUCKET_MODAL'
|
export const SHOW_MAKEBUCKET_MODAL = 'SHOW_MAKEBUCKET_MODAL'
|
||||||
@ -240,15 +242,28 @@ export const setVisibleBuckets = visibleBuckets => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const setObjects = (objects, marker, istruncated) => {
|
const appendObjects = (objects, marker, istruncated) => {
|
||||||
return {
|
return {
|
||||||
type: SET_OBJECTS,
|
type: APPEND_OBJECTS,
|
||||||
objects,
|
objects,
|
||||||
marker,
|
marker,
|
||||||
istruncated
|
istruncated
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const setObjects = (objects) => {
|
||||||
|
return {
|
||||||
|
type: SET_OBJECTS,
|
||||||
|
objects,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const resetObjects = () => {
|
||||||
|
return {
|
||||||
|
type: RESET_OBJECTS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export const setCurrentBucket = currentBucket => {
|
export const setCurrentBucket = currentBucket => {
|
||||||
return {
|
return {
|
||||||
type: SET_CURRENT_BUCKET,
|
type: SET_CURRENT_BUCKET,
|
||||||
@ -316,7 +331,7 @@ export const listObjects = () => {
|
|||||||
object.name = object.name.replace(`${currentPath}`, '');
|
object.name = object.name.replace(`${currentPath}`, '');
|
||||||
return object
|
return object
|
||||||
})
|
})
|
||||||
dispatch(setObjects(objects, res.nextmarker, res.istruncated))
|
dispatch(appendObjects(objects, res.nextmarker, res.istruncated))
|
||||||
dispatch(setPrefixWritable(res.writable))
|
dispatch(setPrefixWritable(res.writable))
|
||||||
dispatch(setLoadBucket(''))
|
dispatch(setLoadBucket(''))
|
||||||
dispatch(setLoadPath(''))
|
dispatch(setLoadPath(''))
|
||||||
@ -337,7 +352,7 @@ export const listObjects = () => {
|
|||||||
export const selectPrefix = prefix => {
|
export const selectPrefix = prefix => {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
const {currentBucket, web} = getState()
|
const {currentBucket, web} = getState()
|
||||||
dispatch(setObjects([], "", false))
|
dispatch(resetObjects())
|
||||||
dispatch(setLoadPath(prefix))
|
dispatch(setLoadPath(prefix))
|
||||||
web.ListObjects({
|
web.ListObjects({
|
||||||
bucketName: currentBucket,
|
bucketName: currentBucket,
|
||||||
@ -352,7 +367,7 @@ export const selectPrefix = prefix => {
|
|||||||
object.name = object.name.replace(`${prefix}`, '');
|
object.name = object.name.replace(`${prefix}`, '');
|
||||||
return object
|
return object
|
||||||
})
|
})
|
||||||
dispatch(setObjects(
|
dispatch(appendObjects(
|
||||||
objects,
|
objects,
|
||||||
res.nextmarker,
|
res.nextmarker,
|
||||||
res.istruncated
|
res.istruncated
|
||||||
|
@ -77,16 +77,18 @@ export default (state = {
|
|||||||
case actions.SET_CURRENT_BUCKET:
|
case actions.SET_CURRENT_BUCKET:
|
||||||
newState.currentBucket = action.currentBucket
|
newState.currentBucket = action.currentBucket
|
||||||
break
|
break
|
||||||
case actions.SET_OBJECTS:
|
case actions.APPEND_OBJECTS:
|
||||||
if (!action.objects.length) {
|
newState.objects = [...newState.objects, ...action.objects]
|
||||||
newState.objects = []
|
|
||||||
newState.marker = ""
|
|
||||||
newState.istruncated = action.istruncated
|
|
||||||
} else {
|
|
||||||
newState.objects = [...action.objects]
|
|
||||||
newState.marker = action.marker
|
newState.marker = action.marker
|
||||||
newState.istruncated = action.istruncated
|
newState.istruncated = action.istruncated
|
||||||
}
|
break
|
||||||
|
case actions.SET_OBJECTS:
|
||||||
|
newState.objects = [...action.objects]
|
||||||
|
break
|
||||||
|
case action.RESET_OBJECTS:
|
||||||
|
newState.objects = []
|
||||||
|
newState.marker = ""
|
||||||
|
newState.istruncated = false
|
||||||
break
|
break
|
||||||
case actions.SET_CURRENT_PATH:
|
case actions.SET_CURRENT_PATH:
|
||||||
newState.currentPath = action.currentPath
|
newState.currentPath = action.currentPath
|
||||||
|
Loading…
x
Reference in New Issue
Block a user