mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-04-04 06:01:07 +02:00
Refactor deleteSwipe from callback into func
This commit is contained in:
parent
7b576c8067
commit
d663be53ac
@ -78,8 +78,6 @@ import {
|
|||||||
renderStoryString,
|
renderStoryString,
|
||||||
sortEntitiesList,
|
sortEntitiesList,
|
||||||
registerDebugFunction,
|
registerDebugFunction,
|
||||||
ui_mode,
|
|
||||||
switchSimpleMode,
|
|
||||||
flushEphemeralStoppingStrings,
|
flushEphemeralStoppingStrings,
|
||||||
context_presets,
|
context_presets,
|
||||||
resetMovableStyles,
|
resetMovableStyles,
|
||||||
@ -6323,15 +6321,11 @@ export function setUserName(value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function doOnboarding(avatarId) {
|
async function doOnboarding(avatarId) {
|
||||||
let simpleUiMode = false;
|
|
||||||
const template = $('#onboarding_template .onboarding');
|
const template = $('#onboarding_template .onboarding');
|
||||||
template.find('input[name="enable_simple_mode"]').on('input', function () {
|
|
||||||
simpleUiMode = $(this).is(':checked');
|
|
||||||
});
|
|
||||||
let userName = await callGenericPopup(template, POPUP_TYPE.INPUT, currentUser?.name || name1, { rows: 2, wide: true, large: true });
|
let userName = await callGenericPopup(template, POPUP_TYPE.INPUT, currentUser?.name || name1, { rows: 2, wide: true, large: true });
|
||||||
|
|
||||||
if (userName) {
|
if (userName) {
|
||||||
userName = userName.replace('\n', ' ');
|
userName = String(userName).replace('\n', ' ');
|
||||||
setUserName(userName);
|
setUserName(userName);
|
||||||
console.log(`Binding persona ${avatarId} to name ${userName}`);
|
console.log(`Binding persona ${avatarId} to name ${userName}`);
|
||||||
power_user.personas[avatarId] = userName;
|
power_user.personas[avatarId] = userName;
|
||||||
@ -6340,12 +6334,6 @@ async function doOnboarding(avatarId) {
|
|||||||
position: persona_description_positions.IN_PROMPT,
|
position: persona_description_positions.IN_PROMPT,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (simpleUiMode) {
|
|
||||||
power_user.ui_mode = ui_mode.SIMPLE;
|
|
||||||
$('#ui_mode_select').val(power_user.ui_mode);
|
|
||||||
switchSimpleMode();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function reloadLoop() {
|
function reloadLoop() {
|
||||||
@ -7465,6 +7453,53 @@ export function hideSwipeButtons() {
|
|||||||
$('#chat').find('.swipe_left').css('display', 'none');
|
$('#chat').find('.swipe_left').css('display', 'none');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deletes a swipe from the chat.
|
||||||
|
*
|
||||||
|
* @param {number?} swipeId - The ID of the swipe to delete. If not provided, the current swipe will be deleted.
|
||||||
|
* @returns {Promise<number>|undefined} - The ID of the new swipe after deletion.
|
||||||
|
*/
|
||||||
|
export async function deleteSwipe(swipeId = null) {
|
||||||
|
if (swipeId && (isNaN(swipeId) || swipeId < 0)) {
|
||||||
|
toastr.warning('Invalid swipe ID: ' + swipeId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const lastMessage = chat[chat.length - 1];
|
||||||
|
if (!lastMessage || !Array.isArray(lastMessage.swipes) || !lastMessage.swipes.length) {
|
||||||
|
toastr.warning('No messages to delete swipes from.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lastMessage.swipes.length <= 1) {
|
||||||
|
toastr.warning('Can\'t delete the last swipe.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
swipeId = swipeId ?? lastMessage.swipe_id;
|
||||||
|
|
||||||
|
if (swipeId < 0 || swipeId >= lastMessage.swipes.length) {
|
||||||
|
toastr.warning(`Invalid swipe ID: ${swipeId + 1}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
lastMessage.swipes.splice(swipeId, 1);
|
||||||
|
|
||||||
|
if (Array.isArray(lastMessage.swipe_info) && lastMessage.swipe_info.length) {
|
||||||
|
lastMessage.swipe_info.splice(swipeId, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Select the next swip, or the one before if it was the last one
|
||||||
|
const newSwipeId = Math.min(swipeId, lastMessage.swipes.length - 1);
|
||||||
|
lastMessage.swipe_id = newSwipeId;
|
||||||
|
lastMessage.mes = lastMessage.swipes[newSwipeId];
|
||||||
|
|
||||||
|
await saveChatConditional();
|
||||||
|
await reloadCurrentChat();
|
||||||
|
|
||||||
|
return newSwipeId;
|
||||||
|
}
|
||||||
|
|
||||||
export async function saveMetadata() {
|
export async function saveMetadata() {
|
||||||
if (selected_group) {
|
if (selected_group) {
|
||||||
await editGroup(selected_group, true, false);
|
await editGroup(selected_group, true, false);
|
||||||
@ -8008,7 +8043,7 @@ window['SillyTavern'].getContext = function () {
|
|||||||
registerHelper: () => { },
|
registerHelper: () => { },
|
||||||
registerMacro: MacrosParser.registerMacro.bind(MacrosParser),
|
registerMacro: MacrosParser.registerMacro.bind(MacrosParser),
|
||||||
unregisterMacro: MacrosParser.unregisterMacro.bind(MacrosParser),
|
unregisterMacro: MacrosParser.unregisterMacro.bind(MacrosParser),
|
||||||
registedDebugFunction: registerDebugFunction,
|
registerDebugFunction: registerDebugFunction,
|
||||||
/** @deprecated Use renderExtensionTemplateAsync instead. */
|
/** @deprecated Use renderExtensionTemplateAsync instead. */
|
||||||
renderExtensionTemplate: renderExtensionTemplate,
|
renderExtensionTemplate: renderExtensionTemplate,
|
||||||
renderExtensionTemplateAsync: renderExtensionTemplateAsync,
|
renderExtensionTemplateAsync: renderExtensionTemplateAsync,
|
||||||
@ -8943,6 +8978,12 @@ function addDebugFunctions() {
|
|||||||
await reloadCurrentChat();
|
await reloadCurrentChat();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
registerDebugFunction('forceOnboarding', 'Force onboarding', 'Forces the onboarding process to restart.', async () => {
|
||||||
|
firstRun = true;
|
||||||
|
await saveSettings();
|
||||||
|
location.reload();
|
||||||
|
});
|
||||||
|
|
||||||
registerDebugFunction('backfillTokenCounts', 'Backfill token counters',
|
registerDebugFunction('backfillTokenCounts', 'Backfill token counters',
|
||||||
`Recalculates token counts of all messages in the current chat to refresh the counters.
|
`Recalculates token counts of all messages in the current chat to refresh the counters.
|
||||||
Useful when you switch between models that have different tokenizers.
|
Useful when you switch between models that have different tokenizers.
|
||||||
|
@ -11,6 +11,7 @@ import {
|
|||||||
comment_avatar,
|
comment_avatar,
|
||||||
deactivateSendButtons,
|
deactivateSendButtons,
|
||||||
default_avatar,
|
default_avatar,
|
||||||
|
deleteSwipe,
|
||||||
eventSource,
|
eventSource,
|
||||||
event_types,
|
event_types,
|
||||||
extension_prompt_roles,
|
extension_prompt_roles,
|
||||||
@ -2309,37 +2310,10 @@ async function addSwipeCallback(args, value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function deleteSwipeCallback(_, arg) {
|
async function deleteSwipeCallback(_, arg) {
|
||||||
const lastMessage = chat[chat.length - 1];
|
// Take the provided argument. Null if none provided, which will target the current swipe.
|
||||||
|
const swipeId = arg && !isNaN(Number(arg)) ? (Number(arg) - 1) : null;
|
||||||
|
|
||||||
if (!lastMessage || !Array.isArray(lastMessage.swipes) || !lastMessage.swipes.length) {
|
const newSwipeId = await deleteSwipe(swipeId);
|
||||||
toastr.warning('No messages to delete swipes from.');
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (lastMessage.swipes.length <= 1) {
|
|
||||||
toastr.warning('Can\'t delete the last swipe.');
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
const swipeId = arg && !isNaN(Number(arg)) ? (Number(arg) - 1) : lastMessage.swipe_id;
|
|
||||||
|
|
||||||
if (swipeId < 0 || swipeId >= lastMessage.swipes.length) {
|
|
||||||
toastr.warning(`Invalid swipe ID: ${swipeId + 1}`);
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
lastMessage.swipes.splice(swipeId, 1);
|
|
||||||
|
|
||||||
if (Array.isArray(lastMessage.swipe_info) && lastMessage.swipe_info.length) {
|
|
||||||
lastMessage.swipe_info.splice(swipeId, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
const newSwipeId = Math.min(swipeId, lastMessage.swipes.length - 1);
|
|
||||||
lastMessage.swipe_id = newSwipeId;
|
|
||||||
lastMessage.mes = lastMessage.swipes[newSwipeId];
|
|
||||||
|
|
||||||
await saveChatConditional();
|
|
||||||
await reloadCurrentChat();
|
|
||||||
|
|
||||||
return String(newSwipeId);
|
return String(newSwipeId);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user