2023-07-20 19:32:15 +02:00
import {
saveSettingsDebounced ,
scrollChatToBottom ,
characters ,
callPopup ,
reloadMarkdownProcessor ,
reloadCurrentChat ,
getRequestHeaders ,
substituteParams ,
eventSource ,
event _types ,
getCurrentChatId ,
printCharacters ,
setCharacterId ,
2023-08-27 22:20:43 +02:00
setEditedMessageId ,
renderTemplate ,
2023-11-08 22:04:32 +01:00
chat ,
getFirstDisplayedMessageId ,
showMoreMessages ,
2023-12-06 16:23:54 +01:00
saveSettings ,
saveChatConditional ,
2023-12-10 19:02:25 +01:00
setAnimationDuration ,
ANIMATION _DURATION _DEFAULT ,
2023-12-02 19:04:51 +01:00
} from '../script.js' ;
import { isMobile , initMovingUI , favsToHotswap } from './RossAscends-mods.js' ;
2023-07-20 19:32:15 +02:00
import {
groups ,
resetSelectedGroup ,
2023-12-02 19:04:51 +01:00
} from './group-chats.js' ;
2023-08-23 20:17:45 +02:00
import {
instruct _presets ,
loadInstructMode ,
selectInstructPreset ,
2023-12-02 19:04:51 +01:00
} from './instruct-mode.js' ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
import { registerSlashCommand } from './slash-commands.js' ;
import { tags } from './tags.js' ;
import { tokenizers } from './tokenizers.js' ;
2023-07-20 19:32:15 +02:00
2023-12-10 04:37:49 +01:00
import { countOccurrences , debounce , delay , isOdd , resetScrollHeight , shuffle , sortMoments , stringToRange , timestampToMoment } from './utils.js' ;
2023-07-20 19:32:15 +02:00
export {
loadPowerUserSettings ,
loadMovingUIState ,
collapseNewlines ,
playMessageSound ,
2023-08-18 22:13:15 +02:00
sortEntitiesList ,
2023-07-20 19:32:15 +02:00
fixMarkdown ,
power _user ,
send _on _enter _options ,
2023-10-20 07:56:17 +02:00
getContextSettings ,
2023-07-20 19:32:15 +02:00
} ;
2023-10-26 06:20:47 +02:00
export const MAX _CONTEXT _DEFAULT = 8192 ;
2023-12-03 17:30:21 +01:00
export const MAX _RESPONSE _DEFAULT = 2048 ;
const MAX _CONTEXT _UNLOCKED = 200 * 1024 ;
const MAX _RESPONSE _UNLOCKED = 16 * 1024 ;
2023-12-03 13:02:38 +01:00
const unlockedMaxContextStep = 512 ;
2023-10-27 12:22:46 +02:00
const maxContextMin = 512 ;
2023-11-29 03:37:18 +01:00
const maxContextStep = 256 ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
const defaultStoryString = '{{#if system}}{{system}}\n{{/if}}{{#if description}}{{description}}\n{{/if}}{{#if personality}}{{char}}\'s personality: {{personality}}\n{{/if}}{{#if scenario}}Scenario: {{scenario}}\n{{/if}}{{#if persona}}{{persona}}\n{{/if}}' ;
2023-08-17 21:47:34 +02:00
const defaultExampleSeparator = '***' ;
const defaultChatStart = '***' ;
2023-08-29 17:04:10 +02:00
export const ui _mode = {
SIMPLE : 0 ,
POWER : 1 ,
2023-12-02 20:11:06 +01:00
} ;
2023-08-29 17:04:10 +02:00
2023-07-20 19:32:15 +02:00
const avatar _styles = {
ROUND : 0 ,
RECTANGULAR : 1 ,
2023-11-26 14:27:54 +01:00
SQUARE : 2 ,
2023-12-02 20:11:06 +01:00
} ;
2023-07-20 19:32:15 +02:00
export const chat _styles = {
DEFAULT : 0 ,
BUBBLES : 1 ,
DOCUMENT : 2 ,
2023-12-02 20:11:06 +01:00
} ;
2023-07-20 19:32:15 +02:00
const send _on _enter _options = {
DISABLED : - 1 ,
AUTO : 0 ,
ENABLED : 1 ,
2023-12-02 20:11:06 +01:00
} ;
2023-07-20 19:32:15 +02:00
export const persona _description _positions = {
2023-08-28 23:09:41 +02:00
IN _PROMPT : 0 ,
/ * *
* @ deprecated Use persona _description _positions . IN _PROMPT instead .
* /
2023-07-20 19:32:15 +02:00
AFTER _CHAR : 1 ,
TOP _AN : 2 ,
BOTTOM _AN : 3 ,
2023-12-02 20:11:06 +01:00
} ;
2023-07-20 19:32:15 +02:00
let power _user = {
2023-08-04 13:17:05 +02:00
tokenizer : tokenizers . BEST _MATCH ,
2023-07-20 19:32:15 +02:00
token _padding : 64 ,
collapse _newlines : false ,
pin _examples : false ,
2023-08-19 18:25:07 +02:00
strip _examples : false ,
2023-07-20 19:32:15 +02:00
trim _sentences : false ,
include _newline : false ,
always _force _name2 : false ,
user _prompt _bias : '' ,
show _user _prompt _bias : true ,
2023-09-15 20:34:41 +02:00
auto _continue : {
enabled : false ,
allow _chat _completions : false ,
target _length : 400 ,
} ,
2023-07-20 19:32:15 +02:00
markdown _escape _strings : '' ,
2023-11-19 20:57:54 +01:00
chat _truncation : 100 ,
2023-07-20 19:32:15 +02:00
2023-08-29 17:04:10 +02:00
ui _mode : ui _mode . POWER ,
2023-07-20 19:32:15 +02:00
fast _ui _mode : true ,
avatar _style : avatar _styles . ROUND ,
chat _display : chat _styles . DEFAULT ,
chat _width : 50 ,
never _resize _avatars : false ,
show _card _avatar _urls : false ,
play _message _sound : false ,
play _sound _unfocused : true ,
auto _save _msg _edits : false ,
confirm _message _delete : true ,
sort _field : 'name' ,
sort _order : 'asc' ,
sort _rule : null ,
font _scale : 1 ,
blur _strength : 10 ,
shadow _width : 2 ,
main _text _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeBodyColor' ) . trim ( ) } ` ,
italics _text _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeEmColor' ) . trim ( ) } ` ,
quote _text _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeQuoteColor' ) . trim ( ) } ` ,
blur _tint _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeBlurTintColor' ) . trim ( ) } ` ,
2023-09-22 09:54:51 +02:00
chat _tint _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeChatTintColor' ) . trim ( ) } ` ,
2023-07-20 19:32:15 +02:00
user _mes _blur _tint _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeUserMesBlurTintColor' ) . trim ( ) } ` ,
bot _mes _blur _tint _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeBotMesBlurTintColor' ) . trim ( ) } ` ,
shadow _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeShadowColor' ) . trim ( ) } ` ,
2023-09-16 08:42:26 +02:00
border _color : ` ${ getComputedStyle ( document . documentElement ) . getPropertyValue ( '--SmartThemeBorderColor' ) . trim ( ) } ` ,
2023-09-22 20:13:58 +02:00
custom _css : '' ,
2023-07-20 19:32:15 +02:00
waifuMode : false ,
movingUI : false ,
movingUIState : { } ,
movingUIPreset : '' ,
noShadows : false ,
theme : 'Default (Dark) 1.7.1' ,
2023-10-23 03:54:17 +02:00
gestures : true ,
2023-07-20 19:32:15 +02:00
auto _swipe : false ,
auto _swipe _minimum _length : 0 ,
auto _swipe _blacklist : [ ] ,
auto _swipe _blacklist _threshold : 2 ,
auto _scroll _chat _to _bottom : true ,
auto _fix _generated _markdown : true ,
send _on _enter : send _on _enter _options . AUTO ,
console _log _prompts : false ,
render _formulas : false ,
allow _name1 _display : false ,
allow _name2 _display : false ,
hotswap _enabled : true ,
timer _enabled : true ,
timestamps _enabled : true ,
2023-08-14 00:43:16 +02:00
timestamp _model _icon : false ,
2023-07-20 19:32:15 +02:00
mesIDDisplay _enabled : false ,
max _context _unlocked : false ,
2023-08-31 16:10:01 +02:00
message _token _count _enabled : false ,
2023-09-14 14:23:51 +02:00
expand _message _actions : false ,
2023-11-04 21:47:53 +01:00
enableZenSliders : false ,
2023-11-10 08:17:38 +01:00
enableLabMode : false ,
2023-07-20 19:32:15 +02:00
prefer _character _prompt : true ,
prefer _character _jailbreak : true ,
2023-08-24 00:37:44 +02:00
quick _continue : false ,
2023-08-24 14:13:04 +02:00
continue _on _send : false ,
2023-07-20 19:32:15 +02:00
trim _spaces : true ,
2023-08-04 22:49:55 +02:00
relaxed _api _urls : false ,
2023-10-10 17:08:08 +02:00
world _import _dialog : true ,
2023-08-30 15:31:53 +02:00
disable _group _trimming : false ,
2023-10-27 20:02:03 +02:00
single _line : false ,
2023-07-20 19:32:15 +02:00
2023-08-19 19:18:39 +02:00
default _instruct : '' ,
2023-07-20 19:32:15 +02:00
instruct : {
enabled : false ,
2023-12-02 19:04:51 +01:00
preset : 'Alpaca' ,
system _prompt : 'Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\nWrite {{char}}\'s next reply in a fictional roleplay chat between {{user}} and {{char}}.\n' ,
input _sequence : '### Instruction:' ,
output _sequence : '### Response:' ,
first _output _sequence : '' ,
last _output _sequence : '' ,
system _sequence _prefix : '' ,
system _sequence _suffix : '' ,
stop _sequence : '' ,
separator _sequence : '' ,
2023-07-20 19:32:15 +02:00
wrap : true ,
2023-08-25 22:34:08 +02:00
macro : true ,
2023-07-20 19:32:15 +02:00
names : false ,
2023-08-08 16:11:38 +02:00
names _force _groups : true ,
2023-12-02 19:04:51 +01:00
activation _regex : '' ,
2023-07-20 19:32:15 +02:00
} ,
2023-08-26 12:09:47 +02:00
default _context : 'Default' ,
2023-08-17 21:47:34 +02:00
context : {
preset : 'Default' ,
story _string : defaultStoryString ,
chat _start : defaultChatStart ,
example _separator : defaultExampleSeparator ,
2023-12-01 22:06:37 +01:00
use _stop _strings : true ,
2023-08-17 21:47:34 +02:00
} ,
2023-07-20 19:32:15 +02:00
personas : { } ,
default _persona : null ,
persona _descriptions : { } ,
persona _description : '' ,
2023-08-28 23:09:41 +02:00
persona _description _position : persona _description _positions . IN _PROMPT ,
2023-08-03 13:24:45 +02:00
persona _show _notifications : true ,
2023-07-20 19:32:15 +02:00
custom _stopping _strings : '' ,
2023-08-04 16:53:49 +02:00
custom _stopping _strings _macro : true ,
2023-07-27 23:38:43 +02:00
fuzzy _search : false ,
2023-08-10 10:47:17 +02:00
encode _tags : false ,
2023-09-08 21:44:06 +02:00
servers : [ ] ,
2023-11-10 20:56:25 +01:00
bogus _folders : false ,
2023-11-11 17:25:43 +01:00
aux _field : 'character_version' ,
2023-11-27 23:29:34 +01:00
restore _user _input : true ,
2023-12-10 19:02:25 +01:00
reduced _motion : false ,
2023-07-20 19:32:15 +02:00
} ;
let themes = [ ] ;
let movingUIPresets = [ ] ;
2023-08-23 20:17:45 +02:00
export let context _presets = [ ] ;
2023-07-20 19:32:15 +02:00
const storage _keys = {
2023-12-02 19:04:51 +01:00
fast _ui _mode : 'TavernAI_fast_ui_mode' ,
avatar _style : 'TavernAI_avatar_style' ,
chat _display : 'TavernAI_chat_display' ,
chat _width : 'chat_width' ,
font _scale : 'TavernAI_font_scale' ,
main _text _color : 'TavernAI_main_text_color' ,
italics _text _color : 'TavernAI_italics_text_color' ,
quote _text _color : 'TavernAI_quote_text_color' ,
blur _tint _color : 'TavernAI_blur_tint_color' ,
chat _tint _color : 'TavernAI_chat_tint_color' ,
user _mes _blur _tint _color : 'TavernAI_user_mes_blur_tint_color' ,
bot _mes _blur _tint _color : 'TavernAI_bot_mes_blur_tint_color' ,
blur _strength : 'TavernAI_blur_strength' ,
shadow _color : 'TavernAI_shadow_color' ,
shadow _width : 'TavernAI_shadow_width' ,
border _color : 'TavernAI_border_color' ,
custom _css : 'TavernAI_custom_css' ,
waifuMode : 'TavernAI_waifuMode' ,
movingUI : 'TavernAI_movingUI' ,
noShadows : 'TavernAI_noShadows' ,
2023-07-20 19:32:15 +02:00
hotswap _enabled : 'HotswapEnabled' ,
timer _enabled : 'TimerEnabled' ,
timestamps _enabled : 'TimestampsEnabled' ,
2023-08-14 00:43:16 +02:00
timestamp _model _icon : 'TimestampModelIcon' ,
2023-07-20 19:32:15 +02:00
mesIDDisplay _enabled : 'mesIDDisplayEnabled' ,
2023-08-31 16:10:01 +02:00
message _token _count _enabled : 'MessageTokenCountEnabled' ,
2023-09-14 14:23:51 +02:00
expand _message _actions : 'ExpandMessageActions' ,
2023-11-04 21:47:53 +01:00
enableZenSliders : 'enableZenSliders' ,
2023-11-10 08:17:38 +01:00
enableLabMode : 'enableLabMode' ,
2023-12-10 19:02:25 +01:00
reduced _motion : 'reduced_motion' ,
2023-07-20 19:32:15 +02:00
} ;
2023-10-20 07:56:17 +02:00
const contextControls = [
// Power user context scoped settings
2023-12-02 19:04:51 +01:00
{ id : 'context_story_string' , property : 'story_string' , isCheckbox : false , isGlobalSetting : false } ,
{ id : 'context_example_separator' , property : 'example_separator' , isCheckbox : false , isGlobalSetting : false } ,
{ id : 'context_chat_start' , property : 'chat_start' , isCheckbox : false , isGlobalSetting : false } ,
{ id : 'context_use_stop_strings' , property : 'use_stop_strings' , isCheckbox : true , isGlobalSetting : false , defaultValue : false } ,
2023-10-20 07:56:17 +02:00
// Existing power user settings
2023-12-02 19:04:51 +01:00
{ id : 'always-force-name2-checkbox' , property : 'always_force_name2' , isCheckbox : true , isGlobalSetting : true , defaultValue : true } ,
{ id : 'trim_sentences_checkbox' , property : 'trim_sentences' , isCheckbox : true , isGlobalSetting : true , defaultValue : false } ,
{ id : 'include_newline_checkbox' , property : 'include_newline' , isCheckbox : true , isGlobalSetting : true , defaultValue : false } ,
{ id : 'single_line' , property : 'single_line' , isCheckbox : true , isGlobalSetting : true , defaultValue : false } ,
2023-10-20 07:56:17 +02:00
] ;
2023-07-20 19:32:15 +02:00
let browser _has _focus = true ;
2023-08-27 22:20:43 +02:00
const debug _functions = [ ] ;
2023-07-20 19:32:15 +02:00
2023-09-14 14:56:01 +02:00
const setHotswapsDebounced = debounce ( favsToHotswap , 500 ) ;
2023-08-29 17:04:10 +02:00
export function switchSimpleMode ( ) {
$ ( '[data-newbie-hidden]' ) . each ( function ( ) {
$ ( this ) . toggleClass ( 'displayNone' , power _user . ui _mode === ui _mode . SIMPLE ) ;
} ) ;
}
2023-07-20 19:32:15 +02:00
function playMessageSound ( ) {
if ( ! power _user . play _message _sound ) {
return ;
}
if ( power _user . play _sound _unfocused && browser _has _focus ) {
return ;
}
const audio = document . getElementById ( 'audio_message_sound' ) ;
2023-08-22 12:07:24 +02:00
if ( audio instanceof HTMLAudioElement ) {
audio . volume = 0.8 ;
audio . pause ( ) ;
audio . currentTime = 0 ;
audio . play ( ) ;
}
2023-07-20 19:32:15 +02:00
}
2023-08-22 12:07:24 +02:00
/ * *
* Replaces consecutive newlines with a single newline .
* @ param { string } x String to be processed .
* @ returns { string } Processed string .
* @ example
* collapseNewlines ( "\n\n\n" ) ; // "\n"
* /
2023-07-20 19:32:15 +02:00
function collapseNewlines ( x ) {
2023-12-02 19:04:51 +01:00
return x . replaceAll ( /\n+/g , '\n' ) ;
2023-07-20 19:32:15 +02:00
}
2023-08-22 12:07:24 +02:00
/ * *
* Fix formatting problems in markdown .
* @ param { string } text Text to be processed .
2023-08-31 13:39:31 +02:00
* @ param { boolean } forDisplay Whether the text is being processed for display .
2023-08-22 12:07:24 +02:00
* @ returns { string } Processed text .
* @ example
* "^example * text*\n" // "^example *text*\n"
* "^*example * text\n" // "^*example* text\n"
* "^example *text *\n" // "^example *text*\n"
* "^* example * text\n" // "^*example* text\n"
* // take note that the side you move the asterisk depends on where its pairing is
* // i.e. both of the following strings have the same broken asterisk ' * ',
* // but you move the first to the left and the second to the right, to match the non-broken asterisk
* "^example * text*\n" // "^*example * text\n"
* // and you HAVE to handle the cases where multiple pairs of asterisks exist in the same line
* "^example * text* * harder problem *\n" // "^example *text* *harder problem*\n"
* /
2023-08-31 13:39:31 +02:00
function fixMarkdown ( text , forDisplay ) {
2023-07-20 19:32:15 +02:00
// Find pairs of formatting characters and capture the text in between them
2023-12-02 16:17:31 +01:00
const format = /([*_]{1,2})([\s\S]*?)\1/gm ;
2023-07-20 19:32:15 +02:00
let matches = [ ] ;
let match ;
while ( ( match = format . exec ( text ) ) !== null ) {
matches . push ( match ) ;
}
// Iterate through the matches and replace adjacent spaces immediately beside formatting characters
let newText = text ;
for ( let i = matches . length - 1 ; i >= 0 ; i -- ) {
let matchText = matches [ i ] [ 0 ] ;
2023-07-29 00:35:36 +02:00
let replacementText = matchText . replace ( /(\*|_)([\t \u00a0\u1680\u2000-\u200a\u202f\u205f\u3000\ufeff]+)|([\t \u00a0\u1680\u2000-\u200a\u202f\u205f\u3000\ufeff]+)(\*|_)/g , '$1$4' ) ;
2023-07-20 19:32:15 +02:00
newText = newText . slice ( 0 , matches [ i ] . index ) + replacementText + newText . slice ( matches [ i ] . index + matchText . length ) ;
}
2023-08-31 13:39:31 +02:00
// Don't auto-fix asterisks if this is a message clean-up procedure.
// It botches the continue function. Apply this to display only.
if ( ! forDisplay ) {
return newText ;
}
const splitText = newText . split ( '\n' ) ;
// Fix asterisks, and quotes that are not paired
for ( let index = 0 ; index < splitText . length ; index ++ ) {
const line = splitText [ index ] ;
const charsToCheck = [ '*' , '"' ] ;
for ( const char of charsToCheck ) {
if ( line . includes ( char ) && isOdd ( countOccurrences ( line , char ) ) ) {
splitText [ index ] = line . trimEnd ( ) + char ;
}
}
}
newText = splitText . join ( '\n' ) ;
2023-07-20 19:32:15 +02:00
return newText ;
}
function switchHotswap ( ) {
const value = localStorage . getItem ( storage _keys . hotswap _enabled ) ;
2023-12-02 19:04:51 +01:00
power _user . hotswap _enabled = value === null ? true : value == 'true' ;
$ ( 'body' ) . toggleClass ( 'no-hotswap' , ! power _user . hotswap _enabled ) ;
$ ( '#hotswapEnabled' ) . prop ( 'checked' , power _user . hotswap _enabled ) ;
2023-07-20 19:32:15 +02:00
}
function switchTimer ( ) {
const value = localStorage . getItem ( storage _keys . timer _enabled ) ;
2023-12-02 19:04:51 +01:00
power _user . timer _enabled = value === null ? true : value == 'true' ;
$ ( 'body' ) . toggleClass ( 'no-timer' , ! power _user . timer _enabled ) ;
$ ( '#messageTimerEnabled' ) . prop ( 'checked' , power _user . timer _enabled ) ;
2023-07-20 19:32:15 +02:00
}
function switchTimestamps ( ) {
const value = localStorage . getItem ( storage _keys . timestamps _enabled ) ;
2023-12-02 19:04:51 +01:00
power _user . timestamps _enabled = value === null ? true : value == 'true' ;
$ ( 'body' ) . toggleClass ( 'no-timestamps' , ! power _user . timestamps _enabled ) ;
$ ( '#messageTimestampsEnabled' ) . prop ( 'checked' , power _user . timestamps _enabled ) ;
2023-07-20 19:32:15 +02:00
}
2023-08-14 00:43:16 +02:00
function switchIcons ( ) {
const value = localStorage . getItem ( storage _keys . timestamp _model _icon ) ;
2023-12-02 19:04:51 +01:00
power _user . timestamp _model _icon = value === null ? true : value == 'true' ;
$ ( 'body' ) . toggleClass ( 'no-modelIcons' , ! power _user . timestamp _model _icon ) ;
$ ( '#messageModelIconEnabled' ) . prop ( 'checked' , power _user . timestamp _model _icon ) ;
2023-08-14 00:43:16 +02:00
}
2023-08-31 16:10:01 +02:00
function switchTokenCount ( ) {
const value = localStorage . getItem ( storage _keys . message _token _count _enabled ) ;
2023-12-02 19:04:51 +01:00
power _user . message _token _count _enabled = value === null ? false : value == 'true' ;
$ ( 'body' ) . toggleClass ( 'no-tokenCount' , ! power _user . message _token _count _enabled ) ;
$ ( '#messageTokensEnabled' ) . prop ( 'checked' , power _user . message _token _count _enabled ) ;
2023-08-31 16:10:01 +02:00
}
2023-09-22 15:16:24 +02:00
function switchMesIDDisplay ( ) {
const value = localStorage . getItem ( storage _keys . mesIDDisplay _enabled ) ;
2023-12-02 19:04:51 +01:00
power _user . mesIDDisplay _enabled = value === null ? true : value == 'true' ;
2023-09-22 15:16:24 +02:00
/ * c o n s o l e . l o g ( `
2023-09-22 15:56:01 +02:00
localstorage value : $ { value } ,
poweruser before : $ { before } ,
2023-09-22 15:16:24 +02:00
poweruser after : $ { power _user . mesIDDisplay _enabled } ` ) */
2023-12-02 19:04:51 +01:00
$ ( 'body' ) . toggleClass ( 'no-mesIDDisplay' , ! power _user . mesIDDisplay _enabled ) ;
$ ( '#mesIDDisplayEnabled' ) . prop ( 'checked' , power _user . mesIDDisplay _enabled ) ;
2023-09-22 15:16:24 +02:00
}
2023-09-14 14:23:51 +02:00
function switchMessageActions ( ) {
const value = localStorage . getItem ( storage _keys . expand _message _actions ) ;
2023-12-02 19:04:51 +01:00
power _user . expand _message _actions = value === null ? false : value == 'true' ;
$ ( 'body' ) . toggleClass ( 'expandMessageActions' , power _user . expand _message _actions ) ;
$ ( '#expandMessageActions' ) . prop ( 'checked' , power _user . expand _message _actions ) ;
2023-10-21 14:41:27 +02:00
$ ( '.extraMesButtons, .extraMesButtonsHint' ) . removeAttr ( 'style' ) ;
2023-09-14 14:23:51 +02:00
}
2023-12-10 19:02:25 +01:00
function switchReducedMotion ( ) {
const value = localStorage . getItem ( storage _keys . reduced _motion ) ;
power _user . reduced _motion = value === null ? false : value == 'true' ;
jQuery . fx . off = power _user . reduced _motion ;
const overrideDuration = power _user . reduced _motion ? 0 : ANIMATION _DURATION _DEFAULT ;
setAnimationDuration ( overrideDuration ) ;
$ ( '#reduced_motion' ) . prop ( 'checked' , power _user . reduced _motion ) ;
}
2023-12-02 20:11:06 +01:00
var originalSliderValues = [ ] ;
2023-11-10 08:17:38 +01:00
async function switchLabMode ( ) {
2023-11-12 09:23:29 +01:00
/ * i f ( p o w e r _ u s e r . e n a b l e Z e n S l i d e r s & & p o w e r _ u s e r . e n a b l e L a b M o d e ) {
toastr . warning ( "Can't start Lab Mode while Zen Sliders are active" )
return
//$("#enableZenSliders").trigger('click')
}
* /
2023-12-02 20:11:06 +01:00
await delay ( 100 ) ;
2023-11-10 08:17:38 +01:00
const value = localStorage . getItem ( storage _keys . enableLabMode ) ;
2023-12-02 19:04:51 +01:00
power _user . enableLabMode = value === null ? false : value == 'true' ;
$ ( 'body' ) . toggleClass ( 'enableLabMode' , power _user . enableLabMode ) ;
$ ( '#enableLabMode' ) . prop ( 'checked' , power _user . enableLabMode ) ;
2023-11-10 08:17:38 +01:00
if ( power _user . enableLabMode ) {
//save all original slider values into an array
2023-12-02 19:04:51 +01:00
$ ( '#advanced-ai-config-block input' ) . each ( function ( ) {
2023-12-02 20:11:06 +01:00
let id = $ ( this ) . attr ( 'id' ) ;
let min = $ ( this ) . attr ( 'min' ) ;
let max = $ ( this ) . attr ( 'max' ) ;
let step = $ ( this ) . attr ( 'step' ) ;
2023-11-10 08:17:38 +01:00
originalSliderValues . push ( { id , min , max , step } ) ;
2023-12-02 20:11:06 +01:00
} ) ;
2023-11-10 08:17:38 +01:00
//console.log(originalSliderValues)
//remove limits on all inputs and hide sliders
2023-12-02 19:04:51 +01:00
$ ( '#advanced-ai-config-block input' )
2023-11-10 08:17:38 +01:00
. attr ( 'min' , '-99999' )
. attr ( 'max' , '99999' )
2023-12-02 20:11:06 +01:00
. attr ( 'step' , '0.001' ) ;
$ ( '#labModeWarning' ) . removeClass ( 'displayNone' ) ;
2023-11-10 08:17:38 +01:00
//$("#advanced-ai-config-block input[type='range']").hide()
} else {
//re apply the original sliders values to each input
originalSliderValues . forEach ( function ( slider ) {
2023-12-02 19:04:51 +01:00
$ ( '#' + slider . id )
2023-11-10 08:17:38 +01:00
. attr ( 'min' , slider . min )
. attr ( 'max' , slider . max )
. attr ( 'step' , slider . step )
2023-12-02 20:11:06 +01:00
. trigger ( 'input' ) ;
2023-11-10 08:17:38 +01:00
} ) ;
2023-12-02 20:11:06 +01:00
$ ( '#advanced-ai-config-block input[type=\'range\']' ) . show ( ) ;
$ ( '#labModeWarning' ) . addClass ( 'displayNone' ) ;
2023-11-10 08:17:38 +01:00
}
}
2023-11-04 21:47:53 +01:00
async function switchZenSliders ( ) {
2023-12-02 20:11:06 +01:00
await delay ( 100 ) ;
2023-11-04 21:47:53 +01:00
const value = localStorage . getItem ( storage _keys . enableZenSliders ) ;
2023-12-02 19:04:51 +01:00
power _user . enableZenSliders = value === null ? false : value == 'true' ;
$ ( 'body' ) . toggleClass ( 'enableZenSliders' , power _user . enableZenSliders ) ;
$ ( '#enableZenSliders' ) . prop ( 'checked' , power _user . enableZenSliders ) ;
2023-11-04 21:47:53 +01:00
if ( power _user . enableZenSliders ) {
2023-12-02 20:11:06 +01:00
$ ( '#clickSlidersTips' ) . hide ( ) ;
2023-12-02 19:04:51 +01:00
$ ( '#pro-settings-block input[type=\'number\']' ) . hide ( ) ;
2023-11-09 10:31:44 +01:00
//hide number inputs that are not 'seed' inputs
2023-11-10 20:56:25 +01:00
$ ( ` #textgenerationwebui_api-settings :input[type='number']:not([id^='seed']),
2023-12-02 20:11:06 +01:00
# kobold _api - settings : input [ type = 'number' ] : not ( [ id ^= 'seed' ] ) ` ).hide();
2023-11-09 10:31:44 +01:00
//hide original sliders
2023-11-05 22:42:13 +01:00
$ ( ` #textgenerationwebui_api-settings input[type='range'],
2023-11-09 10:31:44 +01:00
# kobold _api - settings input [ type = 'range' ] ,
2023-11-29 03:37:18 +01:00
# pro - settings - block input [ type = 'range' ] : not ( # max _context ) ` ) //exclude max context because its creation is handled by switchMaxContext()
2023-11-05 22:42:13 +01:00
. hide ( )
. each ( function ( ) {
2023-11-09 10:31:44 +01:00
//make a zen slider for each original slider
2023-12-02 20:11:06 +01:00
CreateZenSliders ( $ ( this ) ) ;
} ) ;
2023-11-15 10:58:47 +01:00
//this is for when zensliders is toggled after pageload
2023-12-02 20:11:06 +01:00
switchMaxContextSize ( ) ;
2023-11-04 21:47:53 +01:00
} else {
2023-12-02 20:11:06 +01:00
$ ( '#clickSlidersTips' ) . show ( ) ;
2023-11-04 21:47:53 +01:00
revertOriginalSliders ( ) ;
}
2023-11-09 10:31:44 +01:00
function revertOriginalSliders ( ) {
2023-12-02 19:04:51 +01:00
$ ( '#pro-settings-block input[type=\'number\']' ) . show ( ) ;
2023-11-09 10:31:44 +01:00
$ ( ` #textgenerationwebui_api-settings input[type='number'],
# kobold _api - settings input [ type = 'number' ] ` ).show();
$ ( ` #textgenerationwebui_api-settings input[type='range'],
# kobold _api - settings input [ type = 'range' ] ,
# pro - settings - block input [ type = 'range' ] ` ).each(function () {
$ ( this ) . show ( ) ;
} ) ;
$ ( 'div[id$="_zenslider"]' ) . remove ( ) ;
}
2023-11-15 10:58:47 +01:00
}
async function CreateZenSliders ( elmnt ) {
var originalSlider = elmnt ;
2023-12-02 20:11:06 +01:00
var sliderID = originalSlider . attr ( 'id' ) ;
var sliderMin = Number ( originalSlider . attr ( 'min' ) ) ;
var sliderMax = Number ( originalSlider . attr ( 'max' ) ) ;
2023-11-15 10:58:47 +01:00
var sliderValue = originalSlider . val ( ) ;
2023-12-02 20:11:06 +01:00
var sliderRange = sliderMax - sliderMin ;
var numSteps = 10 ;
var decimals = 2 ;
var offVal , allVal ;
var stepScale ;
var steps ;
2023-11-15 10:58:47 +01:00
if ( sliderID == 'amount_gen' ) {
2023-12-02 20:11:06 +01:00
decimals = 0 ;
2023-12-02 16:57:53 +01:00
steps = [ 16 , 50 , 100 , 150 , 200 , 256 , 300 , 400 , 512 , 1024 ] ;
2023-12-02 20:11:06 +01:00
sliderMin = 0 ;
sliderMax = steps . length - 1 ;
2023-11-15 10:58:47 +01:00
stepScale = 1 ;
2023-12-02 20:11:06 +01:00
numSteps = 10 ;
sliderValue = steps . indexOf ( Number ( sliderValue ) ) ;
if ( sliderValue === - 1 ) { sliderValue = 4 ; } // default to '200' if origSlider has value we can't use
2023-11-15 10:58:47 +01:00
}
2023-11-28 19:35:02 +01:00
if ( sliderID == 'rep_pen_range_textgenerationwebui' ) {
if ( power _user . max _context _unlocked ) {
2023-12-02 16:57:53 +01:00
steps = [ 0 , 256 , 512 , 768 , 1024 , 2048 , 4096 , 8192 , 16355 , 24576 , 32768 , 49152 , 65536 , - 1 ] ;
2023-12-02 20:11:06 +01:00
numSteps = 13 ;
allVal = 13 ;
2023-11-28 19:35:02 +01:00
} else {
2023-12-02 16:57:53 +01:00
steps = [ 0 , 256 , 512 , 768 , 1024 , 2048 , 4096 , 8192 , - 1 ] ;
2023-12-02 20:11:06 +01:00
numSteps = 8 ;
allVal = 8 ;
2023-11-28 19:35:02 +01:00
}
2023-12-02 20:11:06 +01:00
decimals = 0 ;
offVal = 0 ;
sliderMin = 0 ;
sliderMax = steps . length - 1 ;
2023-11-28 19:35:02 +01:00
stepScale = 1 ;
2023-12-02 20:11:06 +01:00
sliderValue = steps . indexOf ( Number ( sliderValue ) ) ;
if ( sliderValue === - 1 ) { sliderValue = allVal ; } // default to allValue if origSlider has value we can't use
2023-11-28 19:35:02 +01:00
}
2023-11-15 10:58:47 +01:00
//customize decimals
if ( sliderID == 'max_context' ||
sliderID == 'mirostat_mode_textgenerationwebui' ||
sliderID == 'mirostat_tau_textgenerationwebui' ||
sliderID == 'top_k_textgenerationwebui' ||
sliderID == 'num_beams_textgenerationwebui' ||
sliderID == 'no_repeat_ngram_size_textgenerationwebui' ||
sliderID == 'min_length_textgenerationwebui' ||
sliderID == 'top_k' ||
sliderID == 'mirostat_mode_kobold' ||
sliderID == 'rep_pen_range' ) {
2023-12-02 20:11:06 +01:00
decimals = 0 ;
2023-11-15 10:58:47 +01:00
}
if ( sliderID == 'eta_cutoff_textgenerationwebui' ||
sliderID == 'epsilon_cutoff_textgenerationwebui' ) {
2023-12-02 20:11:06 +01:00
numSteps = 50 ;
decimals = 1 ;
2023-11-15 10:58:47 +01:00
}
//customize steps
if ( sliderID == 'mirostat_mode_textgenerationwebui' ||
sliderID == 'mirostat_mode_kobold' ) {
2023-12-02 20:11:06 +01:00
numSteps = 2 ;
2023-11-15 10:58:47 +01:00
}
if ( sliderID == 'encoder_rep_pen_textgenerationwebui' ) {
2023-12-02 20:11:06 +01:00
numSteps = 14 ;
2023-11-15 10:58:47 +01:00
}
if ( sliderID == 'max_context' ) {
2023-12-02 20:11:06 +01:00
numSteps = 15 ;
2023-11-15 10:58:47 +01:00
}
if ( sliderID == 'mirostat_tau_textgenerationwebui' ||
sliderID == 'top_k_textgenerationwebui' ||
sliderID == 'num_beams_textgenerationwebui' ||
sliderID == 'no_repeat_ngram_size_textgenerationwebui' ||
sliderID == 'epsilon_cutoff_textgenerationwebui' ||
sliderID == 'tfs_textgenerationwebui' ||
sliderID == 'min_p_textgenerationwebui' ||
sliderID == 'temp_textgenerationwebui' ||
sliderID == 'temp' ) {
2023-12-02 20:11:06 +01:00
numSteps = 20 ;
2023-11-15 10:58:47 +01:00
}
if ( sliderID == 'mirostat_eta_textgenerationwebui' ||
sliderID == 'penalty_alpha_textgenerationwebui' ||
sliderID == 'length_penalty_textgenerationwebui' ) {
2023-12-02 20:11:06 +01:00
numSteps = 50 ;
2023-11-15 10:58:47 +01:00
}
//customize off values
if ( sliderID == 'presence_pen_textgenerationwebui' ||
sliderID == 'freq_pen_textgenerationwebui' ||
sliderID == 'mirostat_mode_textgenerationwebui' ||
sliderID == 'mirostat_mode_kobold' ||
sliderID == 'mirostat_tau_textgenerationwebui' ||
sliderID == 'mirostat_tau_kobold' ||
sliderID == 'mirostat_eta_textgenerationwebui' ||
sliderID == 'mirostat_eta_kobold' ||
sliderID == 'min_p_textgenerationwebui' ||
sliderID == 'min_p' ||
sliderID == 'no_repeat_ngram_size_textgenerationwebui' ||
sliderID == 'penalty_alpha_textgenerationwebui' ||
sliderID == 'length_penalty_textgenerationwebui' ||
sliderID == 'epsilon_cutoff_textgenerationwebui' ||
sliderID == 'rep_pen_range' ||
sliderID == 'eta_cutoff_textgenerationwebui' ||
sliderID == 'top_a_textgenerationwebui' ||
sliderID == 'top_a' ||
sliderID == 'top_k_textgenerationwebui' ||
sliderID == 'top_k' ||
sliderID == 'rep_pen_slope' ||
sliderID == 'min_length_textgenerationwebui' ) {
2023-12-02 20:11:06 +01:00
offVal = 0 ;
2023-11-15 10:58:47 +01:00
}
if ( sliderID == 'rep_pen_textgenerationwebui' ||
sliderID == 'rep_pen' ||
sliderID == 'tfs_textgenerationwebui' ||
sliderID == 'tfs' ||
sliderID == 'top_p_textgenerationwebui' ||
sliderID == 'top_p' ||
sliderID == 'typical_p_textgenerationwebui' ||
sliderID == 'typical_p' ||
sliderID == 'encoder_rep_pen_textgenerationwebui' ||
sliderID == 'temp_textgenerationwebui' ||
sliderID == 'temp' ||
sliderID == 'guidance_scale_textgenerationwebui' ||
sliderID == 'guidance_scale' ) {
2023-12-02 20:11:06 +01:00
offVal = 1 ;
2023-11-15 10:58:47 +01:00
}
if ( sliderID == 'guidance_scale_textgenerationwebui' ) {
2023-12-02 20:11:06 +01:00
numSteps = 78 ;
2023-11-15 10:58:47 +01:00
}
//customize amt gen steps
2023-11-28 19:35:02 +01:00
if ( sliderID !== 'amount_gen' && sliderID !== 'rep_pen_range_textgenerationwebui' ) {
2023-12-02 20:11:06 +01:00
stepScale = sliderRange / numSteps ;
2023-11-15 10:58:47 +01:00
}
2023-12-02 19:04:51 +01:00
var newSlider = $ ( '<div>' )
2023-11-15 10:58:47 +01:00
. attr ( 'id' , ` ${ sliderID } _zenslider ` )
2023-12-02 19:04:51 +01:00
. css ( 'width' , '100%' )
2023-11-15 10:58:47 +01:00
. insertBefore ( originalSlider ) ;
newSlider . slider ( {
value : sliderValue ,
step : stepScale ,
min : sliderMin ,
max : sliderMax ,
2023-12-03 13:59:21 +01:00
create : async function ( ) {
2023-12-04 18:32:41 +01:00
await delay ( 100 ) ;
2023-12-02 19:04:51 +01:00
var handle = $ ( this ) . find ( '.ui-slider-handle' ) ;
2023-12-02 16:57:53 +01:00
var handleText , stepNumber , leftMargin ;
2023-11-28 19:35:02 +01:00
//handling creation of amt_gen
2023-11-12 15:57:51 +01:00
if ( newSlider . attr ( 'id' ) == 'amount_gen_zenslider' ) {
2023-12-02 20:11:06 +01:00
handleText = steps [ sliderValue ] ;
stepNumber = sliderValue ;
leftMargin = ( ( stepNumber ) / numSteps ) * 50 * - 1 ;
2023-11-15 10:58:47 +01:00
handle . text ( handleText )
2023-12-02 20:11:06 +01:00
. css ( 'margin-left' , ` ${ leftMargin } px ` ) ;
2023-11-28 19:35:02 +01:00
//console.log(`${newSlider.attr('id')} initial value:${handleText}, stepNum:${stepNumber}, numSteps:${numSteps}, left-margin:${leftMargin}`)
2023-12-03 13:59:21 +01:00
}
//handling creation of rep_pen_range for ooba
else if ( newSlider . attr ( 'id' ) == 'rep_pen_range_textgenerationwebui_zenslider' ) {
2023-11-28 19:35:02 +01:00
if ( $ ( '#rep_pen_range_textgenerationwebui_zensliders' ) . length !== 0 ) {
2023-12-02 20:11:06 +01:00
$ ( '#rep_pen_range_textgenerationwebui_zensliders' ) . remove ( ) ;
2023-11-28 19:35:02 +01:00
}
2023-12-02 20:11:06 +01:00
handleText = steps [ sliderValue ] ;
stepNumber = sliderValue ;
leftMargin = ( ( stepNumber ) / numSteps ) * 50 * - 1 ;
2023-11-29 03:37:18 +01:00
if ( sliderValue === offVal ) {
2023-12-02 20:11:06 +01:00
handleText = 'Off' ;
2023-11-29 03:37:18 +01:00
handle . css ( 'color' , 'rgba(128,128,128,0.5' ) ;
}
2023-12-02 20:11:06 +01:00
else if ( sliderValue === allVal ) { handleText = 'All' ; }
2023-11-29 03:37:18 +01:00
else { handle . css ( 'color' , '' ) ; }
2023-11-28 19:35:02 +01:00
handle . text ( handleText )
2023-12-02 20:11:06 +01:00
. css ( 'margin-left' , ` ${ leftMargin } px ` ) ;
2023-11-29 03:37:18 +01:00
//console.log(sliderValue, handleText, offVal, allVal)
//console.log(`${newSlider.attr('id')} sliderValue = ${sliderValue}, handleText:${handleText}, stepNum:${stepNumber}, numSteps:${numSteps}, left-margin:${leftMargin}`)
originalSlider . val ( steps [ sliderValue ] ) ;
2023-12-03 13:59:21 +01:00
}
//create all other sliders
else {
2023-12-02 20:11:06 +01:00
var numVal = Number ( sliderValue ) . toFixed ( decimals ) ;
offVal = Number ( offVal ) . toFixed ( decimals ) ;
2023-11-15 10:58:47 +01:00
if ( numVal === offVal ) {
handle . text ( 'Off' ) . css ( 'color' , 'rgba(128,128,128,0.5' ) ;
} else {
handle . text ( numVal ) . css ( 'color' , '' ) ;
}
2023-12-02 20:11:06 +01:00
stepNumber = ( ( sliderValue - sliderMin ) / stepScale ) ;
leftMargin = ( stepNumber / numSteps ) * 50 * - 1 ;
2023-12-03 13:59:21 +01:00
originalSlider . val ( numVal )
2023-12-04 18:32:41 +01:00
. data ( 'newSlider' , newSlider ) ;
2023-12-03 13:59:21 +01:00
//console.log(`${newSlider.attr('id')} sliderValue = ${sliderValue}, handleText:${handleText, numVal}, stepNum:${stepNumber}, numSteps:${numSteps}, left-margin:${leftMargin}`)
2023-12-02 20:11:06 +01:00
var isManualInput = false ;
var valueBeforeManualInput ;
2023-11-15 10:58:47 +01:00
handle . css ( 'margin-left' , ` ${ leftMargin } px ` )
2023-11-29 03:37:18 +01:00
2023-11-15 10:58:47 +01:00
. attr ( 'contenteditable' , 'true' )
2023-12-03 13:59:21 +01:00
//these sliders need listeners for manual inputs
2023-11-15 10:58:47 +01:00
. on ( 'click' , function ( ) {
//this just selects all the text in the handle so user can overwrite easily
//needed because JQUery UI uses left/right arrow keys as well as home/end to move the slider..
2023-12-02 20:11:06 +01:00
valueBeforeManualInput = newSlider . val ( ) ;
console . log ( valueBeforeManualInput ) ;
2023-11-15 10:58:47 +01:00
let handleElement = handle . get ( 0 ) ;
let range = document . createRange ( ) ;
range . selectNodeContents ( handleElement ) ;
let selection = window . getSelection ( ) ;
selection . removeAllRanges ( ) ;
selection . addRange ( range ) ;
} )
2023-12-03 13:59:21 +01:00
. on ( 'keyup' , function ( e ) {
valueBeforeManualInput = numVal ;
//console.log(valueBeforeManualInput, numVal, handleText);
2023-12-02 20:11:06 +01:00
isManualInput = true ;
2023-12-03 13:59:21 +01:00
//allow enter to trigger slider update
if ( e . key === 'Enter' ) {
2023-12-04 18:32:41 +01:00
e . preventDefault ;
handle . trigger ( 'blur' ) ;
2023-12-03 13:59:21 +01:00
}
2023-11-15 10:58:47 +01:00
} )
//trigger slider changes when user clicks away
. on ( 'mouseup blur' , function ( ) {
2023-12-02 20:11:06 +01:00
let manualInput = parseFloat ( handle . text ( ) ) . toFixed ( decimals ) ;
2023-11-15 10:58:47 +01:00
if ( isManualInput ) {
//disallow manual inputs outside acceptable range
if ( manualInput >= sliderMin && manualInput <= sliderMax ) {
//if value is ok, assign to slider and update handle text and position
2023-12-02 20:11:06 +01:00
newSlider . val ( manualInput ) ;
2023-11-15 10:58:47 +01:00
handleSlideEvent . call ( newSlider , null , { value : parseFloat ( manualInput ) } , 'manual' ) ;
2023-12-02 20:11:06 +01:00
valueBeforeManualInput = manualInput ;
2023-11-15 10:58:47 +01:00
} else {
//if value not ok, warn and reset to last known valid value
2023-12-02 20:11:06 +01:00
toastr . warning ( ` Invalid value. Must be between ${ sliderMin } and ${ sliderMax } ` ) ;
console . log ( valueBeforeManualInput ) ;
newSlider . val ( valueBeforeManualInput ) ;
handle . text ( valueBeforeManualInput ) ;
2023-12-03 13:59:21 +01:00
handleSlideEvent . call ( newSlider , null , { value : parseFloat ( valueBeforeManualInput ) } , 'manual' ) ;
2023-11-15 10:58:47 +01:00
}
}
2023-12-02 20:11:06 +01:00
isManualInput = false ;
} ) ;
2023-11-12 15:57:51 +01:00
}
2023-12-03 13:59:21 +01:00
//zenSlider creation done, hide the original
originalSlider . hide ( ) ;
2023-11-15 10:58:47 +01:00
} ,
2023-12-02 21:06:57 +01:00
slide : handleSlideEvent ,
2023-11-15 10:58:47 +01:00
} ) ;
2023-11-29 03:37:18 +01:00
2023-11-15 10:58:47 +01:00
function handleSlideEvent ( event , ui , type ) {
2023-12-02 19:04:51 +01:00
var handle = $ ( this ) . find ( '.ui-slider-handle' ) ;
2023-11-15 10:58:47 +01:00
var numVal = Number ( ui . value ) . toFixed ( decimals ) ;
offVal = Number ( offVal ) . toFixed ( decimals ) ;
2023-11-29 03:37:18 +01:00
allVal = Number ( allVal ) . toFixed ( decimals ) ;
2023-12-02 20:11:06 +01:00
console . log ( numVal , sliderMin , sliderMax , numVal > sliderMax , numVal < sliderMin ) ;
2023-12-03 13:59:21 +01:00
if ( numVal > sliderMax ) { numVal = sliderMax ; }
if ( numVal < sliderMin ) { numVal = sliderMin ; }
2023-11-15 10:58:47 +01:00
var stepNumber = ( ( ui . value - sliderMin ) / stepScale ) . toFixed ( 0 ) ;
var handleText = ( ui . value ) ;
var leftMargin = ( stepNumber / numSteps ) * 50 * - 1 ;
2023-12-02 20:11:06 +01:00
var perStepPercent = 1 / numSteps ; //how far in % each step should be on the slider
var leftPos = newSlider . width ( ) * ( stepNumber * perStepPercent ) ; //how big of a left margin to give the slider for manual inputs
2023-11-29 03:37:18 +01:00
/ * c o n s o l e . l o g ( `
numVal : $ { numVal } ,
sliderMax : $ { sliderMax }
sliderMin : $ { sliderMin }
sliderValRange : $ { sliderValRange }
stepScale : $ { stepScale }
Step : $ { stepNumber } of $ { numSteps }
offVal : $ { offVal }
allVal = $ { allVal }
initial value : $ { handleText }
left - margin : $ { leftMargin }
width : $ { newSlider . width ( ) }
percent of max : $ { percentOfMax }
left : $ { leftPos } ` ) */
2023-11-15 10:58:47 +01:00
//special handling for response length slider, pulls text aliases for step values from an array
if ( newSlider . attr ( 'id' ) == 'amount_gen_zenslider' ) {
2023-12-02 20:11:06 +01:00
handleText = steps [ stepNumber ] ;
2023-11-15 10:58:47 +01:00
handle . text ( handleText ) ;
2023-12-02 20:11:06 +01:00
newSlider . val ( stepNumber ) ;
2023-12-05 13:12:06 +01:00
numVal = steps [ stepNumber ] ;
2023-11-15 10:58:47 +01:00
}
2023-11-29 03:37:18 +01:00
//special handling for TextCompletion rep pen range slider, pulls text aliases for step values from an array
2023-11-28 19:35:02 +01:00
else if ( newSlider . attr ( 'id' ) == 'rep_pen_range_textgenerationwebui_zenslider' ) {
2023-12-02 20:11:06 +01:00
handleText = steps [ stepNumber ] ;
2023-11-28 19:35:02 +01:00
handle . text ( handleText ) ;
2023-12-02 20:11:06 +01:00
newSlider . val ( stepNumber ) ;
2023-11-28 19:35:02 +01:00
if ( numVal === offVal ) { handle . text ( 'Off' ) . css ( 'color' , 'rgba(128,128,128,0.5' ) ; }
2023-12-02 20:11:06 +01:00
else if ( numVal === allVal ) { handle . text ( 'All' ) ; }
2023-11-28 19:35:02 +01:00
else { handle . css ( 'color' , '' ) ; }
2023-12-07 03:52:10 +01:00
numVal = steps [ stepNumber ] ;
2023-11-28 19:35:02 +01:00
}
2023-11-15 10:58:47 +01:00
//everything else uses the flat slider value
2023-11-29 03:37:18 +01:00
//also note: the above sliders are not custom inputtable due to the array aliasing
2023-11-15 10:58:47 +01:00
else {
//show 'off' if disabled value is set
if ( numVal === offVal ) { handle . text ( 'Off' ) . css ( 'color' , 'rgba(128,128,128,0.5' ) ; }
else { handle . text ( ui . value . toFixed ( decimals ) ) . css ( 'color' , '' ) ; }
2023-12-02 20:11:06 +01:00
newSlider . val ( handleText ) ;
2023-11-15 10:58:47 +01:00
}
//for manually typed-in values we must adjust left position because JQUI doesn't do it for us
2023-12-02 20:11:06 +01:00
handle . css ( 'left' , leftPos ) ;
2023-11-15 10:58:47 +01:00
//adjust a negative left margin to avoid overflowing right side of slider body
handle . css ( 'margin-left' , ` ${ leftMargin } px ` ) ;
2023-12-03 13:59:21 +01:00
originalSlider . val ( numVal ) ;
2023-11-15 10:58:47 +01:00
originalSlider . trigger ( 'input' ) ;
originalSlider . trigger ( 'change' ) ;
}
2023-12-02 16:15:03 +01:00
}
2023-07-20 19:32:15 +02:00
function switchUiMode ( ) {
const fastUi = localStorage . getItem ( storage _keys . fast _ui _mode ) ;
2023-12-02 19:04:51 +01:00
power _user . fast _ui _mode = fastUi === null ? true : fastUi == 'true' ;
$ ( 'body' ) . toggleClass ( 'no-blur' , power _user . fast _ui _mode ) ;
$ ( '#fast_ui_mode' ) . prop ( 'checked' , power _user . fast _ui _mode ) ;
2023-09-22 15:16:24 +02:00
if ( power _user . fast _ui _mode ) {
2023-12-02 20:11:06 +01:00
$ ( '#blur-strength-block' ) . css ( 'opacity' , '0.2' ) ;
$ ( '#blur_strength' ) . prop ( 'disabled' , true ) ;
2023-09-23 04:56:24 +02:00
} else {
2023-12-02 20:11:06 +01:00
$ ( '#blur-strength-block' ) . css ( 'opacity' , '1' ) ;
$ ( '#blur_strength' ) . prop ( 'disabled' , false ) ;
2023-09-23 04:56:24 +02:00
}
2023-07-20 19:32:15 +02:00
}
function toggleWaifu ( ) {
2023-12-02 19:04:51 +01:00
$ ( '#waifuMode' ) . trigger ( 'click' ) ;
2023-07-20 19:32:15 +02:00
}
function switchWaifuMode ( ) {
2023-12-02 19:04:51 +01:00
$ ( 'body' ) . toggleClass ( 'waifuMode' , power _user . waifuMode ) ;
$ ( '#waifuMode' ) . prop ( 'checked' , power _user . waifuMode ) ;
2023-07-20 19:32:15 +02:00
scrollChatToBottom ( ) ;
}
function switchSpoilerMode ( ) {
if ( power _user . spoiler _free _mode ) {
2023-12-02 19:04:51 +01:00
$ ( '#description_div' ) . hide ( ) ;
$ ( '#description_textarea' ) . hide ( ) ;
$ ( '#firstmessage_textarea' ) . hide ( ) ;
$ ( '#first_message_div' ) . hide ( ) ;
$ ( '#spoiler_free_desc' ) . show ( ) ;
2023-07-20 19:32:15 +02:00
}
else {
2023-12-02 19:04:51 +01:00
$ ( '#description_div' ) . show ( ) ;
$ ( '#description_textarea' ) . show ( ) ;
$ ( '#firstmessage_textarea' ) . show ( ) ;
$ ( '#first_message_div' ) . show ( ) ;
$ ( '#spoiler_free_desc' ) . hide ( ) ;
2023-07-20 19:32:15 +02:00
}
}
function peekSpoilerMode ( ) {
2023-12-02 19:04:51 +01:00
$ ( '#description_div' ) . toggle ( ) ;
$ ( '#description_textarea' ) . toggle ( ) ;
$ ( '#firstmessage_textarea' ) . toggle ( ) ;
$ ( '#first_message_div' ) . toggle ( ) ;
2023-07-20 19:32:15 +02:00
}
function switchMovingUI ( ) {
const movingUI = localStorage . getItem ( storage _keys . movingUI ) ;
2023-12-02 19:04:51 +01:00
power _user . movingUI = movingUI === null ? false : movingUI == 'true' ;
$ ( 'body' ) . toggleClass ( 'movingUI' , power _user . movingUI ) ;
2023-07-20 19:32:15 +02:00
if ( power _user . movingUI === true ) {
2023-12-02 20:11:06 +01:00
initMovingUI ( ) ;
2023-07-20 19:32:15 +02:00
if ( power _user . movingUIState ) {
loadMovingUIState ( ) ;
}
2023-12-02 16:15:03 +01:00
}
2023-07-20 19:32:15 +02:00
}
function noShadows ( ) {
const noShadows = localStorage . getItem ( storage _keys . noShadows ) ;
2023-12-02 19:04:51 +01:00
power _user . noShadows = noShadows === null ? false : noShadows == 'true' ;
$ ( 'body' ) . toggleClass ( 'noShadows' , power _user . noShadows ) ;
$ ( '#noShadowsmode' ) . prop ( 'checked' , power _user . noShadows ) ;
2023-09-22 15:16:24 +02:00
if ( power _user . noShadows ) {
2023-12-02 20:11:06 +01:00
$ ( '#shadow-width-block' ) . css ( 'opacity' , '0.2' ) ;
$ ( '#shadow_width' ) . prop ( 'disabled' , true ) ;
2023-09-23 04:56:24 +02:00
} else {
2023-12-02 20:11:06 +01:00
$ ( '#shadow-width-block' ) . css ( 'opacity' , '1' ) ;
$ ( '#shadow_width' ) . prop ( 'disabled' , false ) ;
2023-09-23 04:56:24 +02:00
}
2023-07-20 19:32:15 +02:00
scrollChatToBottom ( ) ;
}
function applyAvatarStyle ( ) {
power _user . avatar _style = Number ( localStorage . getItem ( storage _keys . avatar _style ) ? ? avatar _styles . ROUND ) ;
2023-12-02 19:04:51 +01:00
$ ( 'body' ) . toggleClass ( 'big-avatars' , power _user . avatar _style === avatar _styles . RECTANGULAR ) ;
$ ( 'body' ) . toggleClass ( 'square-avatars' , power _user . avatar _style === avatar _styles . SQUARE ) ;
$ ( '#avatar_style' ) . val ( power _user . avatar _style ) . prop ( 'selected' , true ) ;
2023-09-22 15:16:24 +02:00
//$(`input[name="avatar_style"][value="${power_user.avatar_style}"]`).prop("checked", true);
2023-07-20 19:32:15 +02:00
}
function applyChatDisplay ( ) {
if ( ! power _user . chat _display === ( null || undefined ) ) {
2023-12-02 20:11:06 +01:00
console . debug ( 'applyChatDisplay: saw no chat display type defined' ) ;
return ;
2023-07-20 19:32:15 +02:00
}
2023-12-02 20:11:06 +01:00
console . debug ( ` poweruser.chat_display ${ power _user . chat _display } ` ) ;
2023-12-02 19:04:51 +01:00
$ ( '#chat_display' ) . val ( power _user . chat _display ) . prop ( 'selected' , true ) ;
2023-07-20 19:32:15 +02:00
switch ( power _user . chat _display ) {
case 0 : {
2023-12-02 20:11:06 +01:00
console . log ( 'applying default chat' ) ;
2023-12-02 19:04:51 +01:00
$ ( 'body' ) . removeClass ( 'bubblechat' ) ;
$ ( 'body' ) . removeClass ( 'documentstyle' ) ;
2023-12-02 20:11:06 +01:00
break ;
2023-07-20 19:32:15 +02:00
}
case 1 : {
2023-12-02 20:11:06 +01:00
console . log ( 'applying bubblechat' ) ;
2023-12-02 19:04:51 +01:00
$ ( 'body' ) . addClass ( 'bubblechat' ) ;
$ ( 'body' ) . removeClass ( 'documentstyle' ) ;
2023-12-02 20:11:06 +01:00
break ;
2023-07-20 19:32:15 +02:00
}
case 2 : {
2023-12-02 20:11:06 +01:00
console . log ( 'applying document style' ) ;
2023-12-02 19:04:51 +01:00
$ ( 'body' ) . removeClass ( 'bubblechat' ) ;
$ ( 'body' ) . addClass ( 'documentstyle' ) ;
2023-12-02 20:11:06 +01:00
break ;
2023-07-20 19:32:15 +02:00
}
}
}
2023-09-22 15:16:24 +02:00
function applyChatWidth ( type ) {
2023-07-20 19:32:15 +02:00
power _user . chat _width = Number ( localStorage . getItem ( storage _keys . chat _width ) ? ? 50 ) ;
2023-09-22 15:16:24 +02:00
if ( type === 'forced' ) {
let r = document . documentElement ;
r . style . setProperty ( '--sheldWidth' , ` ${ power _user . chat _width } vw ` ) ;
$ ( '#chat_width_slider' ) . val ( power _user . chat _width ) ;
//document.documentElement.style.setProperty('--sheldWidth', power_user.chat_width);
} else {
//this is to prevent the slider from updating page in real time
2023-12-02 19:04:51 +01:00
$ ( '#chat_width_slider' ) . off ( 'mouseup touchend' ) . on ( 'mouseup touchend' , async ( ) => {
2023-09-28 20:33:03 +02:00
// This is a hack for Firefox to let it render before applying the block width.
// Otherwise it takes the incorrect slider position with the new value AFTER the resizing.
2023-09-28 20:30:41 +02:00
await delay ( 1 ) ;
2023-09-22 15:16:24 +02:00
document . documentElement . style . setProperty ( '--sheldWidth' , ` ${ power _user . chat _width } vw ` ) ;
2023-09-28 20:30:41 +02:00
await delay ( 1 ) ;
2023-12-02 20:11:06 +01:00
} ) ;
2023-09-22 15:16:24 +02:00
}
2023-09-22 15:56:01 +02:00
2023-10-26 06:20:47 +02:00
$ ( '#chat_width_slider_counter' ) . val ( power _user . chat _width ) ;
2023-07-20 19:32:15 +02:00
}
async function applyThemeColor ( type ) {
if ( type === 'main' ) {
document . documentElement . style . setProperty ( '--SmartThemeBodyColor' , power _user . main _text _color ) ;
2023-11-21 02:26:43 +01:00
const color = power _user . main _text _color . split ( '(' ) [ 1 ] . split ( ')' ) [ 0 ] . split ( ',' ) ;
document . documentElement . style . setProperty ( '--SmartThemeCheckboxBgColorR' , color [ 0 ] ) ;
document . documentElement . style . setProperty ( '--SmartThemeCheckboxBgColorG' , color [ 1 ] ) ;
document . documentElement . style . setProperty ( '--SmartThemeCheckboxBgColorB' , color [ 2 ] ) ;
document . documentElement . style . setProperty ( '--SmartThemeCheckboxBgColorA' , color [ 3 ] ) ;
2023-07-20 19:32:15 +02:00
}
if ( type === 'italics' ) {
document . documentElement . style . setProperty ( '--SmartThemeEmColor' , power _user . italics _text _color ) ;
}
if ( type === 'quote' ) {
document . documentElement . style . setProperty ( '--SmartThemeQuoteColor' , power _user . quote _text _color ) ;
}
/ * i f ( t y p e = = = ' f a s t U I B G ' ) {
document . documentElement . style . setProperty ( '--SmartThemeFastUIBGColor' , power _user . fastui _bg _color ) ;
} * /
if ( type === 'blurTint' ) {
document . documentElement . style . setProperty ( '--SmartThemeBlurTintColor' , power _user . blur _tint _color ) ;
}
2023-09-22 09:54:51 +02:00
if ( type === 'chatTint' ) {
document . documentElement . style . setProperty ( '--SmartThemeChatTintColor' , power _user . chat _tint _color ) ;
}
2023-07-20 19:32:15 +02:00
if ( type === 'userMesBlurTint' ) {
document . documentElement . style . setProperty ( '--SmartThemeUserMesBlurTintColor' , power _user . user _mes _blur _tint _color ) ;
}
if ( type === 'botMesBlurTint' ) {
document . documentElement . style . setProperty ( '--SmartThemeBotMesBlurTintColor' , power _user . bot _mes _blur _tint _color ) ;
}
if ( type === 'shadow' ) {
document . documentElement . style . setProperty ( '--SmartThemeShadowColor' , power _user . shadow _color ) ;
}
2023-09-16 08:42:26 +02:00
if ( type === 'border' ) {
document . documentElement . style . setProperty ( '--SmartThemeBorderColor' , power _user . border _color ) ;
}
2023-07-20 19:32:15 +02:00
}
2023-09-22 20:49:30 +02:00
async function applyCustomCSS ( ) {
2023-12-02 19:04:51 +01:00
power _user . custom _css = String ( localStorage . getItem ( storage _keys . custom _css ) ? ? '' ) ;
2023-09-22 20:13:58 +02:00
2023-12-02 19:04:51 +01:00
if ( power _user . custom _css . includes ( '@import' ) ) {
2023-12-02 20:11:06 +01:00
var removeImport = /@import[^;]+;/gm ;
2023-12-02 19:04:51 +01:00
power _user . custom _css = power _user . custom _css . replace ( removeImport , '' ) ;
2023-09-22 20:13:58 +02:00
localStorage . setItem ( storage _keys . custom _css , power _user . custom _css ) ;
2023-12-02 20:11:06 +01:00
toastr . warning ( '@import not allowed in Custom CSS. @import lines removed.' ) ;
2023-09-22 20:13:58 +02:00
}
2023-12-02 19:04:51 +01:00
$ ( '#customCSS' ) . val ( power _user . custom _css ) ;
var styleId = 'custom-style' ;
2023-09-22 20:13:58 +02:00
var style = document . getElementById ( styleId ) ;
2023-09-22 20:49:30 +02:00
if ( ! style ) {
2023-12-02 19:04:51 +01:00
style = document . createElement ( 'style' ) ;
style . setAttribute ( 'type' , 'text/css' ) ;
style . setAttribute ( 'id' , styleId ) ;
2023-09-22 20:13:58 +02:00
document . head . appendChild ( style ) ;
}
style . innerHTML = power _user . custom _css ;
}
2023-07-20 19:32:15 +02:00
async function applyBlurStrength ( ) {
power _user . blur _strength = Number ( localStorage . getItem ( storage _keys . blur _strength ) ? ? 1 ) ;
document . documentElement . style . setProperty ( '--blurStrength' , power _user . blur _strength ) ;
2023-12-02 19:04:51 +01:00
$ ( '#blur_strength_counter' ) . val ( power _user . blur _strength ) ;
$ ( '#blur_strength' ) . val ( power _user . blur _strength ) ;
2023-07-20 19:32:15 +02:00
2023-09-22 15:16:24 +02:00
2023-07-20 19:32:15 +02:00
}
async function applyShadowWidth ( ) {
power _user . shadow _width = Number ( localStorage . getItem ( storage _keys . shadow _width ) ? ? 2 ) ;
document . documentElement . style . setProperty ( '--shadowWidth' , power _user . shadow _width ) ;
2023-12-02 19:04:51 +01:00
$ ( '#shadow_width_counter' ) . val ( power _user . shadow _width ) ;
$ ( '#shadow_width' ) . val ( power _user . shadow _width ) ;
2023-07-20 19:32:15 +02:00
}
2023-08-25 00:06:52 +02:00
async function applyFontScale ( type ) {
2023-07-20 19:32:15 +02:00
power _user . font _scale = Number ( localStorage . getItem ( storage _keys . font _scale ) ? ? 1 ) ;
2023-08-25 00:06:52 +02:00
//this is to allow forced setting on page load, theme swap, etc
if ( type === 'forced' ) {
document . documentElement . style . setProperty ( '--fontScale' , power _user . font _scale ) ;
} else {
//this is to prevent the slider from updating page in real time
2023-12-02 19:04:51 +01:00
$ ( '#font_scale' ) . off ( 'mouseup touchend' ) . on ( 'mouseup touchend' , ( ) => {
2023-08-25 00:06:52 +02:00
document . documentElement . style . setProperty ( '--fontScale' , power _user . font _scale ) ;
2023-12-02 20:11:06 +01:00
} ) ;
2023-08-25 00:06:52 +02:00
}
2023-12-02 19:04:51 +01:00
$ ( '#font_scale_counter' ) . val ( power _user . font _scale ) ;
$ ( '#font_scale' ) . val ( power _user . font _scale ) ;
2023-07-20 19:32:15 +02:00
}
async function applyTheme ( name ) {
const theme = themes . find ( x => x . name == name ) ;
if ( ! theme ) {
return ;
}
const themeProperties = [
{ key : 'main_text_color' , selector : '#main-text-color-picker' , type : 'main' } ,
{ key : 'italics_text_color' , selector : '#italics-color-picker' , type : 'italics' } ,
{ key : 'quote_text_color' , selector : '#quote-color-picker' , type : 'quote' } ,
{ key : 'blur_tint_color' , selector : '#blur-tint-color-picker' , type : 'blurTint' } ,
2023-09-22 09:54:51 +02:00
{ key : 'chat_tint_color' , selector : '#chat-tint-color-picker' , type : 'chatTint' } ,
2023-07-20 19:32:15 +02:00
{ key : 'user_mes_blur_tint_color' , selector : '#user-mes-blur-tint-color-picker' , type : 'userMesBlurTint' } ,
{ key : 'bot_mes_blur_tint_color' , selector : '#bot-mes-blur-tint-color-picker' , type : 'botMesBlurTint' } ,
{ key : 'shadow_color' , selector : '#shadow-color-picker' , type : 'shadow' } ,
2023-09-16 08:42:26 +02:00
{ key : 'border_color' , selector : '#border-color-picker' , type : 'border' } ,
2023-07-20 19:32:15 +02:00
{
key : 'blur_strength' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . blur _strength , power _user . blur _strength ) ;
await applyBlurStrength ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
2023-09-22 20:13:58 +02:00
{
key : 'custom_css' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . custom _css , power _user . custom _css ) ;
await applyCustomCSS ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-09-22 20:13:58 +02:00
} ,
2023-07-20 19:32:15 +02:00
{
key : 'shadow_width' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . shadow _width , power _user . shadow _width ) ;
await applyShadowWidth ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'font_scale' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . font _scale , power _user . font _scale ) ;
2023-08-25 00:06:52 +02:00
await applyFontScale ( 'forced' ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'fast_ui_mode' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . fast _ui _mode , power _user . fast _ui _mode ) ;
switchUiMode ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'waifuMode' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . waifuMode , power _user . waifuMode ) ;
switchWaifuMode ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'chat_display' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . chat _display , power _user . chat _display ) ;
applyChatDisplay ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'avatar_style' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . avatar _style , power _user . avatar _style ) ;
applyAvatarStyle ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'noShadows' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . noShadows , power _user . noShadows ) ;
noShadows ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'chat_width' ,
action : async ( ) => {
2023-07-22 17:09:50 +02:00
// If chat width is not set, set it to 50
if ( ! power _user . chat _width ) {
power _user . chat _width = 50 ;
}
2023-08-31 16:10:01 +02:00
localStorage . setItem ( storage _keys . chat _width , String ( power _user . chat _width ) ) ;
2023-09-22 15:16:24 +02:00
applyChatWidth ( 'forced' ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'timer_enabled' ,
action : async ( ) => {
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . timer _enabled , Boolean ( power _user . timer _enabled ) ) ;
2023-07-20 19:32:15 +02:00
switchTimer ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
{
key : 'timestamps_enabled' ,
action : async ( ) => {
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . timestamps _enabled , Boolean ( power _user . timestamps _enabled ) ) ;
2023-07-20 19:32:15 +02:00
switchTimestamps ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
2023-08-14 00:43:16 +02:00
{
key : 'timestamp_model_icon' ,
action : async ( ) => {
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . timestamp _model _icon , Boolean ( power _user . timestamp _model _icon ) ) ;
2023-08-14 00:43:16 +02:00
switchIcons ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-08-14 00:43:16 +02:00
} ,
2023-08-31 16:10:01 +02:00
{
2023-09-22 15:16:24 +02:00
key : 'message_token_count_enabled' ,
2023-08-31 16:10:01 +02:00
action : async ( ) => {
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . message _token _count _enabled , Boolean ( power _user . message _token _count _enabled ) ) ;
2023-08-31 16:10:01 +02:00
switchTokenCount ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-08-31 16:10:01 +02:00
} ,
2023-07-20 19:32:15 +02:00
{
key : 'mesIDDisplay_enabled' ,
action : async ( ) => {
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . mesIDDisplay _enabled , Boolean ( power _user . mesIDDisplay _enabled ) ) ;
2023-07-20 19:32:15 +02:00
switchMesIDDisplay ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-07-20 19:32:15 +02:00
} ,
2023-09-14 14:23:51 +02:00
{
key : 'expand_message_actions' ,
action : async ( ) => {
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . expand _message _actions , Boolean ( power _user . expand _message _actions ) ) ;
2023-09-14 14:23:51 +02:00
switchMessageActions ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-09-14 14:23:51 +02:00
} ,
2023-11-04 21:47:53 +01:00
{
key : 'enableZenSliders' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . enableZenSliders , Boolean ( power _user . enableZenSliders ) ) ;
switchMessageActions ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-11-04 21:47:53 +01:00
} ,
2023-11-10 08:17:38 +01:00
{
key : 'enableLabMode' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . enableLabMode , Boolean ( power _user . enableLabMode ) ) ;
switchMessageActions ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-11-10 08:17:38 +01:00
} ,
2023-07-20 19:32:15 +02:00
{
key : 'hotswap_enabled' ,
action : async ( ) => {
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . hotswap _enabled , Boolean ( power _user . hotswap _enabled ) ) ;
2023-07-20 19:32:15 +02:00
switchHotswap ( ) ;
2023-12-02 21:06:57 +01:00
} ,
2023-11-10 20:56:25 +01:00
} ,
{
key : 'bogus_folders' ,
action : async ( ) => {
$ ( '#bogus_folders' ) . prop ( 'checked' , power _user . bogus _folders ) ;
await printCharacters ( true ) ;
} ,
} ,
2023-12-10 19:02:25 +01:00
{
key : 'reduced_motion' ,
action : async ( ) => {
localStorage . setItem ( storage _keys . reduced _motion , String ( power _user . reduced _motion ) ) ;
$ ( '#reduced_motion' ) . prop ( 'checked' , power _user . reduced _motion ) ;
} ,
} ,
2023-07-20 19:32:15 +02:00
] ;
for ( const { key , selector , type , action } of themeProperties ) {
if ( theme [ key ] !== undefined ) {
power _user [ key ] = theme [ key ] ;
if ( selector ) $ ( selector ) . attr ( 'color' , power _user [ key ] ) ;
if ( type ) await applyThemeColor ( type ) ;
if ( action ) await action ( ) ;
} else {
2023-12-02 20:11:06 +01:00
if ( selector ) { $ ( selector ) . attr ( 'color' , 'rgba(0,0,0,0)' ) ; }
2023-07-20 19:32:15 +02:00
console . debug ( ` Empty theme key: ${ key } ` ) ;
power _user [ key ] = '' ;
}
}
console . log ( 'theme applied: ' + name ) ;
}
async function applyMovingUIPreset ( name ) {
2023-12-02 20:11:06 +01:00
resetMovablePanels ( 'quiet' ) ;
2023-07-20 19:32:15 +02:00
const movingUIPreset = movingUIPresets . find ( x => x . name == name ) ;
if ( ! movingUIPreset ) {
return ;
}
power _user . movingUIState = movingUIPreset . movingUIState ;
console . log ( 'MovingUI Preset applied: ' + name ) ;
2023-12-02 20:11:06 +01:00
loadMovingUIState ( ) ;
2023-07-20 19:32:15 +02:00
}
2023-08-27 22:20:43 +02:00
/ * *
* Register a function to be executed when the debug menu is opened .
* @ param { string } functionId Unique ID for the function .
* @ param { string } name Name of the function .
* @ param { string } description Description of the function .
* @ param { function } func Function to be executed .
* /
export function registerDebugFunction ( functionId , name , description , func ) {
debug _functions . push ( { functionId , name , description , func } ) ;
}
function showDebugMenu ( ) {
const template = renderTemplate ( 'debug' , { functions : debug _functions } ) ;
callPopup ( template , 'text' , '' , { wide : true , large : true } ) ;
}
2023-07-20 19:32:15 +02:00
switchUiMode ( ) ;
2023-08-25 00:06:52 +02:00
applyFontScale ( 'forced' ) ;
2023-07-20 19:32:15 +02:00
applyThemeColor ( ) ;
2023-09-22 15:16:24 +02:00
applyChatWidth ( 'forced' ) ;
2023-07-20 19:32:15 +02:00
applyAvatarStyle ( ) ;
applyBlurStrength ( ) ;
applyShadowWidth ( ) ;
2023-09-22 20:13:58 +02:00
applyCustomCSS ( ) ;
2023-07-20 19:32:15 +02:00
switchMovingUI ( ) ;
noShadows ( ) ;
switchHotswap ( ) ;
switchTimer ( ) ;
switchTimestamps ( ) ;
2023-08-14 00:43:16 +02:00
switchIcons ( ) ;
2023-07-20 19:32:15 +02:00
switchMesIDDisplay ( ) ;
2023-08-31 16:10:01 +02:00
switchTokenCount ( ) ;
2023-09-14 14:23:51 +02:00
switchMessageActions ( ) ;
2023-07-20 19:32:15 +02:00
2023-10-20 19:09:31 +02:00
function getExampleMessagesBehavior ( ) {
if ( power _user . strip _examples ) {
return 'strip' ;
}
if ( power _user . pin _examples ) {
return 'keep' ;
}
return 'normal' ;
}
2023-07-20 19:32:15 +02:00
function loadPowerUserSettings ( settings , data ) {
// Load from settings.json
if ( settings . power _user !== undefined ) {
Object . assign ( power _user , settings . power _user ) ;
}
if ( data . themes !== undefined ) {
themes = data . themes ;
}
if ( data . movingUIPresets !== undefined ) {
movingUIPresets = data . movingUIPresets ;
}
2023-08-17 21:47:34 +02:00
if ( data . context !== undefined ) {
context _presets = data . context ;
}
2023-07-20 19:32:15 +02:00
// These are still local storage
const fastUi = localStorage . getItem ( storage _keys . fast _ui _mode ) ;
const movingUI = localStorage . getItem ( storage _keys . movingUI ) ;
const noShadows = localStorage . getItem ( storage _keys . noShadows ) ;
const hotswap = localStorage . getItem ( storage _keys . hotswap _enabled ) ;
const timer = localStorage . getItem ( storage _keys . timer _enabled ) ;
const timestamps = localStorage . getItem ( storage _keys . timestamps _enabled ) ;
const mesIDDisplay = localStorage . getItem ( storage _keys . mesIDDisplay _enabled ) ;
2023-09-22 15:16:24 +02:00
const expandMessageActions = localStorage . getItem ( storage _keys . expand _message _actions ) ;
2023-11-04 21:47:53 +01:00
const enableZenSliders = localStorage . getItem ( storage _keys . enableZenSliders ) ;
2023-11-10 08:17:38 +01:00
const enableLabMode = localStorage . getItem ( storage _keys . enableLabMode ) ;
2023-12-02 19:04:51 +01:00
power _user . fast _ui _mode = fastUi === null ? true : fastUi == 'true' ;
power _user . movingUI = movingUI === null ? false : movingUI == 'true' ;
power _user . noShadows = noShadows === null ? false : noShadows == 'true' ;
power _user . hotswap _enabled = hotswap === null ? true : hotswap == 'true' ;
power _user . timer _enabled = timer === null ? true : timer == 'true' ;
power _user . timestamps _enabled = timestamps === null ? true : timestamps == 'true' ;
power _user . mesIDDisplay _enabled = mesIDDisplay === null ? true : mesIDDisplay == 'true' ;
power _user . expand _message _actions = expandMessageActions === null ? true : expandMessageActions == 'true' ;
power _user . enableZenSliders = enableZenSliders === null ? false : enableZenSliders == 'true' ;
power _user . enableLabMode = enableLabMode === null ? false : enableLabMode == 'true' ;
2023-07-20 19:32:15 +02:00
power _user . avatar _style = Number ( localStorage . getItem ( storage _keys . avatar _style ) ? ? avatar _styles . ROUND ) ;
//power_user.chat_display = Number(localStorage.getItem(storage_keys.chat_display) ?? chat_styles.DEFAULT);
power _user . chat _width = Number ( localStorage . getItem ( storage _keys . chat _width ) ? ? 50 ) ;
power _user . font _scale = Number ( localStorage . getItem ( storage _keys . font _scale ) ? ? 1 ) ;
power _user . blur _strength = Number ( localStorage . getItem ( storage _keys . blur _strength ) ? ? 10 ) ;
if ( power _user . chat _display === '' ) {
power _user . chat _display = chat _styles . DEFAULT ;
}
if ( power _user . waifuMode === '' ) {
power _user . waifuMode = false ;
}
2023-07-22 17:09:50 +02:00
if ( power _user . chat _width === '' ) {
power _user . chat _width = 50 ;
}
2023-08-27 21:14:39 +02:00
if ( power _user . tokenizer === tokenizers . LEGACY ) {
power _user . tokenizer = tokenizers . GPT2 ;
}
2023-12-02 19:04:51 +01:00
$ ( '#single_line' ) . prop ( 'checked' , power _user . single _line ) ;
$ ( '#relaxed_api_urls' ) . prop ( 'checked' , power _user . relaxed _api _urls ) ;
$ ( '#world_import_dialog' ) . prop ( 'checked' , power _user . world _import _dialog ) ;
$ ( '#trim_spaces' ) . prop ( 'checked' , power _user . trim _spaces ) ;
$ ( '#continue_on_send' ) . prop ( 'checked' , power _user . continue _on _send ) ;
$ ( '#quick_continue' ) . prop ( 'checked' , power _user . quick _continue ) ;
2023-08-24 00:37:44 +02:00
$ ( '#mes_continue' ) . css ( 'display' , power _user . quick _continue ? '' : 'none' ) ;
2023-12-02 19:04:51 +01:00
$ ( '#gestures-checkbox' ) . prop ( 'checked' , power _user . gestures ) ;
$ ( '#auto_swipe' ) . prop ( 'checked' , power _user . auto _swipe ) ;
2023-07-20 19:32:15 +02:00
$ ( '#auto_swipe_minimum_length' ) . val ( power _user . auto _swipe _minimum _length ) ;
2023-12-02 19:04:51 +01:00
$ ( '#auto_swipe_blacklist' ) . val ( power _user . auto _swipe _blacklist . join ( ', ' ) ) ;
2023-07-20 19:32:15 +02:00
$ ( '#auto_swipe_blacklist_threshold' ) . val ( power _user . auto _swipe _blacklist _threshold ) ;
$ ( '#custom_stopping_strings' ) . val ( power _user . custom _stopping _strings ) ;
2023-12-02 19:04:51 +01:00
$ ( '#custom_stopping_strings_macro' ) . prop ( 'checked' , power _user . custom _stopping _strings _macro ) ;
$ ( '#fuzzy_search_checkbox' ) . prop ( 'checked' , power _user . fuzzy _search ) ;
$ ( '#persona_show_notifications' ) . prop ( 'checked' , power _user . persona _show _notifications ) ;
$ ( '#encode_tags' ) . prop ( 'checked' , power _user . encode _tags ) ;
2023-10-20 19:09:31 +02:00
$ ( '#example_messages_behavior' ) . val ( getExampleMessagesBehavior ( ) ) ;
2023-12-02 19:04:51 +01:00
$ ( ` #example_messages_behavior option[value=" ${ getExampleMessagesBehavior ( ) } "] ` ) . prop ( 'selected' , true ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#console_log_prompts' ) . prop ( 'checked' , power _user . console _log _prompts ) ;
$ ( '#auto_fix_generated_markdown' ) . prop ( 'checked' , power _user . auto _fix _generated _markdown ) ;
$ ( '#auto_scroll_chat_to_bottom' ) . prop ( 'checked' , power _user . auto _scroll _chat _to _bottom ) ;
$ ( '#bogus_folders' ) . prop ( 'checked' , power _user . bogus _folders ) ;
2023-07-20 19:32:15 +02:00
$ ( ` #tokenizer option[value=" ${ power _user . tokenizer } "] ` ) . attr ( 'selected' , true ) ;
2023-12-02 19:04:51 +01:00
$ ( ` #send_on_enter option[value= ${ power _user . send _on _enter } ] ` ) . attr ( 'selected' , true ) ;
$ ( '#import_card_tags' ) . prop ( 'checked' , power _user . import _card _tags ) ;
$ ( '#confirm_message_delete' ) . prop ( 'checked' , power _user . confirm _message _delete !== undefined ? ! ! power _user . confirm _message _delete : true ) ;
$ ( '#spoiler_free_mode' ) . prop ( 'checked' , power _user . spoiler _free _mode ) ;
$ ( '#collapse-newlines-checkbox' ) . prop ( 'checked' , power _user . collapse _newlines ) ;
$ ( '#always-force-name2-checkbox' ) . prop ( 'checked' , power _user . always _force _name2 ) ;
$ ( '#trim_sentences_checkbox' ) . prop ( 'checked' , power _user . trim _sentences ) ;
$ ( '#include_newline_checkbox' ) . prop ( 'checked' , power _user . include _newline ) ;
$ ( '#render_formulas' ) . prop ( 'checked' , power _user . render _formulas ) ;
$ ( '#disable_group_trimming' ) . prop ( 'checked' , power _user . disable _group _trimming ) ;
$ ( '#markdown_escape_strings' ) . val ( power _user . markdown _escape _strings ) ;
$ ( '#fast_ui_mode' ) . prop ( 'checked' , power _user . fast _ui _mode ) ;
$ ( '#waifuMode' ) . prop ( 'checked' , power _user . waifuMode ) ;
$ ( '#movingUImode' ) . prop ( 'checked' , power _user . movingUI ) ;
$ ( '#noShadowsmode' ) . prop ( 'checked' , power _user . noShadows ) ;
$ ( '#start_reply_with' ) . val ( power _user . user _prompt _bias ) ;
$ ( '#chat-show-reply-prefix-checkbox' ) . prop ( 'checked' , power _user . show _user _prompt _bias ) ;
$ ( '#auto_continue_enabled' ) . prop ( 'checked' , power _user . auto _continue . enabled ) ;
$ ( '#auto_continue_allow_chat_completions' ) . prop ( 'checked' , power _user . auto _continue . allow _chat _completions ) ;
$ ( '#auto_continue_target_length' ) . val ( power _user . auto _continue . target _length ) ;
$ ( '#play_message_sound' ) . prop ( 'checked' , power _user . play _message _sound ) ;
$ ( '#play_sound_unfocused' ) . prop ( 'checked' , power _user . play _sound _unfocused ) ;
$ ( '#never_resize_avatars' ) . prop ( 'checked' , power _user . never _resize _avatars ) ;
$ ( '#show_card_avatar_urls' ) . prop ( 'checked' , power _user . show _card _avatar _urls ) ;
$ ( '#auto_save_msg_edits' ) . prop ( 'checked' , power _user . auto _save _msg _edits ) ;
$ ( '#allow_name1_display' ) . prop ( 'checked' , power _user . allow _name1 _display ) ;
$ ( '#allow_name2_display' ) . prop ( 'checked' , power _user . allow _name2 _display ) ;
2023-07-20 19:32:15 +02:00
//$("#removeXML").prop("checked", power_user.removeXML);
2023-12-02 19:04:51 +01:00
$ ( '#hotswapEnabled' ) . prop ( 'checked' , power _user . hotswap _enabled ) ;
$ ( '#messageTimerEnabled' ) . prop ( 'checked' , power _user . timer _enabled ) ;
$ ( '#messageTimestampsEnabled' ) . prop ( 'checked' , power _user . timestamps _enabled ) ;
$ ( '#messageModelIconEnabled' ) . prop ( 'checked' , power _user . timestamp _model _icon ) ;
$ ( '#mesIDDisplayEnabled' ) . prop ( 'checked' , power _user . mesIDDisplay _enabled ) ;
$ ( '#prefer_character_prompt' ) . prop ( 'checked' , power _user . prefer _character _prompt ) ;
$ ( '#prefer_character_jailbreak' ) . prop ( 'checked' , power _user . prefer _character _jailbreak ) ;
$ ( '#enableZenSliders' ) . prop ( 'checked' , power _user . enableZenSliders ) . trigger ( 'input' ) ;
$ ( '#enableLabMode' ) . prop ( 'checked' , power _user . enableLabMode ) . trigger ( 'input' ) ;
$ ( ` input[name="avatar_style"][value=" ${ power _user . avatar _style } "] ` ) . prop ( 'checked' , true ) ;
$ ( ` #chat_display option[value= ${ power _user . chat _display } ] ` ) . attr ( 'selected' , true ) . trigger ( 'change' ) ;
2023-07-20 19:32:15 +02:00
$ ( '#chat_width_slider' ) . val ( power _user . chat _width ) ;
2023-12-02 19:04:51 +01:00
$ ( '#token_padding' ) . val ( power _user . token _padding ) ;
$ ( '#aux_field' ) . val ( power _user . aux _field ) ;
$ ( '#restore_user_input' ) . prop ( 'checked' , power _user . restore _user _input ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#chat_truncation' ) . val ( power _user . chat _truncation ) ;
2023-11-19 20:57:54 +01:00
$ ( '#chat_truncation_counter' ) . val ( power _user . chat _truncation ) ;
2023-12-02 19:04:51 +01:00
$ ( '#font_scale' ) . val ( power _user . font _scale ) ;
$ ( '#font_scale_counter' ) . val ( power _user . font _scale ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#blur_strength' ) . val ( power _user . blur _strength ) ;
$ ( '#blur_strength_counter' ) . val ( power _user . blur _strength ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#shadow_width' ) . val ( power _user . shadow _width ) ;
$ ( '#shadow_width_counter' ) . val ( power _user . shadow _width ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#main-text-color-picker' ) . attr ( 'color' , power _user . main _text _color ) ;
$ ( '#italics-color-picker' ) . attr ( 'color' , power _user . italics _text _color ) ;
$ ( '#quote-color-picker' ) . attr ( 'color' , power _user . quote _text _color ) ;
$ ( '#blur-tint-color-picker' ) . attr ( 'color' , power _user . blur _tint _color ) ;
$ ( '#chat-tint-color-picker' ) . attr ( 'color' , power _user . chat _tint _color ) ;
$ ( '#user-mes-blur-tint-color-picker' ) . attr ( 'color' , power _user . user _mes _blur _tint _color ) ;
$ ( '#bot-mes-blur-tint-color-picker' ) . attr ( 'color' , power _user . bot _mes _blur _tint _color ) ;
$ ( '#shadow-color-picker' ) . attr ( 'color' , power _user . shadow _color ) ;
$ ( '#border-color-picker' ) . attr ( 'color' , power _user . border _color ) ;
$ ( '#ui_mode_select' ) . val ( power _user . ui _mode ) . find ( ` option[value=" ${ power _user . ui _mode } "] ` ) . attr ( 'selected' , true ) ;
2023-12-10 19:02:25 +01:00
$ ( '#reduced_motion' ) . prop ( 'checked' , power _user . reduced _motion ) ;
2023-07-20 19:32:15 +02:00
for ( const theme of themes ) {
const option = document . createElement ( 'option' ) ;
option . value = theme . name ;
option . innerText = theme . name ;
option . selected = theme . name == power _user . theme ;
2023-12-02 19:04:51 +01:00
$ ( '#themes' ) . append ( option ) ;
2023-07-20 19:32:15 +02:00
}
for ( const movingUIPreset of movingUIPresets ) {
const option = document . createElement ( 'option' ) ;
option . value = movingUIPreset . name ;
option . innerText = movingUIPreset . name ;
option . selected = movingUIPreset . name == power _user . movingUIPreset ;
2023-12-02 19:04:51 +01:00
$ ( '#movingUIPresets' ) . append ( option ) ;
2023-07-20 19:32:15 +02:00
}
2023-12-02 19:04:51 +01:00
$ ( ` #character_sort_order option[data-order=" ${ power _user . sort _order } "][data-field=" ${ power _user . sort _field } "] ` ) . prop ( 'selected' , true ) ;
2023-12-10 19:02:25 +01:00
switchReducedMotion ( ) ;
2023-07-20 19:32:15 +02:00
reloadMarkdownProcessor ( power _user . render _formulas ) ;
2023-08-20 22:29:43 +02:00
loadInstructMode ( data ) ;
2023-08-17 21:47:34 +02:00
loadContextSettings ( ) ;
2023-07-20 19:32:15 +02:00
loadMaxContextUnlocked ( ) ;
switchWaifuMode ( ) ;
switchSpoilerMode ( ) ;
loadMovingUIState ( ) ;
loadCharListState ( ) ;
2023-08-29 17:04:10 +02:00
switchSimpleMode ( ) ;
2023-07-20 19:32:15 +02:00
}
async function loadCharListState ( ) {
2023-08-19 14:58:17 +02:00
if ( document . querySelector ( '.character_select' ) !== null ) {
2023-12-02 20:11:06 +01:00
console . debug ( 'setting charlist state to...' ) ;
2023-07-20 19:32:15 +02:00
if ( power _user . charListGrid === true ) {
2023-12-02 20:11:06 +01:00
console . debug ( '..to grid' ) ;
$ ( '#charListGridToggle' ) . trigger ( 'click' ) ;
} else { console . debug ( '..to list' ) ; }
2023-07-20 19:32:15 +02:00
} else {
2023-12-02 20:11:06 +01:00
console . debug ( 'charlist not ready yet' ) ;
await delay ( 100 ) ;
2023-07-20 19:32:15 +02:00
loadCharListState ( ) ;
}
}
function loadMovingUIState ( ) {
if ( isMobile ( ) === false
&& power _user . movingUIState
&& power _user . movingUI === true ) {
2023-12-02 20:11:06 +01:00
console . debug ( 'loading movingUI state' ) ;
2023-07-20 19:32:15 +02:00
for ( var elmntName of Object . keys ( power _user . movingUIState ) ) {
var elmntState = power _user . movingUIState [ elmntName ] ;
try {
var elmnt = $ ( '#' + $ . escapeSelector ( elmntName ) ) ;
if ( elmnt . length ) {
2023-12-02 20:11:06 +01:00
console . debug ( ` loading state for ${ elmntName } ` ) ;
2023-07-20 19:32:15 +02:00
elmnt . css ( elmntState ) ;
} else {
2023-12-02 20:11:06 +01:00
console . debug ( ` skipping ${ elmntName } because it doesn't exist in the DOM ` ) ;
2023-07-20 19:32:15 +02:00
}
} catch ( err ) {
2023-12-02 20:11:06 +01:00
console . debug ( ` error occurred while processing ${ elmntName } : ${ err } ` ) ;
2023-07-20 19:32:15 +02:00
}
}
} else {
2023-12-02 20:11:06 +01:00
console . debug ( 'skipping movingUI state load' ) ;
return ;
2023-07-20 19:32:15 +02:00
}
}
function loadMaxContextUnlocked ( ) {
$ ( '#max_context_unlocked' ) . prop ( 'checked' , power _user . max _context _unlocked ) ;
$ ( '#max_context_unlocked' ) . on ( 'change' , function ( ) {
power _user . max _context _unlocked = ! ! $ ( this ) . prop ( 'checked' ) ;
switchMaxContextSize ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
switchMaxContextSize ( ) ;
}
function switchMaxContextSize ( ) {
2023-12-02 19:04:51 +01:00
const elements = [ $ ( '#max_context' ) , $ ( '#max_context_counter' ) , $ ( '#rep_pen_range' ) , $ ( '#rep_pen_range_counter' ) , $ ( '#rep_pen_range_textgenerationwebui' ) , $ ( '#rep_pen_range_counter_textgenerationwebui' ) ] ;
2023-07-20 19:32:15 +02:00
const maxValue = power _user . max _context _unlocked ? MAX _CONTEXT _UNLOCKED : MAX _CONTEXT _DEFAULT ;
2023-10-27 12:22:46 +02:00
const minValue = power _user . max _context _unlocked ? maxContextMin : maxContextMin ;
const steps = power _user . max _context _unlocked ? unlockedMaxContextStep : maxContextStep ;
2023-12-02 20:11:06 +01:00
$ ( '#rep_pen_range_textgenerationwebui_zenslider' ) . remove ( ) ; //unsure why, but this is necessary.
2023-08-26 20:27:37 +02:00
for ( const element of elements ) {
2023-11-12 16:27:40 +01:00
const id = element . attr ( 'id' ) ;
2023-08-26 20:27:37 +02:00
element . attr ( 'max' , maxValue ) ;
2023-10-27 20:09:53 +02:00
2023-11-12 16:27:40 +01:00
if ( typeof id === 'string' && id ? . indexOf ( 'max_context' ) !== - 1 ) {
2023-10-27 20:09:53 +02:00
element . attr ( 'min' , minValue ) ;
2023-12-02 20:11:06 +01:00
element . attr ( 'step' , steps ) ; //only change setps for max context, because rep pen range needs step of 1 due to important values of -1 and 0
2023-10-27 20:09:53 +02:00
}
2023-08-26 20:27:37 +02:00
const value = Number ( element . val ( ) ) ;
if ( value >= maxValue ) {
element . val ( maxValue ) . trigger ( 'input' ) ;
}
2023-07-20 19:32:15 +02:00
}
2023-12-03 17:30:21 +01:00
const maxAmountGen = power _user . max _context _unlocked ? MAX _RESPONSE _UNLOCKED : MAX _RESPONSE _DEFAULT ;
$ ( '#amount_gen' ) . attr ( 'max' , maxAmountGen ) ;
$ ( '#amount_gen_counter' ) . attr ( 'max' , maxAmountGen ) ;
if ( Number ( $ ( '#amount_gen' ) . val ( ) ) >= maxAmountGen ) {
$ ( '#amount_gen' ) . val ( maxAmountGen ) . trigger ( 'input' ) ;
}
2023-11-15 10:58:47 +01:00
if ( power _user . enableZenSliders ) {
2023-12-02 20:11:06 +01:00
$ ( '#max_context_zenslider' ) . remove ( ) ;
CreateZenSliders ( $ ( '#max_context' ) ) ;
$ ( '#rep_pen_range_textgenerationwebui_zenslider' ) . remove ( ) ;
CreateZenSliders ( $ ( '#rep_pen_range_textgenerationwebui' ) ) ;
2023-11-15 10:58:47 +01:00
}
2023-07-20 19:32:15 +02:00
}
2023-10-20 07:56:17 +02:00
// Fetch a compiled object of all preset settings
function getContextSettings ( ) {
let compiledSettings = { } ;
contextControls . forEach ( ( control ) => {
let value = control . isGlobalSetting ? power _user [ control . property ] : power _user . context [ control . property ] ;
// Force to a boolean if the setting is a checkbox
if ( control . isCheckbox ) {
value = ! ! value ;
}
compiledSettings [ control . property ] = value ;
} ) ;
2023-08-17 21:47:34 +02:00
2023-10-20 07:56:17 +02:00
return compiledSettings ;
}
2023-08-17 21:47:34 +02:00
2023-10-20 07:56:17 +02:00
// TODO: Maybe add a refresh button to reset settings to preset
// TODO: Add "global state" if a preset doesn't set the power_user checkboxes
function loadContextSettings ( ) {
contextControls . forEach ( control => {
2023-08-17 21:47:34 +02:00
const $element = $ ( ` # ${ control . id } ` ) ;
2023-10-26 14:01:31 +02:00
if ( control . isGlobalSetting ) {
return ;
}
2023-12-01 22:06:37 +01:00
if ( control . defaultValue !== undefined && power _user . context [ control . property ] === undefined ) {
power _user . context [ control . property ] = control . defaultValue ;
}
2023-08-17 21:47:34 +02:00
if ( control . isCheckbox ) {
$element . prop ( 'checked' , power _user . context [ control . property ] ) ;
} else {
$element . val ( power _user . context [ control . property ] ) ;
}
2023-10-20 07:56:17 +02:00
// If the setting already exists, no need to duplicate it
// TODO: Maybe check the power_user object for the setting instead of a flag?
2023-08-17 21:47:34 +02:00
$element . on ( 'input' , function ( ) {
2023-10-20 07:56:17 +02:00
const value = control . isCheckbox ? ! ! $ ( this ) . prop ( 'checked' ) : $ ( this ) . val ( ) ;
if ( control . isGlobalSetting ) {
power _user [ control . property ] = value ;
} else {
power _user . context [ control . property ] = value ;
}
2023-08-17 21:47:34 +02:00
saveSettingsDebounced ( ) ;
2023-08-25 21:04:06 +02:00
if ( ! control . isCheckbox ) {
resetScrollHeight ( $element ) ;
}
2023-08-17 21:47:34 +02:00
} ) ;
} ) ;
context _presets . forEach ( ( preset ) => {
const name = preset . name ;
const option = document . createElement ( 'option' ) ;
option . value = name ;
option . innerText = name ;
option . selected = name === power _user . context . preset ;
$ ( '#context_presets' ) . append ( option ) ;
} ) ;
$ ( '#context_presets' ) . on ( 'change' , function ( ) {
2023-08-22 13:30:49 +02:00
const name = String ( $ ( this ) . find ( ':selected' ) . val ( ) ) ;
2023-08-17 21:47:34 +02:00
const preset = context _presets . find ( x => x . name === name ) ;
if ( ! preset ) {
return ;
}
power _user . context . preset = name ;
2023-10-20 07:56:17 +02:00
contextControls . forEach ( control => {
2023-10-27 20:02:03 +02:00
const presetValue = preset [ control . property ] ? ? control . defaultValue ;
if ( presetValue !== undefined ) {
2023-10-20 07:56:17 +02:00
if ( control . isGlobalSetting ) {
2023-10-27 20:02:03 +02:00
power _user [ control . property ] = presetValue ;
2023-10-20 07:56:17 +02:00
} else {
2023-10-27 20:02:03 +02:00
power _user . context [ control . property ] = presetValue ;
2023-10-20 07:56:17 +02:00
}
2023-08-17 21:47:34 +02:00
const $element = $ ( ` # ${ control . id } ` ) ;
if ( control . isCheckbox ) {
2023-10-21 03:50:33 +02:00
$element
. prop ( 'checked' , control . isGlobalSetting ? power _user [ control . property ] : power _user . context [ control . property ] )
. trigger ( 'input' ) ;
2023-08-17 21:47:34 +02:00
} else {
2023-10-21 03:50:33 +02:00
$element
. val ( control . isGlobalSetting ? power _user [ control . property ] : power _user . context [ control . property ] )
. trigger ( 'input' ) ;
2023-08-17 21:47:34 +02:00
}
}
} ) ;
2023-08-23 20:17:45 +02:00
2023-08-23 22:22:52 +02:00
// Select matching instruct preset
2023-08-23 20:17:45 +02:00
for ( const instruct _preset of instruct _presets ) {
// If instruct preset matches the context template
if ( instruct _preset . name === name ) {
2023-08-23 22:22:52 +02:00
selectInstructPreset ( instruct _preset . name ) ;
break ;
2023-08-23 20:17:45 +02:00
}
}
2023-08-26 12:09:47 +02:00
highlightDefaultContext ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
$ ( '#context_set_default' ) . on ( 'click' , function ( ) {
if ( power _user . context . preset !== power _user . default _context ) {
power _user . default _context = power _user . context . preset ;
$ ( this ) . addClass ( 'default' ) ;
toastr . info ( ` Default context template set to ${ power _user . default _context } ` ) ;
highlightDefaultContext ( ) ;
saveSettingsDebounced ( ) ;
}
2023-08-17 21:47:34 +02:00
} ) ;
2023-08-26 12:09:47 +02:00
highlightDefaultContext ( ) ;
}
function highlightDefaultContext ( ) {
$ ( '#context_set_default' ) . toggleClass ( 'default' , power _user . default _context === power _user . context . preset ) ;
2023-08-26 14:52:23 +02:00
$ ( '#context_set_default' ) . toggleClass ( 'disabled' , power _user . default _context === power _user . context . preset ) ;
$ ( '#context_delete_preset' ) . toggleClass ( 'disabled' , power _user . default _context === power _user . context . preset ) ;
2023-08-17 21:47:34 +02:00
}
2023-07-27 23:38:43 +02:00
export function fuzzySearchCharacters ( searchValue ) {
const fuse = new Fuse ( characters , {
keys : [
2023-10-19 13:03:38 +02:00
{ name : 'data.name' , weight : 8 } ,
2023-07-27 23:38:43 +02:00
{ name : 'data.description' , weight : 3 } ,
{ name : 'data.mes_example' , weight : 3 } ,
{ name : 'data.scenario' , weight : 2 } ,
{ name : 'data.personality' , weight : 2 } ,
{ name : 'data.first_mes' , weight : 2 } ,
{ name : 'data.creator_notes' , weight : 2 } ,
{ name : 'data.creator' , weight : 1 } ,
{ name : 'data.tags' , weight : 1 } ,
2023-12-02 21:06:57 +01:00
{ name : 'data.alternate_greetings' , weight : 1 } ,
2023-07-27 23:38:43 +02:00
] ,
includeScore : true ,
ignoreLocation : true ,
threshold : 0.2 ,
} ) ;
const results = fuse . search ( searchValue ) ;
2023-08-14 16:35:48 +02:00
console . debug ( 'Characters fuzzy search results for ' + searchValue , results ) ;
2023-07-27 23:38:43 +02:00
const indices = results . map ( x => x . refIndex ) ;
return indices ;
}
2023-08-22 00:51:31 +02:00
export function fuzzySearchWorldInfo ( data , searchValue ) {
const fuse = new Fuse ( data , {
keys : [
{ name : 'key' , weight : 3 } ,
{ name : 'content' , weight : 3 } ,
{ name : 'comment' , weight : 2 } ,
{ name : 'keysecondary' , weight : 2 } ,
{ name : 'uid' , weight : 1 } ,
] ,
includeScore : true ,
ignoreLocation : true ,
threshold : 0.2 ,
} ) ;
const results = fuse . search ( searchValue ) ;
console . debug ( 'World Info fuzzy search results for ' + searchValue , results ) ;
return results . map ( x => x . item ? . uid ) ;
}
2023-11-10 20:56:25 +01:00
export function fuzzySearchTags ( searchValue ) {
const fuse = new Fuse ( tags , {
keys : [
2023-11-12 09:23:29 +01:00
{ name : 'name' , weight : 1 } ,
2023-11-10 20:56:25 +01:00
] ,
includeScore : true ,
ignoreLocation : true ,
2023-12-02 21:06:57 +01:00
threshold : 0.2 ,
2023-11-10 20:56:25 +01:00
} ) ;
const results = fuse . search ( searchValue ) ;
console . debug ( 'Tags fuzzy search results for ' + searchValue , results ) ;
const ids = results . map ( x => String ( x . item ? . id ) ) . filter ( x => x ) ;
return ids ;
}
2023-08-14 16:35:48 +02:00
export function fuzzySearchGroups ( searchValue ) {
const fuse = new Fuse ( groups , {
keys : [
{ name : 'name' , weight : 3 } ,
{ name : 'members' , weight : 1 } ,
] ,
includeScore : true ,
ignoreLocation : true ,
threshold : 0.2 ,
} ) ;
const results = fuse . search ( searchValue ) ;
console . debug ( 'Groups fuzzy search results for ' + searchValue , results ) ;
const ids = results . map ( x => String ( x . item ? . id ) ) . filter ( x => x ) ;
return ids ;
}
2023-08-26 00:32:39 +02:00
/ * *
* Renders a story string template with the given parameters .
* @ param { object } params Template parameters .
* @ returns { string } The rendered story string .
* /
2023-08-17 21:47:34 +02:00
export function renderStoryString ( params ) {
try {
2023-08-26 00:32:39 +02:00
// compile the story string template into a function, with no HTML escaping
2023-08-18 12:53:54 +02:00
const compiledTemplate = Handlebars . compile ( power _user . context . story _string , { noEscape : true } ) ;
2023-08-26 00:32:39 +02:00
// render the story string template with the given params
2023-08-17 21:47:34 +02:00
let output = compiledTemplate ( params ) ;
2023-08-26 00:32:39 +02:00
// substitute {{macro}} params that are not defined in the story string
2023-08-17 21:47:34 +02:00
output = substituteParams ( output , params . user , params . char ) ;
2023-08-26 00:32:39 +02:00
// remove leading whitespace
output = output . trimStart ( ) ;
// add a newline to the end of the story string if it doesn't have one
2023-10-18 10:44:45 +02:00
if ( output . length > 0 && ! output . endsWith ( '\n' ) ) {
2023-08-26 00:32:39 +02:00
output += '\n' ;
}
2023-08-17 21:47:34 +02:00
return output ;
} catch ( e ) {
toastr . error ( 'Check the story string template for validity' , 'Error rendering story string' ) ;
console . error ( 'Error rendering story string' , e ) ;
2023-08-26 00:32:39 +02:00
throw e ; // rethrow the error
2023-08-17 21:47:34 +02:00
}
}
2023-07-20 19:32:15 +02:00
const sortFunc = ( a , b ) => power _user . sort _order == 'asc' ? compareFunc ( a , b ) : compareFunc ( b , a ) ;
const compareFunc = ( first , second ) => {
2023-09-10 13:30:29 +02:00
const a = first [ power _user . sort _field ] ;
const b = second [ power _user . sort _field ] ;
2023-08-31 18:30:56 +02:00
2023-09-10 13:30:29 +02:00
if ( power _user . sort _field === 'create_date' ) {
return sortMoments ( timestampToMoment ( b ) , timestampToMoment ( a ) ) ;
}
2023-08-31 18:30:56 +02:00
2023-09-10 13:30:29 +02:00
switch ( power _user . sort _rule ) {
case 'boolean' :
2023-07-20 19:32:15 +02:00
if ( a === true || a === 'true' ) return 1 ; // Prioritize 'true' or true
if ( b === true || b === 'true' ) return - 1 ; // Prioritize 'true' or true
if ( a && ! b ) return - 1 ; // Move truthy values to the end
if ( ! a && b ) return 1 ; // Move falsy values to the beginning
if ( a === b ) return 0 ; // Sort equal values normally
return a < b ? - 1 : 1 ; // Sort non-boolean values normally
default :
2023-12-02 19:04:51 +01:00
return typeof a == 'string'
2023-09-10 13:30:29 +02:00
? a . localeCompare ( b )
: a - b ;
2023-07-20 19:32:15 +02:00
}
} ;
2023-08-22 13:30:49 +02:00
/ * *
* Sorts an array of entities based on the current sort settings
* @ param { any [ ] } entities An array of objects with an ` item ` property
* /
2023-08-18 22:13:15 +02:00
function sortEntitiesList ( entities ) {
if ( power _user . sort _field == undefined || entities . length === 0 ) {
2023-07-20 19:32:15 +02:00
return ;
}
2023-12-10 04:37:49 +01:00
if ( power _user . sort _order === 'random' ) {
shuffle ( entities ) ;
return ;
}
2023-11-11 13:53:08 +01:00
entities . sort ( ( a , b ) => {
if ( a . type === 'tag' && b . type !== 'tag' ) {
return - 1 ;
}
if ( a . type !== 'tag' && b . type === 'tag' ) {
return 1 ;
}
return sortFunc ( a . item , b . item ) ;
} ) ;
2023-07-20 19:32:15 +02:00
}
2023-08-22 13:30:49 +02:00
2023-07-20 19:32:15 +02:00
async function saveTheme ( ) {
const name = await callPopup ( 'Enter a theme preset name:' , 'input' ) ;
if ( ! name ) {
return ;
}
const theme = {
name ,
blur _strength : power _user . blur _strength ,
main _text _color : power _user . main _text _color ,
italics _text _color : power _user . italics _text _color ,
quote _text _color : power _user . quote _text _color ,
blur _tint _color : power _user . blur _tint _color ,
2023-09-22 09:54:51 +02:00
chat _tint _color : power _user . chat _tint _color ,
2023-07-20 19:32:15 +02:00
user _mes _blur _tint _color : power _user . user _mes _blur _tint _color ,
bot _mes _blur _tint _color : power _user . bot _mes _blur _tint _color ,
shadow _color : power _user . shadow _color ,
shadow _width : power _user . shadow _width ,
2023-09-16 08:42:26 +02:00
border _color : power _user . border _color ,
2023-07-20 19:32:15 +02:00
font _scale : power _user . font _scale ,
fast _ui _mode : power _user . fast _ui _mode ,
waifuMode : power _user . waifuMode ,
avatar _style : power _user . avatar _style ,
chat _display : power _user . chat _display ,
noShadows : power _user . noShadows ,
chat _width : power _user . chat _width ,
timer _enabled : power _user . timer _enabled ,
timestamps _enabled : power _user . timestamps _enabled ,
2023-08-14 00:43:16 +02:00
timestamp _model _icon : power _user . timestamp _model _icon ,
2023-09-22 15:16:24 +02:00
2023-07-20 19:32:15 +02:00
mesIDDisplay _enabled : power _user . mesIDDisplay _enabled ,
2023-09-22 15:16:24 +02:00
message _token _count _enabled : power _user . message _token _count _enabled ,
expand _message _actions : power _user . expand _message _actions ,
2023-11-04 21:47:53 +01:00
enableZenSliders : power _user . enableZenSliders ,
2023-11-10 08:17:38 +01:00
enableLabMode : power _user . enableLabMode ,
2023-07-20 19:32:15 +02:00
hotswap _enabled : power _user . hotswap _enabled ,
2023-09-22 20:13:58 +02:00
custom _css : power _user . custom _css ,
2023-11-10 20:56:25 +01:00
bogus _folders : power _user . bogus _folders ,
2023-07-20 19:32:15 +02:00
} ;
const response = await fetch ( '/savetheme' , {
method : 'POST' ,
headers : getRequestHeaders ( ) ,
2023-12-02 21:06:57 +01:00
body : JSON . stringify ( theme ) ,
2023-07-20 19:32:15 +02:00
} ) ;
if ( response . ok ) {
const themeIndex = themes . findIndex ( x => x . name == name ) ;
if ( themeIndex == - 1 ) {
themes . push ( theme ) ;
const option = document . createElement ( 'option' ) ;
option . selected = true ;
option . value = name ;
option . innerText = name ;
$ ( '#themes' ) . append ( option ) ;
}
else {
themes [ themeIndex ] = theme ;
$ ( ` #themes option[value=" ${ name } "] ` ) . attr ( 'selected' , true ) ;
}
power _user . theme = name ;
saveSettingsDebounced ( ) ;
}
}
async function saveMovingUI ( ) {
const name = await callPopup ( 'Enter a name for the MovingUI Preset:' , 'input' ) ;
if ( ! name ) {
return ;
}
const movingUIPreset = {
name ,
2023-12-02 21:06:57 +01:00
movingUIState : power _user . movingUIState ,
2023-12-02 20:11:06 +01:00
} ;
console . log ( movingUIPreset ) ;
2023-07-20 19:32:15 +02:00
const response = await fetch ( '/savemovingui' , {
method : 'POST' ,
headers : getRequestHeaders ( ) ,
2023-12-02 21:06:57 +01:00
body : JSON . stringify ( movingUIPreset ) ,
2023-07-20 19:32:15 +02:00
} ) ;
if ( response . ok ) {
const movingUIPresetIndex = movingUIPresets . findIndex ( x => x . name == name ) ;
if ( movingUIPresetIndex == - 1 ) {
movingUIPresets . push ( movingUIPreset ) ;
const option = document . createElement ( 'option' ) ;
option . selected = true ;
option . value = name ;
option . innerText = name ;
$ ( '#movingUIPresets' ) . append ( option ) ;
}
else {
movingUIPresets [ movingUIPresetIndex ] = movingUIPreset ;
$ ( ` #movingUIPresets option[value=" ${ name } "] ` ) . attr ( 'selected' , true ) ;
}
power _user . movingUIPreset = name ;
saveSettingsDebounced ( ) ;
} else {
2023-12-02 20:11:06 +01:00
toastr . warning ( 'failed to save MovingUI state.' ) ;
2023-07-20 19:32:15 +02:00
}
}
async function resetMovablePanels ( type ) {
const panelIds = [
'sheld' ,
'left-nav-panel' ,
'right-nav-panel' ,
'WorldInfo' ,
'floatingPrompt' ,
'expression-holder' ,
2023-10-09 21:49:35 +02:00
'groupMemberListPopout' ,
2023-10-13 17:29:41 +02:00
'summaryExtensionPopout' ,
2023-12-02 21:06:57 +01:00
'gallery' ,
2023-07-20 19:32:15 +02:00
] ;
2023-12-02 21:06:57 +01:00
const panelStyles = [ 'top' , 'left' , 'right' , 'bottom' , 'height' , 'width' , 'margin' ] ;
2023-07-20 19:32:15 +02:00
panelIds . forEach ( ( id ) => {
2023-12-02 20:11:06 +01:00
console . log ( id ) ;
2023-07-20 19:32:15 +02:00
const panel = document . getElementById ( id ) ;
if ( panel ) {
$ ( panel ) . addClass ( 'resizing' ) ;
panelStyles . forEach ( ( style ) => {
panel . style [ style ] = '' ;
} ) ;
}
} ) ;
const zoomedAvatars = document . querySelectorAll ( '.zoomed_avatar' ) ;
if ( zoomedAvatars . length > 0 ) {
zoomedAvatars . forEach ( ( avatar ) => {
avatar . classList . add ( 'resizing' ) ;
panelStyles . forEach ( ( style ) => {
avatar . style [ style ] = '' ;
} ) ;
} ) ;
}
$ ( '[data-dragged="true"]' ) . removeAttr ( 'data-dragged' ) ;
2023-12-02 20:11:06 +01:00
await delay ( 50 ) ;
2023-07-20 19:32:15 +02:00
power _user . movingUIState = { } ;
//if user manually resets panels, deselect the current preset
if ( type !== 'quiet' && type !== 'resize' ) {
2023-12-02 20:11:06 +01:00
power _user . movingUIPreset = 'Default' ;
2023-12-02 19:04:51 +01:00
$ ( '#movingUIPresets option[value="Default"]' ) . prop ( 'selected' , true ) ;
2023-07-20 19:32:15 +02:00
}
saveSettingsDebounced ( ) ;
eventSource . emit ( event _types . MOVABLE _PANELS _RESET ) ;
eventSource . once ( event _types . SETTINGS _UPDATED , ( ) => {
2023-12-02 19:04:51 +01:00
$ ( '.resizing' ) . removeClass ( 'resizing' ) ;
2023-07-20 19:32:15 +02:00
//if happening as part of preset application, do it quietly.
if ( type === 'quiet' ) {
2023-12-02 20:11:06 +01:00
return ;
2023-07-22 17:09:50 +02:00
//if happening due to resize, tell user.
2023-07-20 19:32:15 +02:00
} else if ( type === 'resize' ) {
toastr . warning ( 'Panel positions reset due to zoom/resize' ) ;
2023-07-22 17:09:50 +02:00
//if happening due to manual button press
2023-07-20 19:32:15 +02:00
} else {
toastr . success ( 'Panel positions reset' ) ;
}
} ) ;
}
function doNewChat ( ) {
setTimeout ( ( ) => {
2023-12-02 19:04:51 +01:00
$ ( '#option_start_new_chat' ) . trigger ( 'click' ) ;
2023-07-20 19:32:15 +02:00
} , 1 ) ;
//$("#dialogue_popup").hide();
setTimeout ( ( ) => {
2023-12-02 19:04:51 +01:00
$ ( '#dialogue_popup_ok' ) . trigger ( 'click' ) ;
2023-07-20 19:32:15 +02:00
} , 1 ) ;
}
2023-11-27 01:18:36 +01:00
async function doRandomChat ( ) {
2023-07-20 19:32:15 +02:00
resetSelectedGroup ( ) ;
2023-11-27 01:18:36 +01:00
const characterId = Math . floor ( Math . random ( ) * characters . length ) . toString ( ) ;
setCharacterId ( characterId ) ;
await delay ( 1 ) ;
await reloadCurrentChat ( ) ;
return characters [ characterId ] ? . name ;
2023-07-20 19:32:15 +02:00
}
2023-11-08 22:27:03 +01:00
/ * *
* Loads the chat until the given message ID is displayed .
* @ param { number } mesId
* @ returns JQuery < HTMLElement >
* /
async function loadUntilMesId ( mesId ) {
let target ;
while ( getFirstDisplayedMessageId ( ) > mesId && getFirstDisplayedMessageId ( ) !== 0 ) {
showMoreMessages ( ) ;
await delay ( 1 ) ;
2023-12-02 19:04:51 +01:00
target = $ ( '#chat' ) . find ( ` .mes[mesid= ${ mesId } ] ` ) ;
2023-11-08 22:27:03 +01:00
if ( target . length ) {
break ;
}
}
if ( ! target . length ) {
2023-12-02 20:11:06 +01:00
toastr . error ( ` Could not find message with ID: ${ mesId } ` ) ;
2023-11-08 22:27:03 +01:00
return target ;
}
return target ;
}
2023-07-20 19:32:15 +02:00
async function doMesCut ( _ , text ) {
2023-12-02 20:11:06 +01:00
console . debug ( ` was asked to cut message id # ${ text } ` ) ;
2023-11-08 22:04:32 +01:00
const range = stringToRange ( text , 0 , chat . length - 1 ) ;
2023-07-20 19:32:15 +02:00
//reject invalid args or no args
2023-11-08 22:04:32 +01:00
if ( ! range ) {
2023-12-02 20:11:06 +01:00
toastr . warning ( 'Must provide a Message ID or a range to cut.' ) ;
return ;
2023-07-20 19:32:15 +02:00
}
2023-11-08 22:04:32 +01:00
let totalMesToCut = ( range . end - range . start ) + 1 ;
let mesIDToCut = range . start ;
2023-07-20 19:32:15 +02:00
2023-11-08 22:04:32 +01:00
for ( let i = 0 ; i < totalMesToCut ; i ++ ) {
let done = false ;
2023-12-02 20:11:06 +01:00
let mesToCut = $ ( '#chat' ) . find ( ` .mes[mesid= ${ mesIDToCut } ] ` ) ;
2023-07-20 19:32:15 +02:00
2023-11-08 22:04:32 +01:00
if ( ! mesToCut . length ) {
2023-11-08 22:27:03 +01:00
mesToCut = await loadUntilMesId ( mesIDToCut ) ;
2023-07-20 19:32:15 +02:00
2023-11-08 22:27:03 +01:00
if ( ! mesToCut || ! mesToCut . length ) {
2023-11-08 22:04:32 +01:00
return ;
}
}
setEditedMessageId ( mesIDToCut ) ;
eventSource . once ( event _types . MESSAGE _DELETED , ( ) => {
done = true ;
} ) ;
mesToCut . find ( '.mes_edit_delete' ) . trigger ( 'click' , { fromSlashCommand : true } ) ;
while ( ! done ) {
await delay ( 1 ) ;
}
}
}
2023-07-20 19:32:15 +02:00
async function doDelMode ( _ , text ) {
//first enter delmode
2023-12-02 19:04:51 +01:00
$ ( '#option_delete_mes' ) . trigger ( 'click' , { fromSlashCommand : true } ) ;
2023-07-20 19:32:15 +02:00
//reject invalid args
if ( text && isNaN ( text ) ) {
2023-12-02 20:11:06 +01:00
toastr . warning ( 'Must enter a number or nothing.' ) ;
await delay ( 300 ) ; //unsure why 300 is neccessary here, but any shorter and it wont see the delmode UI
2023-12-02 19:04:51 +01:00
$ ( '#dialogue_del_mes_cancel' ) . trigger ( 'click' ) ;
2023-12-02 20:11:06 +01:00
return ;
2023-07-20 19:32:15 +02:00
}
//parse valid args
if ( text ) {
2023-12-02 20:11:06 +01:00
await delay ( 300 ) ; //same as above, need event signal for 'entered del mode'
console . debug ( 'parsing msgs to del' ) ;
2023-08-22 13:30:49 +02:00
let numMesToDel = Number ( text ) ;
2023-11-08 22:27:03 +01:00
let lastMesID = Number ( $ ( '#chat .mes' ) . last ( ) . attr ( 'mesid' ) ) ;
2023-07-20 19:32:15 +02:00
let oldestMesIDToDel = lastMesID - numMesToDel + 1 ;
2023-11-08 22:27:03 +01:00
if ( oldestMesIDToDel < 0 ) {
2023-12-02 20:11:06 +01:00
toastr . warning ( ` Cannot delete more than ${ chat . length } messages. ` ) ;
2023-11-08 22:27:03 +01:00
return ;
2023-07-20 19:32:15 +02:00
}
2023-12-02 20:11:06 +01:00
let oldestMesToDel = $ ( '#chat' ) . find ( ` .mes[mesid= ${ oldestMesIDToDel } ] ` ) ;
2023-11-08 22:27:03 +01:00
if ( ! oldestMesIDToDel ) {
oldestMesToDel = await loadUntilMesId ( oldestMesIDToDel ) ;
if ( ! oldestMesToDel || ! oldestMesToDel . length ) {
return ;
}
}
2023-07-20 19:32:15 +02:00
let oldestDelMesCheckbox = $ ( oldestMesToDel ) . find ( '.del_checkbox' ) ;
let newLastMesID = oldestMesIDToDel - 1 ;
2023-12-02 20:11:06 +01:00
console . debug ( ` DelMesReport -- numMesToDel: ${ numMesToDel } , lastMesID: ${ lastMesID } , oldestMesIDToDel: ${ oldestMesIDToDel } , newLastMesID: ${ newLastMesID } ` ) ;
2023-07-20 19:32:15 +02:00
oldestDelMesCheckbox . trigger ( 'click' ) ;
2023-12-02 20:11:06 +01:00
let trueNumberOfDeletedMessage = lastMesID - oldestMesIDToDel + 1 ;
2023-07-20 19:32:15 +02:00
//await delay(1)
$ ( '#dialogue_del_mes_ok' ) . trigger ( 'click' ) ;
2023-12-02 20:11:06 +01:00
toastr . success ( ` Deleted ${ trueNumberOfDeletedMessage } messages. ` ) ;
return ;
2023-07-20 19:32:15 +02:00
}
}
function doResetPanels ( ) {
2023-12-02 19:04:51 +01:00
$ ( '#movingUIreset' ) . trigger ( 'click' ) ;
2023-07-20 19:32:15 +02:00
}
function setAvgBG ( ) {
const bgimg = new Image ( ) ;
bgimg . src = $ ( '#bg1' )
. css ( 'background-image' )
. replace ( /^url\(['"]?/ , '' )
. replace ( /['"]?\)$/ , '' ) ;
/ * c o n s t c h a r A v a t a r = n e w I m a g e ( )
charAvatar . src = $ ( "#avatar_load_preview" )
. attr ( 'src' )
. replace ( /^url\(['"]?/ , '' )
. replace ( /['"]?\)$/ , '' ) ;
2023-11-05 18:55:53 +01:00
2023-07-20 19:32:15 +02:00
const userAvatar = new Image ( )
userAvatar . src = $ ( "#user_avatar_block .avatar.selected img" )
. attr ( 'src' )
. replace ( /^url\(['"]?/ , '' )
. replace ( /['"]?\)$/ , '' ) ; * /
bgimg . onload = function ( ) {
var rgb = getAverageRGB ( bgimg ) ;
//console.log(`average color of the bg is:`)
//console.log(rgb);
2023-12-02 19:04:51 +01:00
$ ( '#blur-tint-color-picker' ) . attr ( 'color' , 'rgb(' + rgb . r + ',' + rgb . g + ',' + rgb . b + ')' ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
const backgroundColorString = $ ( '#blur-tint-color-picker' ) . attr ( 'color' )
2023-07-20 19:32:15 +02:00
. replace ( 'rgba' , '' )
. replace ( 'rgb' , '' )
. replace ( '(' , '[' )
. replace ( ')' , ']' ) ; //[50, 120, 200, 1]; // Example background color
2023-12-02 20:11:06 +01:00
const backgroundColorArray = JSON . parse ( backgroundColorString ) ; //[200, 200, 200, 1]
console . log ( backgroundColorArray ) ;
2023-12-02 19:04:51 +01:00
$ ( '#main-text-color-picker' ) . attr ( 'color' , getReadableTextColor ( backgroundColorArray ) ) ;
console . log ( $ ( '#main-text-color-picker' ) . attr ( 'color' ) ) ; // Output: 'rgba(0, 47, 126, 1)'
2023-12-02 20:11:06 +01:00
} ;
2023-07-20 19:32:15 +02:00
/ * c h a r A v a t a r . o n l o a d = f u n c t i o n ( ) {
var rgb = getAverageRGB ( charAvatar ) ;
//console.log(`average color of the AI avatar is:`);
//console.log(rgb);
$ ( "#bot-mes-blur-tint-color-picker" ) . attr ( 'color' , 'rgb(' + rgb . r + ',' + rgb . g + ',' + rgb . b + ')' ) ;
}
2023-11-05 18:55:53 +01:00
2023-07-20 19:32:15 +02:00
userAvatar . onload = function ( ) {
var rgb = getAverageRGB ( userAvatar ) ;
//console.log(`average color of the user avatar is:`);
//console.log(rgb);
$ ( "#user-mes-blur-tint-color-picker" ) . attr ( 'color' , 'rgb(' + rgb . r + ',' + rgb . g + ',' + rgb . b + ')' ) ;
} * /
function getAverageRGB ( imgEl ) {
var blockSize = 5 , // only visit every 5 pixels
defaultRGB = { r : 0 , g : 0 , b : 0 } , // for non-supporting envs
canvas = document . createElement ( 'canvas' ) ,
context = canvas . getContext && canvas . getContext ( '2d' ) ,
data , width , height ,
i = - 4 ,
length ,
rgb = { r : 0 , g : 0 , b : 0 } ,
count = 0 ;
if ( ! context ) {
return defaultRGB ;
}
height = canvas . height = imgEl . naturalHeight || imgEl . offsetHeight || imgEl . height ;
width = canvas . width = imgEl . naturalWidth || imgEl . offsetWidth || imgEl . width ;
context . drawImage ( imgEl , 0 , 0 ) ;
try {
data = context . getImageData ( 0 , 0 , width , height ) ;
} catch ( e ) {
2023-12-02 20:56:16 +01:00
/* security error, img on diff domain */ alert ( 'x' ) ;
2023-07-20 19:32:15 +02:00
return defaultRGB ;
}
length = data . data . length ;
while ( ( i += blockSize * 4 ) < length ) {
++ count ;
rgb . r += data . data [ i ] ;
rgb . g += data . data [ i + 1 ] ;
rgb . b += data . data [ i + 2 ] ;
}
// ~~ used to floor values
rgb . r = ~ ~ ( rgb . r / count ) ;
rgb . g = ~ ~ ( rgb . g / count ) ;
rgb . b = ~ ~ ( rgb . b / count ) ;
return rgb ;
}
2023-08-22 13:30:49 +02:00
/ * *
* Converts an HSL color value to RGB .
* @ param { number } h Hue value
* @ param { number } s Saturation value
* @ param { number } l Luminance value
* @ return { Array } The RGB representation
* /
2023-07-20 19:32:15 +02:00
function hslToRgb ( h , s , l ) {
const hueToRgb = ( p , q , t ) => {
if ( t < 0 ) t += 1 ;
if ( t > 1 ) t -= 1 ;
if ( t < 1 / 6 ) return p + ( q - p ) * 6 * t ;
if ( t < 1 / 2 ) return q ;
if ( t < 2 / 3 ) return p + ( q - p ) * ( 2 / 3 - t ) * 6 ;
return p ;
} ;
if ( s === 0 ) {
return [ l , l , l ] ;
}
const q = l < 0.5 ? l * ( 1 + s ) : l + s - l * s ;
const p = 2 * l - q ;
const r = hueToRgb ( p , q , h + 1 / 3 ) ;
const g = hueToRgb ( p , q , h ) ;
const b = hueToRgb ( p , q , h - 1 / 3 ) ;
return [ r * 255 , g * 255 , b * 255 ] ;
}
//this version keeps BG and main text in same hue
/ * f u n c t i o n g e t R e a d a b l e T e x t C o l o r ( r g b ) {
const [ r , g , b ] = rgb ;
2023-11-05 18:55:53 +01:00
2023-07-20 19:32:15 +02:00
// Convert RGB to HSL
const rgbToHsl = ( r , g , b ) => {
const max = Math . max ( r , g , b ) ;
const min = Math . min ( r , g , b ) ;
const d = max - min ;
const l = ( max + min ) / 2 ;
2023-11-05 18:55:53 +01:00
2023-07-20 19:32:15 +02:00
if ( d === 0 ) return [ 0 , 0 , l ] ;
2023-11-05 18:55:53 +01:00
2023-07-20 19:32:15 +02:00
const s = l > 0.5 ? d / ( 2 - max - min ) : d / ( max + min ) ;
const h = ( ( ) => {
switch ( max ) {
case r :
return ( g - b ) / d + ( g < b ? 6 : 0 ) ;
case g :
return ( b - r ) / d + 2 ;
case b :
return ( r - g ) / d + 4 ;
}
} ) ( ) / 6 ;
2023-11-05 18:55:53 +01:00
2023-07-20 19:32:15 +02:00
return [ h , s , l ] ;
} ;
const [ h , s , l ] = rgbToHsl ( r / 255 , g / 255 , b / 255 ) ;
2023-11-05 18:55:53 +01:00
2023-07-20 19:32:15 +02:00
// Calculate appropriate text color based on background color
const targetLuminance = l > 0.5 ? 0.2 : 0.8 ;
const targetSaturation = s > 0.5 ? s - 0.2 : s + 0.2 ;
const [ rNew , gNew , bNew ] = hslToRgb ( h , targetSaturation , targetLuminance ) ;
2023-11-05 18:55:53 +01:00
2023-07-20 19:32:15 +02:00
// Return the text color in RGBA format
return ` rgba( ${ rNew . toFixed ( 0 ) } , ${ gNew . toFixed ( 0 ) } , ${ bNew . toFixed ( 0 ) } , 1) ` ;
} * /
//this version makes main text complimentary color to BG color
function getReadableTextColor ( rgb ) {
const [ r , g , b ] = rgb ;
// Convert RGB to HSL
const rgbToHsl = ( r , g , b ) => {
const max = Math . max ( r , g , b ) ;
const min = Math . min ( r , g , b ) ;
const d = max - min ;
const l = ( max + min ) / 2 ;
if ( d === 0 ) return [ 0 , 0 , l ] ;
const s = l > 0.5 ? d / ( 2 - max - min ) : d / ( max + min ) ;
const h = ( ( ) => {
switch ( max ) {
case r :
return ( g - b ) / d + ( g < b ? 6 : 0 ) ;
case g :
return ( b - r ) / d + 2 ;
case b :
return ( r - g ) / d + 4 ;
}
} ) ( ) / 6 ;
return [ h , s , l ] ;
} ;
const [ h , s , l ] = rgbToHsl ( r / 255 , g / 255 , b / 255 ) ;
// Calculate complementary color based on background color
const complementaryHue = ( h + 0.5 ) % 1 ;
const complementarySaturation = s > 0.5 ? s - 0.6 : s + 0.6 ;
const complementaryLuminance = l > 0.5 ? 0.2 : 0.8 ;
// Convert complementary color back to RGB
const [ rNew , gNew , bNew ] = hslToRgb ( complementaryHue , complementarySaturation , complementaryLuminance ) ;
// Return the text color in RGBA format
return ` rgba( ${ rNew . toFixed ( 0 ) } , ${ gNew . toFixed ( 0 ) } , ${ bNew . toFixed ( 0 ) } , 1) ` ;
}
}
2023-11-15 23:57:23 +01:00
async function setThemeCallback ( _ , text ) {
const fuse = new Fuse ( themes , {
keys : [
{ name : 'name' , weight : 1 } ,
] ,
} ) ;
const results = fuse . search ( text ) ;
console . debug ( 'Theme fuzzy search results for ' + text , results ) ;
const theme = results [ 0 ] ? . item ;
if ( ! theme ) {
toastr . warning ( ` Could not find theme with name: ${ text } ` ) ;
return ;
}
power _user . theme = theme . name ;
applyTheme ( theme . name ) ;
2023-12-02 19:04:51 +01:00
$ ( '#themes' ) . val ( theme . name ) ;
2023-11-15 23:57:23 +01:00
saveSettingsDebounced ( ) ;
}
2023-08-25 23:12:11 +02:00
2023-11-23 14:32:47 +01:00
async function setmovingUIPreset ( _ , text ) {
const fuse = new Fuse ( movingUIPresets , {
keys : [
{ name : 'name' , weight : 1 } ,
] ,
} ) ;
const results = fuse . search ( text ) ;
console . debug ( 'movingUI preset fuzzy search results for ' + text , results ) ;
const preset = results [ 0 ] ? . item ;
if ( ! preset ) {
toastr . warning ( ` Could not find preset with name: ${ text } ` ) ;
return ;
}
power _user . movingUIPreset = preset . name ;
applyMovingUIPreset ( preset . name ) ;
2023-12-02 19:04:51 +01:00
$ ( '#movingUIPresets' ) . val ( preset . name ) ;
2023-11-23 14:32:47 +01:00
saveSettingsDebounced ( ) ;
}
2023-11-23 23:51:27 +01:00
const EPHEMERAL _STOPPING _STRINGS = [ ] ;
/ * *
* Adds a stopping string to the list of stopping strings that are only used for the next generation .
* @ param { string } value The stopping string to add
* /
export function addEphemeralStoppingString ( value ) {
if ( ! EPHEMERAL _STOPPING _STRINGS . includes ( value ) ) {
console . debug ( 'Adding ephemeral stopping string:' , value ) ;
EPHEMERAL _STOPPING _STRINGS . push ( value ) ;
}
}
export function flushEphemeralStoppingStrings ( ) {
2023-11-24 18:06:31 +01:00
if ( EPHEMERAL _STOPPING _STRINGS . length === 0 ) {
return ;
}
2023-11-23 23:51:27 +01:00
console . debug ( 'Flushing ephemeral stopping strings:' , EPHEMERAL _STOPPING _STRINGS ) ;
2023-11-24 18:10:09 +01:00
EPHEMERAL _STOPPING _STRINGS . splice ( 0 , EPHEMERAL _STOPPING _STRINGS . length ) ;
2023-11-23 23:51:27 +01:00
}
2023-08-25 23:12:11 +02:00
/ * *
* Gets the custom stopping strings from the power user settings .
2023-08-28 23:47:35 +02:00
* @ param { number | undefined } limit Number of strings to return . If 0 or undefined , returns all strings .
2023-08-25 23:12:11 +02:00
* @ returns { string [ ] } An array of custom stopping strings
* /
export function getCustomStoppingStrings ( limit = undefined ) {
2023-11-23 23:51:27 +01:00
function getPermanent ( ) {
try {
// If there's no custom stopping strings, return an empty array
if ( ! power _user . custom _stopping _strings ) {
return [ ] ;
}
2023-08-25 23:12:11 +02:00
2023-11-23 23:51:27 +01:00
// Parse the JSON string
let strings = JSON . parse ( power _user . custom _stopping _strings ) ;
2023-07-20 19:32:15 +02:00
2023-11-23 23:51:27 +01:00
// Make sure it's an array
if ( ! Array . isArray ( strings ) ) {
return [ ] ;
}
2023-07-20 19:32:15 +02:00
2023-11-23 23:51:27 +01:00
// Make sure all the elements are strings and non-empty.
strings = strings . filter ( s => typeof s === 'string' && s . length > 0 ) ;
2023-08-28 23:47:35 +02:00
2023-11-23 23:51:27 +01:00
// Substitute params if necessary
if ( power _user . custom _stopping _strings _macro ) {
strings = strings . map ( x => substituteParams ( x ) ) ;
}
2023-08-28 23:47:35 +02:00
2023-11-23 23:51:27 +01:00
return strings ;
} catch ( error ) {
// If there's an error, return an empty array
console . warn ( 'Error parsing custom stopping strings:' , error ) ;
return [ ] ;
}
2023-07-20 19:32:15 +02:00
}
2023-11-23 23:51:27 +01:00
const permanent = getPermanent ( ) ;
const ephemeral = EPHEMERAL _STOPPING _STRINGS ;
2023-11-23 23:54:23 +01:00
const strings = [ ... permanent , ... ephemeral ] ;
// Apply the limit. If limit is 0, return all strings.
if ( limit > 0 ) {
return strings . slice ( 0 , limit ) ;
}
return strings ;
2023-07-20 19:32:15 +02:00
}
$ ( document ) . ready ( ( ) => {
$ ( window ) . on ( 'resize' , async ( ) => {
if ( isMobile ( ) ) {
2023-12-02 20:11:06 +01:00
return ;
2023-07-20 19:32:15 +02:00
}
//console.log('Window resized!');
const zoomLevel = Number ( window . devicePixelRatio ) . toFixed ( 2 ) ;
const winWidth = window . innerWidth ;
const winHeight = window . innerHeight ;
console . debug ( ` Zoom: ${ zoomLevel } , X: ${ winWidth } , Y: ${ winHeight } ` ) ;
if ( Object . keys ( power _user . movingUIState ) . length > 0 ) {
resetMovablePanels ( 'resize' ) ;
}
// Adjust layout and styling here
2023-09-14 14:56:01 +02:00
setHotswapsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
// Settings that go to settings.json
2023-12-02 19:04:51 +01:00
$ ( '#collapse-newlines-checkbox' ) . change ( function ( ) {
power _user . collapse _newlines = ! ! $ ( this ) . prop ( 'checked' ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
} ) ;
// include newline is the child of trim sentences
// if include newline is checked, trim sentences must be checked
// if trim sentences is unchecked, include newline must be unchecked
2023-12-02 19:04:51 +01:00
$ ( '#trim_sentences_checkbox' ) . change ( function ( ) {
power _user . trim _sentences = ! ! $ ( this ) . prop ( 'checked' ) ;
if ( ! $ ( this ) . prop ( 'checked' ) ) {
$ ( '#include_newline_checkbox' ) . prop ( 'checked' , false ) ;
2023-07-20 19:32:15 +02:00
power _user . include _newline = false ;
}
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#include_newline_checkbox' ) . change ( function ( ) {
power _user . include _newline = ! ! $ ( this ) . prop ( 'checked' ) ;
if ( $ ( this ) . prop ( 'checked' ) ) {
$ ( '#trim_sentences_checkbox' ) . prop ( 'checked' , true ) ;
2023-07-20 19:32:15 +02:00
power _user . trim _sentences = true ;
}
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#single_line' ) . on ( 'input' , function ( ) {
2023-10-27 20:02:03 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . single _line = value ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#always-force-name2-checkbox' ) . change ( function ( ) {
power _user . always _force _name2 = ! ! $ ( this ) . prop ( 'checked' ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#markdown_escape_strings' ) . on ( 'input' , function ( ) {
2023-08-22 13:30:49 +02:00
power _user . markdown _escape _strings = String ( $ ( this ) . val ( ) ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
reloadMarkdownProcessor ( power _user . render _formulas ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#start_reply_with' ) . on ( 'input' , function ( ) {
2023-08-22 13:30:49 +02:00
power _user . user _prompt _bias = String ( $ ( this ) . val ( ) ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#chat-show-reply-prefix-checkbox' ) . change ( function ( ) {
power _user . show _user _prompt _bias = ! ! $ ( this ) . prop ( 'checked' ) ;
2023-07-20 19:32:15 +02:00
reloadCurrentChat ( ) ;
saveSettingsDebounced ( ) ;
2023-12-02 20:11:06 +01:00
} ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#auto_continue_enabled' ) . on ( 'change' , function ( ) {
power _user . auto _continue . enabled = $ ( this ) . prop ( 'checked' ) ;
2023-09-15 20:34:41 +02:00
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#auto_continue_allow_chat_completions' ) . on ( 'change' , function ( ) {
2023-09-15 20:34:41 +02:00
power _user . auto _continue . allow _chat _completions = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#auto_continue_target_length' ) . on ( 'input' , function ( ) {
2023-09-15 20:34:41 +02:00
power _user . auto _continue . target _length = Number ( $ ( this ) . val ( ) ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
} ) ;
2023-10-20 19:09:31 +02:00
$ ( '#example_messages_behavior' ) . on ( 'change' , function ( ) {
const selectedOption = String ( $ ( this ) . find ( ':selected' ) . val ( ) ) ;
console . log ( 'Setting example messages behavior to' , selectedOption ) ;
switch ( selectedOption ) {
case 'normal' :
power _user . pin _examples = false ;
power _user . strip _examples = false ;
break ;
case 'keep' :
power _user . pin _examples = true ;
power _user . strip _examples = false ;
break ;
case 'strip' :
power _user . pin _examples = false ;
power _user . strip _examples = true ;
break ;
}
console . debug ( 'power_user.pin_examples' , power _user . pin _examples ) ;
console . debug ( 'power_user.strip_examples' , power _user . strip _examples ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-07-20 19:32:15 +02:00
// Settings that go to local storage
2023-12-02 19:04:51 +01:00
$ ( '#fast_ui_mode' ) . change ( function ( ) {
power _user . fast _ui _mode = $ ( this ) . prop ( 'checked' ) ;
2023-07-20 19:32:15 +02:00
localStorage . setItem ( storage _keys . fast _ui _mode , power _user . fast _ui _mode ) ;
switchUiMode ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#waifuMode' ) . on ( 'change' , ( ) => {
power _user . waifuMode = $ ( '#waifuMode' ) . prop ( 'checked' ) ;
2023-07-20 19:32:15 +02:00
switchWaifuMode ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#customCSS' ) . on ( 'change' , ( ) => {
2023-09-22 20:13:58 +02:00
power _user . custom _css = $ ( '#customCSS' ) . val ( ) ;
localStorage . setItem ( storage _keys . custom _css , power _user . custom _css ) ;
saveSettingsDebounced ( ) ;
applyCustomCSS ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#movingUImode' ) . change ( function ( ) {
power _user . movingUI = $ ( this ) . prop ( 'checked' ) ;
2023-07-20 19:32:15 +02:00
localStorage . setItem ( storage _keys . movingUI , power _user . movingUI ) ;
switchMovingUI ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#noShadowsmode' ) . change ( function ( ) {
power _user . noShadows = $ ( this ) . prop ( 'checked' ) ;
2023-07-20 19:32:15 +02:00
localStorage . setItem ( storage _keys . noShadows , power _user . noShadows ) ;
noShadows ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#movingUIreset' ) . on ( 'click' , resetMovablePanels ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#avatar_style' ) . on ( 'change' , function ( ) {
2023-09-22 15:16:24 +02:00
const value = $ ( this ) . find ( ':selected' ) . val ( ) ;
power _user . avatar _style = Number ( value ) ;
2023-07-20 19:32:15 +02:00
localStorage . setItem ( storage _keys . avatar _style , power _user . avatar _style ) ;
applyAvatarStyle ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#chat_display' ) . on ( 'change' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = $ ( this ) . find ( ':selected' ) . val ( ) ;
power _user . chat _display = Number ( value ) ;
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . chat _display , power _user . chat _display ) ;
2023-07-20 19:32:15 +02:00
applyChatDisplay ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
$ ( '#chat_width_slider' ) . on ( 'input' , function ( e ) {
power _user . chat _width = Number ( e . target . value ) ;
localStorage . setItem ( storage _keys . chat _width , power _user . chat _width ) ;
applyChatWidth ( ) ;
2023-09-14 14:56:01 +02:00
setHotswapsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-11-19 20:57:54 +01:00
$ ( '#chat_truncation' ) . on ( 'input' , function ( ) {
power _user . chat _truncation = Number ( $ ( '#chat_truncation' ) . val ( ) ) ;
$ ( '#chat_truncation_counter' ) . val ( power _user . chat _truncation ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( 'input[name="font_scale"]' ) . on ( 'input' , async function ( e ) {
2023-07-20 19:32:15 +02:00
power _user . font _scale = Number ( e . target . value ) ;
2023-12-02 19:04:51 +01:00
$ ( '#font_scale_counter' ) . val ( power _user . font _scale ) ;
2023-07-20 19:32:15 +02:00
localStorage . setItem ( storage _keys . font _scale , power _user . font _scale ) ;
await applyFontScale ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( 'input[name="blur_strength"]' ) . on ( 'input' , async function ( e ) {
2023-07-20 19:32:15 +02:00
power _user . blur _strength = Number ( e . target . value ) ;
2023-12-02 19:04:51 +01:00
$ ( '#blur_strength_counter' ) . val ( power _user . blur _strength ) ;
2023-07-20 19:32:15 +02:00
localStorage . setItem ( storage _keys . blur _strength , power _user . blur _strength ) ;
await applyBlurStrength ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( 'input[name="shadow_width"]' ) . on ( 'input' , async function ( e ) {
2023-07-20 19:32:15 +02:00
power _user . shadow _width = Number ( e . target . value ) ;
2023-12-02 19:04:51 +01:00
$ ( '#shadow_width_counter' ) . val ( power _user . shadow _width ) ;
2023-07-20 19:32:15 +02:00
localStorage . setItem ( storage _keys . shadow _width , power _user . shadow _width ) ;
await applyShadowWidth ( ) ;
2023-09-22 15:16:24 +02:00
saveSettingsDebounced ( ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#main-text-color-picker' ) . on ( 'change' , ( evt ) => {
2023-07-20 19:32:15 +02:00
power _user . main _text _color = evt . detail . rgba ;
applyThemeColor ( 'main' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#italics-color-picker' ) . on ( 'change' , ( evt ) => {
2023-07-20 19:32:15 +02:00
power _user . italics _text _color = evt . detail . rgba ;
applyThemeColor ( 'italics' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#quote-color-picker' ) . on ( 'change' , ( evt ) => {
2023-07-20 19:32:15 +02:00
power _user . quote _text _color = evt . detail . rgba ;
applyThemeColor ( 'quote' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#blur-tint-color-picker' ) . on ( 'change' , ( evt ) => {
2023-07-20 19:32:15 +02:00
power _user . blur _tint _color = evt . detail . rgba ;
applyThemeColor ( 'blurTint' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#chat-tint-color-picker' ) . on ( 'change' , ( evt ) => {
2023-09-22 09:54:51 +02:00
power _user . chat _tint _color = evt . detail . rgba ;
applyThemeColor ( 'chatTint' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#user-mes-blur-tint-color-picker' ) . on ( 'change' , ( evt ) => {
2023-07-20 19:32:15 +02:00
power _user . user _mes _blur _tint _color = evt . detail . rgba ;
applyThemeColor ( 'userMesBlurTint' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#bot-mes-blur-tint-color-picker' ) . on ( 'change' , ( evt ) => {
2023-07-20 19:32:15 +02:00
power _user . bot _mes _blur _tint _color = evt . detail . rgba ;
applyThemeColor ( 'botMesBlurTint' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#shadow-color-picker' ) . on ( 'change' , ( evt ) => {
2023-07-20 19:32:15 +02:00
power _user . shadow _color = evt . detail . rgba ;
applyThemeColor ( 'shadow' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#border-color-picker' ) . on ( 'change' , ( evt ) => {
2023-09-16 08:42:26 +02:00
power _user . border _color = evt . detail . rgba ;
applyThemeColor ( 'border' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#themes' ) . on ( 'change' , function ( ) {
2023-08-22 13:30:49 +02:00
const themeSelected = String ( $ ( this ) . find ( ':selected' ) . val ( ) ) ;
2023-07-20 19:32:15 +02:00
power _user . theme = themeSelected ;
applyTheme ( themeSelected ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#movingUIPresets' ) . on ( 'change' , async function ( ) {
2023-12-02 20:11:06 +01:00
console . log ( 'saw MUI preset change' ) ;
2023-08-22 13:30:49 +02:00
const movingUIPresetSelected = String ( $ ( this ) . find ( ':selected' ) . val ( ) ) ;
2023-07-20 19:32:15 +02:00
power _user . movingUIPreset = movingUIPresetSelected ;
applyMovingUIPreset ( movingUIPresetSelected ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#ui-preset-save-button' ) . on ( 'click' , saveTheme ) ;
$ ( '#movingui-preset-save-button' ) . on ( 'click' , saveMovingUI ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#never_resize_avatars' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . never _resize _avatars = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-08-18 22:13:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#show_card_avatar_urls' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . show _card _avatar _urls = ! ! $ ( this ) . prop ( 'checked' ) ;
printCharacters ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#play_message_sound' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . play _message _sound = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#play_sound_unfocused' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . play _sound _unfocused = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#auto_save_msg_edits' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . auto _save _msg _edits = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#character_sort_order' ) . on ( 'change' , function ( ) {
power _user . sort _field = $ ( this ) . find ( ':selected' ) . data ( 'field' ) ;
power _user . sort _order = $ ( this ) . find ( ':selected' ) . data ( 'order' ) ;
power _user . sort _rule = $ ( this ) . find ( ':selected' ) . data ( 'rule' ) ;
2023-08-18 22:13:15 +02:00
printCharacters ( ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
} ) ;
2023-10-23 03:54:17 +02:00
$ ( '#gestures-checkbox' ) . on ( 'change' , function ( ) {
power _user . gestures = ! ! $ ( '#gestures-checkbox' ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-07-20 19:32:15 +02:00
$ ( '#auto_swipe' ) . on ( 'input' , function ( ) {
power _user . auto _swipe = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
$ ( '#auto_swipe_blacklist' ) . on ( 'input' , function ( ) {
2023-08-22 13:30:49 +02:00
power _user . auto _swipe _blacklist = String ( $ ( this ) . val ( ) )
2023-12-02 19:04:51 +01:00
. split ( ',' )
2023-07-20 19:32:15 +02:00
. map ( str => str . trim ( ) )
. filter ( str => str ) ;
2023-12-02 20:11:06 +01:00
console . log ( 'power_user.auto_swipe_blacklist' , power _user . auto _swipe _blacklist ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
} ) ;
$ ( '#auto_swipe_minimum_length' ) . on ( 'input' , function ( ) {
2023-08-22 13:30:49 +02:00
const number = Number ( $ ( this ) . val ( ) ) ;
2023-07-20 19:32:15 +02:00
if ( ! isNaN ( number ) ) {
power _user . auto _swipe _minimum _length = number ;
saveSettingsDebounced ( ) ;
}
} ) ;
$ ( '#auto_swipe_blacklist_threshold' ) . on ( 'input' , function ( ) {
2023-08-22 13:30:49 +02:00
const number = Number ( $ ( this ) . val ( ) ) ;
2023-07-20 19:32:15 +02:00
if ( ! isNaN ( number ) ) {
power _user . auto _swipe _blacklist _threshold = number ;
saveSettingsDebounced ( ) ;
}
} ) ;
$ ( '#auto_fix_generated_markdown' ) . on ( 'input' , function ( ) {
power _user . auto _fix _generated _markdown = ! ! $ ( this ) . prop ( 'checked' ) ;
reloadCurrentChat ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#console_log_prompts' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . console _log _prompts = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#auto_scroll_chat_to_bottom' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . auto _scroll _chat _to _bottom = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#tokenizer' ) . on ( 'change' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = $ ( this ) . find ( ':selected' ) . val ( ) ;
power _user . tokenizer = Number ( value ) ;
saveSettingsDebounced ( ) ;
// Trigger character editor re-tokenize
2023-12-02 19:04:51 +01:00
$ ( '#rm_ch_create_block' ) . trigger ( 'input' ) ;
$ ( '#character_popup' ) . trigger ( 'input' ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#send_on_enter' ) . on ( 'change' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = $ ( this ) . find ( ':selected' ) . val ( ) ;
power _user . send _on _enter = Number ( value ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#import_card_tags' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . import _card _tags = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#confirm_message_delete' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . confirm _message _delete = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#render_formulas' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . render _formulas = ! ! $ ( this ) . prop ( 'checked' ) ;
reloadMarkdownProcessor ( power _user . render _formulas ) ;
reloadCurrentChat ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-06 16:23:54 +01:00
$ ( '#reload_chat' ) . on ( 'click' , async function ( ) {
2023-07-20 19:32:15 +02:00
const currentChatId = getCurrentChatId ( ) ;
if ( currentChatId !== undefined && currentChatId !== null ) {
2023-12-06 16:23:54 +01:00
await saveSettings ( ) ;
await saveChatConditional ( ) ;
await reloadCurrentChat ( ) ;
2023-07-20 19:32:15 +02:00
}
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#allow_name1_display' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . allow _name1 _display = ! ! $ ( this ) . prop ( 'checked' ) ;
reloadCurrentChat ( ) ;
saveSettingsDebounced ( ) ;
2023-12-02 20:11:06 +01:00
} ) ;
2023-07-20 19:32:15 +02:00
2023-12-02 19:04:51 +01:00
$ ( '#allow_name2_display' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . allow _name2 _display = ! ! $ ( this ) . prop ( 'checked' ) ;
reloadCurrentChat ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#token_padding' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
power _user . token _padding = Number ( $ ( this ) . val ( ) ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#messageTimerEnabled' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . timer _enabled = value ;
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . timer _enabled , Boolean ( power _user . timer _enabled ) ) ;
2023-07-20 19:32:15 +02:00
switchTimer ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#messageTimestampsEnabled' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . timestamps _enabled = value ;
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . timestamps _enabled , Boolean ( power _user . timestamps _enabled ) ) ;
2023-07-20 19:32:15 +02:00
switchTimestamps ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#messageModelIconEnabled' ) . on ( 'input' , function ( ) {
2023-08-14 00:43:16 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . timestamp _model _icon = value ;
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . timestamp _model _icon , Boolean ( power _user . timestamp _model _icon ) ) ;
2023-08-14 00:43:16 +02:00
switchIcons ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#messageTokensEnabled' ) . on ( 'input' , function ( ) {
2023-08-31 16:10:01 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . message _token _count _enabled = value ;
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . message _token _count _enabled , Boolean ( power _user . message _token _count _enabled ) ) ;
2023-08-31 16:10:01 +02:00
switchTokenCount ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#expandMessageActions' ) . on ( 'input' , function ( ) {
2023-09-14 14:23:51 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . expand _message _actions = value ;
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . expand _message _actions , Boolean ( power _user . expand _message _actions ) ) ;
2023-09-14 14:23:51 +02:00
switchMessageActions ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#enableZenSliders' ) . on ( 'input' , function ( ) {
2023-11-12 09:23:29 +01:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
if ( power _user . enableLabMode === true && value === true ) {
2023-11-10 08:17:38 +01:00
//disallow zenSliders while Lab Mode is active
2023-12-02 20:11:06 +01:00
toastr . warning ( 'Disable Mad Lab Mode before enabling Zen Sliders' ) ;
2023-11-12 09:23:29 +01:00
$ ( this ) . prop ( 'checked' , false ) . trigger ( 'input' ) ;
2023-12-02 20:11:06 +01:00
return ;
2023-11-10 08:17:38 +01:00
}
2023-11-04 21:47:53 +01:00
power _user . enableZenSliders = value ;
localStorage . setItem ( storage _keys . enableZenSliders , Boolean ( power _user . enableZenSliders ) ) ;
2023-11-12 09:23:29 +01:00
saveSettingsDebounced ( ) ;
2023-11-04 21:47:53 +01:00
switchZenSliders ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#enableLabMode' ) . on ( 'input' , function ( ) {
2023-11-12 09:23:29 +01:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
if ( power _user . enableZenSliders === true && value === true ) {
2023-11-10 08:17:38 +01:00
//disallow Lab Mode if ZenSliders are active
2023-12-02 20:11:06 +01:00
toastr . warning ( 'Disable Zen Sliders before enabling Mad Lab Mode' ) ;
2023-12-02 16:15:03 +01:00
$ ( this ) . prop ( 'checked' , false ) . trigger ( 'input' ) ;
2023-12-02 20:11:06 +01:00
return ;
2023-11-10 08:17:38 +01:00
}
2023-11-12 09:23:29 +01:00
2023-11-10 08:17:38 +01:00
power _user . enableLabMode = value ;
localStorage . setItem ( storage _keys . enableLabMode , Boolean ( power _user . enableLabMode ) ) ;
2023-11-12 09:23:29 +01:00
saveSettingsDebounced ( ) ;
2023-11-10 08:17:38 +01:00
switchLabMode ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#mesIDDisplayEnabled' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . mesIDDisplay _enabled = value ;
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . mesIDDisplay _enabled , Boolean ( power _user . mesIDDisplay _enabled ) ) ;
2023-07-20 19:32:15 +02:00
switchMesIDDisplay ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#hotswapEnabled' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . hotswap _enabled = value ;
2023-09-22 15:16:24 +02:00
localStorage . setItem ( storage _keys . hotswap _enabled , Boolean ( power _user . hotswap _enabled ) ) ;
2023-07-20 19:32:15 +02:00
switchHotswap ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#prefer_character_prompt' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . prefer _character _prompt = value ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#prefer_character_jailbreak' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . prefer _character _jailbreak = value ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#continue_on_send' ) . on ( 'input' , function ( ) {
2023-08-24 14:13:04 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . continue _on _send = value ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#quick_continue' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
2023-08-24 00:37:44 +02:00
power _user . quick _continue = value ;
2023-12-02 19:04:51 +01:00
$ ( '#mes_continue' ) . css ( 'display' , value ? '' : 'none' ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#trim_spaces' ) . on ( 'input' , function ( ) {
2023-07-20 19:32:15 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . trim _spaces = value ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#relaxed_api_urls' ) . on ( 'input' , function ( ) {
2023-08-04 22:49:55 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . relaxed _api _urls = value ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#world_import_dialog' ) . on ( 'input' , function ( ) {
2023-10-10 17:08:08 +02:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . world _import _dialog = value ;
saveSettingsDebounced ( ) ;
} ) ;
2023-07-20 19:32:15 +02:00
$ ( '#spoiler_free_mode' ) . on ( 'input' , function ( ) {
power _user . spoiler _free _mode = ! ! $ ( this ) . prop ( 'checked' ) ;
switchSpoilerMode ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
$ ( '#spoiler_free_desc_button' ) . on ( 'click' , function ( ) {
peekSpoilerMode ( ) ;
$ ( this ) . toggleClass ( 'fa-eye fa-eye-slash' ) ;
} ) ;
$ ( '#custom_stopping_strings' ) . on ( 'input' , function ( ) {
2023-08-22 13:30:49 +02:00
power _user . custom _stopping _strings = String ( $ ( this ) . val ( ) ) ;
2023-07-20 19:32:15 +02:00
saveSettingsDebounced ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#custom_stopping_strings_macro' ) . change ( function ( ) {
power _user . custom _stopping _strings _macro = ! ! $ ( this ) . prop ( 'checked' ) ;
2023-08-04 16:53:49 +02:00
saveSettingsDebounced ( ) ;
} ) ;
2023-07-27 23:38:43 +02:00
$ ( '#fuzzy_search_checkbox' ) . on ( 'input' , function ( ) {
power _user . fuzzy _search = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-08-03 13:24:45 +02:00
$ ( '#persona_show_notifications' ) . on ( 'input' , function ( ) {
power _user . persona _show _notifications = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-08-10 10:47:17 +02:00
$ ( '#encode_tags' ) . on ( 'input' , async function ( ) {
power _user . encode _tags = ! ! $ ( this ) . prop ( 'checked' ) ;
await reloadCurrentChat ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-08-30 15:31:53 +02:00
$ ( '#disable_group_trimming' ) . on ( 'input' , function ( ) {
power _user . disable _group _trimming = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-08-27 22:20:43 +02:00
$ ( '#debug_menu' ) . on ( 'click' , function ( ) {
showDebugMenu ( ) ;
} ) ;
2023-12-02 19:04:51 +01:00
$ ( '#ui_mode_select' ) . on ( 'change' , function ( ) {
2023-08-29 17:04:10 +02:00
const value = $ ( this ) . find ( ':selected' ) . val ( ) ;
power _user . ui _mode = Number ( value ) ;
saveSettingsDebounced ( ) ;
switchSimpleMode ( ) ;
} ) ;
2023-11-12 09:23:29 +01:00
$ ( '#bogus_folders' ) . on ( 'input' , function ( ) {
2023-11-10 20:56:25 +01:00
const value = ! ! $ ( this ) . prop ( 'checked' ) ;
power _user . bogus _folders = value ;
saveSettingsDebounced ( ) ;
printCharacters ( true ) ;
} ) ;
2023-11-12 10:22:21 +01:00
$ ( '#aux_field' ) . on ( 'change' , function ( ) {
2023-11-11 17:25:43 +01:00
const value = $ ( this ) . find ( ':selected' ) . val ( ) ;
power _user . aux _field = String ( value ) ;
saveSettingsDebounced ( ) ;
printCharacters ( false ) ;
} ) ;
2023-11-27 23:29:34 +01:00
$ ( '#restore_user_input' ) . on ( 'input' , function ( ) {
power _user . restore _user _input = ! ! $ ( this ) . prop ( 'checked' ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-12-10 19:02:25 +01:00
$ ( '#reduced_motion' ) . on ( 'input' , function ( ) {
power _user . reduced _motion = ! ! $ ( this ) . prop ( 'checked' ) ;
localStorage . setItem ( storage _keys . reduced _motion , String ( power _user . reduced _motion ) ) ;
switchReducedMotion ( ) ;
saveSettingsDebounced ( ) ;
} ) ;
2023-08-27 22:20:43 +02:00
$ ( document ) . on ( 'click' , '#debug_table [data-debug-function]' , function ( ) {
const functionId = $ ( this ) . data ( 'debug-function' ) ;
const functionRecord = debug _functions . find ( f => f . functionId === functionId ) ;
if ( functionRecord ) {
functionRecord . func ( ) ;
} else {
console . warn ( ` Debug function ${ functionId } not found ` ) ;
}
} ) ;
2023-07-20 19:32:15 +02:00
$ ( window ) . on ( 'focus' , function ( ) {
browser _has _focus = true ;
} ) ;
$ ( window ) . on ( 'blur' , function ( ) {
browser _has _focus = false ;
} ) ;
2023-10-07 18:25:36 +02:00
registerSlashCommand ( 'vn' , toggleWaifu , [ ] , '– swaps Visual Novel Mode On/Off' , false , true ) ;
registerSlashCommand ( 'newchat' , doNewChat , [ ] , '– start a new chat with current character' , true , true ) ;
registerSlashCommand ( 'random' , doRandomChat , [ ] , '– start a new chat with a random character' , true , true ) ;
2023-11-08 22:27:03 +01:00
registerSlashCommand ( 'delmode' , doDelMode , [ 'del' ] , '<span class="monospace">(optional number)</span> – enter message deletion mode, and auto-deletes last N messages if numeric argument is provided' , true , true ) ;
2023-11-08 22:04:32 +01:00
registerSlashCommand ( 'cut' , doMesCut , [ ] , '<span class="monospace">(number or range)</span> – cuts the specified message or continuous chunk from the chat, e.g. <tt>/cut 0-10</tt>. Ranges are inclusive!' , true , true ) ;
2023-10-07 18:25:36 +02:00
registerSlashCommand ( 'resetpanels' , doResetPanels , [ 'resetui' ] , '– resets UI panels to original state.' , true , true ) ;
registerSlashCommand ( 'bgcol' , setAvgBG , [ ] , '– WIP test of auto-bg avg coloring' , true , true ) ;
2023-11-15 23:57:23 +01:00
registerSlashCommand ( 'theme' , setThemeCallback , [ ] , '<span class="monospace">(name)</span> – sets a UI theme by name' , true , true ) ;
2023-11-23 14:32:47 +01:00
registerSlashCommand ( 'movingui' , setmovingUIPreset , [ ] , '<span class="monospace">(name)</span> – activates a movingUI preset by name' , true , true ) ;
2023-07-20 19:32:15 +02:00
} ) ;