Merge pull request #17260 from nextcloud/feature/noid/filepicker-allow-multiple-buttons
Allow to have mutliple buttons on the filepicker
This commit is contained in:
commit
b78a141b0b
7 changed files with 25 additions and 12 deletions
BIN
core/js/dist/login.js
vendored
BIN
core/js/dist/login.js
vendored
Binary file not shown.
BIN
core/js/dist/login.js.map
vendored
BIN
core/js/dist/login.js.map
vendored
Binary file not shown.
BIN
core/js/dist/main.js
vendored
BIN
core/js/dist/main.js
vendored
Binary file not shown.
BIN
core/js/dist/main.js.map
vendored
BIN
core/js/dist/main.js.map
vendored
Binary file not shown.
BIN
core/js/dist/maintenance.js
vendored
BIN
core/js/dist/maintenance.js
vendored
Binary file not shown.
BIN
core/js/dist/maintenance.js.map
vendored
BIN
core/js/dist/maintenance.js.map
vendored
Binary file not shown.
|
@ -41,6 +41,7 @@ const Dialogs = {
|
|||
FILEPICKER_TYPE_MOVE: 2,
|
||||
FILEPICKER_TYPE_COPY: 3,
|
||||
FILEPICKER_TYPE_COPY_MOVE: 4,
|
||||
FILEPICKER_TYPE_CUSTOM: 5,
|
||||
|
||||
// used to name each dialog
|
||||
dialogsCounter: 0,
|
||||
|
@ -446,6 +447,16 @@ const Dialogs = {
|
|||
click: chooseCallback,
|
||||
defaultButton: true
|
||||
})
|
||||
} else if (type === Dialogs.FILEPICKER_TYPE_CUSTOM) {
|
||||
options.buttons.forEach(function(button) {
|
||||
buttonlist.push({
|
||||
text: button.text,
|
||||
click: function() {
|
||||
functionToCall(button.type)
|
||||
},
|
||||
defaultButton: button.defaultButton
|
||||
})
|
||||
})
|
||||
} else {
|
||||
if (type === Dialogs.FILEPICKER_TYPE_COPY || type === Dialogs.FILEPICKER_TYPE_COPY_MOVE) {
|
||||
buttonlist.push({
|
||||
|
@ -1253,18 +1264,20 @@ const Dialogs = {
|
|||
var moveText = dir === '' ? t('core', 'Move') : t('core', 'Move to {folder}', { folder: dir })
|
||||
var buttons = $('.oc-dialog-buttonrow button')
|
||||
switch (type) {
|
||||
case this.FILEPICKER_TYPE_CHOOSE:
|
||||
break
|
||||
case this.FILEPICKER_TYPE_COPY:
|
||||
buttons.text(copyText)
|
||||
break
|
||||
case this.FILEPICKER_TYPE_MOVE:
|
||||
buttons.text(moveText)
|
||||
break
|
||||
case this.FILEPICKER_TYPE_COPY_MOVE:
|
||||
buttons.eq(0).text(copyText)
|
||||
buttons.eq(1).text(moveText)
|
||||
break
|
||||
case this.FILEPICKER_TYPE_CHOOSE:
|
||||
break
|
||||
case this.FILEPICKER_TYPE_CUSTOM:
|
||||
break
|
||||
case this.FILEPICKER_TYPE_COPY:
|
||||
buttons.text(copyText)
|
||||
break
|
||||
case this.FILEPICKER_TYPE_MOVE:
|
||||
buttons.text(moveText)
|
||||
break
|
||||
case this.FILEPICKER_TYPE_COPY_MOVE:
|
||||
buttons.eq(0).text(copyText)
|
||||
buttons.eq(1).text(moveText)
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue