feat: add drag-and-drop functionality for logit bias lists

This commit is contained in:
Cohee
2024-12-22 19:26:47 +02:00
parent e6107ad447
commit 1ebaf18210
3 changed files with 49 additions and 3 deletions

View File

@ -3465,7 +3465,8 @@ function onLogitBiasPresetChange() {
}
oai_settings.bias_preset_selected = value;
$('.openai_logit_bias_list').empty();
const list = $('.openai_logit_bias_list');
list.empty();
for (const entry of preset) {
if (entry) {
@ -3473,6 +3474,27 @@ function onLogitBiasPresetChange() {
}
}
// Check if a sortable instance exists
if (list.sortable('instance') !== undefined) {
// Destroy the instance
list.sortable('destroy');
}
// Make the list sortable
list.sortable({
delay: getSortableDelay(),
handle: '.drag-handle',
stop: function () {
const order = [];
list.children().each(function () {
order.unshift(parseInt($(this).data('id')));
});
preset.sort((a, b) => order.indexOf(preset.indexOf(a)) - order.indexOf(preset.indexOf(b)));
console.log('Logit bias reordered:', preset);
saveSettingsDebounced();
},
});
biasCache = undefined;
saveSettingsDebounced();
}