-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.js
890 lines (777 loc) · 33.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
import { chat_metadata, callPopup, saveSettingsDebounced, is_send_press } from '../../../../script.js';
import { getContext, extension_settings, saveMetadataDebounced, renderExtensionTemplateAsync } from '../../../extensions.js';
import {
substituteParams,
eventSource,
event_types,
generateQuietPrompt,
animation_duration
} from '../../../../script.js';
import { registerSlashCommand } from '../../../slash-commands.js';
import { waitUntilCondition } from '../../../utils.js';
import { is_group_generating, selected_group } from '../../../group-chats.js';
import { dragElement } from '../../../../scripts/RossAscends-mods.js';
import { loadMovingUIState } from '../../../../scripts/power-user.js';
const MODULE_NAME = 'Objective';
let taskTree = null;
let globalTasks = [];
let currentChatId = '';
let currentObjective = null;
let currentTask = null;
let checkCounter = 0;
let lastMessageWasSwipe = false;
const defaultPrompts = {
'createTask': 'Pause your roleplay. Please generate a numbered list of plain text tasks to complete an objective. The objective that you must make a numbered task list for is: "{{objective}}". The tasks created should take into account the character traits of {{char}}. These tasks may or may not involve {{user}} directly. Include the objective as the final task.',
'checkTaskCompleted': 'Pause your roleplay. Determine if this task is completed: [{{task}}]. To do this, examine the most recent messages. Your response must only contain either true or false, and nothing else. Example output: true',
'currentTask': 'Your current task is [{{task}}]. Balance existing roleplay with completing this task.',
};
let objectivePrompts = defaultPrompts;
//###############################//
//# Task Management #//
//###############################//
// Return the task and index or throw an error
function getTaskById(taskId) {
if (taskId == null) {
throw 'Null task id';
}
return getTaskByIdRecurse(taskId, taskTree);
}
function getTaskByIdRecurse(taskId, task) {
if (task.id == taskId) {
return task;
}
for (const childTask of task.children) {
const foundTask = getTaskByIdRecurse(taskId, childTask);
if (foundTask != null) {
return foundTask;
}
}
return null;
}
function substituteParamsPrompts(content, substituteGlobal) {
content = content.replace(/{{objective}}/gi, currentObjective?.description ?? '');
content = content.replace(/{{task}}/gi, currentTask?.description ?? '');
content = content.replace(/{{parent}}/gi, currentTask?.parent?.description ?? '');
if (substituteGlobal) {
content = substituteParams(content);
}
return content;
}
// Call Quiet Generate to create task list using character context, then convert to tasks. Should not be called much.
async function generateTasks() {
const prompt = substituteParamsPrompts(objectivePrompts.createTask, false);
console.log('Generating tasks for objective with prompt');
toastr.info('Generating tasks for objective', 'Please wait...');
const taskResponse = await generateQuietPrompt(prompt);
// Clear all existing objective tasks when generating
currentObjective.children = [];
const numberedListPattern = /^\d+\./;
// Create tasks from generated task list
for (const task of taskResponse.split('\n').map(x => x.trim())) {
if (task.match(numberedListPattern) != null) {
currentObjective.addTask(task.replace(numberedListPattern, '').trim());
}
}
updateUiTaskList();
setCurrentTask();
console.info(`Response for Objective: '${currentObjective.description}' was \n'${taskResponse}', \nwhich created tasks \n${JSON.stringify(currentObjective.children.map(v => { return v.toSaveState(); }), null, 2)} `);
toastr.success(`Generated ${currentObjective.children.length} tasks`, 'Done!');
}
async function markTaskCompleted() {
console.info(`User determined task '${currentTask.description} is completed.`);
currentTask.completeTask();
}
// Call Quiet Generate to check if a task is completed
async function checkTaskCompleted() {
// Make sure there are tasks
if (jQuery.isEmptyObject(currentTask)) {
return;
}
try {
// Wait for group to finish generating
if (selected_group) {
await waitUntilCondition(() => is_group_generating === false, 1000, 10);
}
// Another extension might be doing something with the chat, so wait for it to finish
await waitUntilCondition(() => is_send_press === false, 30000, 10);
} catch {
console.debug('Failed to wait for group to finish generating');
return;
}
checkCounter = $('#objective-check-frequency').val();
toastr.info('Checking for task completion.');
const prompt = substituteParamsPrompts(objectivePrompts.checkTaskCompleted, false);
const taskResponse = (await generateQuietPrompt(prompt)).toLowerCase();
// Check response if task complete
if (taskResponse.includes('true')) {
console.info(`Character determined task '${currentTask.description} is completed.`);
currentTask.completeTask();
} else if (!(taskResponse.includes('false'))) {
console.warn(`checkTaskCompleted response did not contain true or false. taskResponse: ${taskResponse}`);
} else {
console.debug(`Checked task completion. taskResponse: ${taskResponse}`);
}
}
function getNextIncompleteTaskRecurse(task) {
if (task.completed === false // Return task if incomplete
&& task.children.length === 0 // Ensure task has no children, it's subtasks will determine completeness
&& task.parentId !== '' // Must have parent id. Only root task will be missing this and we dont want that
) {
return task;
}
for (const childTask of task.children) {
if (childTask.completed === true) { // Don't recurse into completed tasks
continue;
}
const foundTask = getNextIncompleteTaskRecurse(childTask);
if (foundTask != null) {
return foundTask;
}
}
return null;
}
// Set a task in extensionPrompt context. Defaults to first incomplete
function setCurrentTask(taskId = null, skipSave = false) {
const context = getContext();
// TODO: Should probably null this rather than set empty object
currentTask = {};
// Find the task, either next incomplete, or by provided taskId
if (taskId === null) {
currentTask = getNextIncompleteTaskRecurse(taskTree) || {};
} else {
currentTask = getTaskById(taskId);
}
// Don't just check for a current task, check if it has data
const description = currentTask.description || null;
if (description) {
const extensionPromptText = substituteParamsPrompts(objectivePrompts.currentTask, true);
// Remove highlights
$('.objective-task').css({ 'border-color': '', 'border-width': '' });
// Highlight current task
let highlightTask = currentTask;
while (highlightTask.parentId !== '') {
if (highlightTask.descriptionSpan) {
highlightTask.descriptionSpan.css({ 'border-color': 'yellow', 'border-width': '2px' });
}
const parent = getTaskById(highlightTask.parentId);
highlightTask = parent;
}
// Update the extension prompt
context.setExtensionPrompt(MODULE_NAME, extensionPromptText, 1, $('#objective-chat-depth').val());
console.info(`Current task in context.extensionPrompts.Objective is ${JSON.stringify(context.extensionPrompts.Objective)}`);
} else {
context.setExtensionPrompt(MODULE_NAME, '');
console.info('No current task');
}
// Save state if not skipping
if (!skipSave) {
saveState();
}
}
function getHighestTaskIdRecurse(task) {
let nextId = task.id;
for (const childTask of task.children) {
const childId = getHighestTaskIdRecurse(childTask);
if (childId > nextId) {
nextId = childId;
}
}
return nextId;
}
//###############################//
//# Task Class #//
//###############################//
class ObjectiveTask {
id;
description;
completed;
parentId;
children;
// UI Elements
taskHtml;
descriptionSpan;
completedCheckbox;
deleteTaskButton;
addTaskButton;
moveUpBotton;
moveDownButton;
constructor({ id = undefined, description, completed = false, parentId = '' }) {
this.description = description;
this.parentId = parentId;
this.children = [];
this.completed = completed;
// Generate a new ID if none specified
if (id == undefined) {
this.id = getHighestTaskIdRecurse(taskTree) + 1;
} else {
this.id = id;
}
}
// Accepts optional index. Defaults to adding to end of list.
addTask(description, index = null) {
index = index != null ? index : index = this.children.length;
this.children.splice(index, 0, new ObjectiveTask(
{ description: description, parentId: this.id },
));
saveState();
}
getIndex() {
if (this.parentId !== null) {
const parent = getTaskById(this.parentId);
const index = parent.children.findIndex(task => task.id === this.id);
if (index === -1) {
throw `getIndex failed: Task '${this.description}' not found in parent task '${parent.description}'`;
}
return index;
} else {
throw `getIndex failed: Task '${this.description}' has no parent`;
}
}
// Used to set parent to complete when all child tasks are completed
checkParentComplete() {
let all_completed = true;
if (this.parentId !== '') {
const parent = getTaskById(this.parentId);
for (const child of parent.children) {
if (!child.completed) {
all_completed = false;
break;
}
}
if (all_completed) {
parent.completed = true;
console.info(`Parent task '${parent.description}' completed after all child tasks complated.`);
} else {
parent.completed = false;
}
}
}
// Complete the current task, setting next task to next incomplete task
completeTask() {
this.completed = true;
console.info(`Task successfully completed: ${JSON.stringify(this.description)}`);
this.checkParentComplete();
setCurrentTask();
updateUiTaskList();
}
// Add a single task to the UI and attach event listeners for user edits
addUiElement() {
const template = `
<div id="objective-task-label-${this.id}" class="flex1 checkbox_label alignItemsCenter">
<input id="objective-task-complete-${this.id}" type="checkbox">
<span class="text_pole objective-task" style="display: block" id="objective-task-description-${this.id}" contenteditable>${this.description}</span>
<div id="objective-task-delete-${this.id}" class="objective-task-button fa-solid fa-xmark fa-fw fa-lg" title="Delete Task"></div>
<div id="objective-task-add-${this.id}" class="objective-task-button fa-solid fa-plus fa-fw fa-lg" title="Add Task"></div>
<div id="objective-task-add-branch-${this.id}" class="objective-task-button fa-solid fa-code-fork fa-fw fa-lg" title="Branch Task"></div>
<div id="objective-task-move-up-${this.id}" class="objective-task-button fa-solid fa-arrow-up fa-fw fa-lg" title="Move Up"></div>
<div id="objective-task-move-down-${this.id}" class="objective-task-button fa-solid fa-arrow-down fa-fw fa-lg" title="Move Down"></div>
</div><br>
`;
// Add the filled out template
$('#objective-tasks').append(template);
this.completedCheckbox = $(`#objective-task-complete-${this.id}`);
this.descriptionSpan = $(`#objective-task-description-${this.id}`);
this.addButton = $(`#objective-task-add-${this.id}`);
this.deleteButton = $(`#objective-task-delete-${this.id}`);
this.taskHtml = $(`#objective-task-label-${this.id}`);
this.branchButton = $(`#objective-task-add-branch-${this.id}`);
this.moveUpButton = $(`objective-task-move-up-${this.id}`);
this.moveDownButton = $(`objective-task-move-down-${this.id}`);
// Handle sub-task forking style
if (this.children.length > 0) {
this.branchButton.css({ 'color': '#33cc33' });
} else {
this.branchButton.css({ 'color': '' });
}
const parent = getTaskById(this.parentId);
if (parent) {
let index = parent.children.indexOf(this);
if (index < 1) {
$(`#objective-task-move-up-${this.id}`).removeClass('fa-arrow-up');
} else {
$(`#objective-task-move-up-${this.id}`).addClass('fa-arrow-up');
$(`#objective-task-move-up-${this.id}`).on('click', () => (this.onMoveUpClick()));
}
if (index === (parent.children.length - 1)) {
$(`#objective-task-move-down-${this.id}`).removeClass('fa-arrow-down');
} else {
$(`#objective-task-move-down-${this.id}`).addClass('fa-arrow-down');
$(`#objective-task-move-down-${this.id}`).on('click', () => (this.onMoveDownClick()));
}
}
// Add event listeners and set properties
$(`#objective-task-complete-${this.id}`).prop('checked', this.completed);
$(`#objective-task-complete-${this.id}`).on('click', () => (this.onCompleteClick()));
$(`#objective-task-description-${this.id}`).on('keyup', () => (this.onDescriptionUpdate()));
$(`#objective-task-description-${this.id}`).on('focusout', () => (this.onDescriptionFocusout()));
$(`#objective-task-delete-${this.id}`).on('click', () => (this.onDeleteClick()));
$(`#objective-task-add-${this.id}`).on('click', () => (this.onAddClick()));
this.branchButton.on('click', () => (this.onBranchClick()));
}
onBranchClick() {
currentObjective = this;
updateUiTaskList();
setCurrentTask();
}
complete(completed) {
this.completed = completed;
this.children.forEach(child => child.complete(completed));
}
onCompleteClick() {
this.complete(this.completedCheckbox.prop('checked'));
this.checkParentComplete();
setCurrentTask();
}
onDescriptionUpdate() {
this.description = this.descriptionSpan.text();
}
onDescriptionFocusout() {
setCurrentTask();
}
onDeleteClick() {
const index = this.getIndex();
const parent = getTaskById(this.parentId);
parent.children.splice(index, 1);
updateUiTaskList();
setCurrentTask();
}
onMoveUpClick() {
const parent = getTaskById(this.parentId);
const index = parent.children.indexOf(this);
if (index != 0) {
let temp = parent.children[index - 1];
parent.children[index - 1] = parent.children[index];
parent.children[index] = temp;
updateUiTaskList();
if (currentTask) {
setCurrentTask(currentTask.taskId);
}
}
}
onMoveDownClick() {
const parent = getTaskById(this.parentId);
const index = parent.children.indexOf(this);
if (index < (parent.children.length - 1)) {
let temp = parent.children[index + 1];
parent.children[index + 1] = parent.children[index];
parent.children[index] = temp;
updateUiTaskList();
setCurrentTask();
}
}
onAddClick() {
const index = this.getIndex();
const parent = getTaskById(this.parentId);
parent.addTask('', index + 1);
updateUiTaskList();
setCurrentTask();
}
toSaveStateRecurse() {
let children = [];
if (this.children.length > 0) {
for (const child of this.children) {
children.push(child.toSaveStateRecurse());
}
}
return {
'id': this.id,
'description': this.description,
'completed': this.completed,
'parentId': this.parentId,
'children': children,
};
}
}
//###############################//
//# Custom Prompts #//
//###############################//
function onEditPromptClick() {
let popupText = '';
popupText += `
<div class="objective_prompt_modal">
<small>Edit prompts used by Objective for this session. You can use {{objective}} or {{task}} plus any other standard template variables. Save template to persist changes.</small>
<br>
<div>
<label for="objective-prompt-generate">Generation Prompt</label>
<textarea id="objective-prompt-generate" type="text" class="text_pole textarea_compact" rows="8"></textarea>
<label for="objective-prompt-check">Completion Check Prompt</label>
<textarea id="objective-prompt-check" type="text" class="text_pole textarea_compact" rows="8"></textarea>
<label for="objective-prompt-extension-prompt">Injected Prompt</label>
<textarea id="objective-prompt-extension-prompt" type="text" class="text_pole textarea_compact" rows="8"></textarea>
</div>
<div class="objective_prompt_block">
<label for="objective-custom-prompt-select">Custom Prompt Select</label>
<select id="objective-custom-prompt-select"><select>
</div>
<div class="objective_prompt_block">
<input id="objective-custom-prompt-new" class="menu_button" type="submit" value="New Prompt" />
<input id="objective-custom-prompt-save" class="menu_button" type="submit" value="Save Prompt" />
<input id="objective-custom-prompt-delete" class="menu_button" type="submit" value="Delete Prompt" />
</div>
</div>`;
callPopup(popupText, 'text');
populateCustomPrompts();
// Set current values
$('#objective-prompt-generate').val(objectivePrompts.createTask);
$('#objective-prompt-check').val(objectivePrompts.checkTaskCompleted);
$('#objective-prompt-extension-prompt').val(objectivePrompts.currentTask);
// Handle value updates
$('#objective-prompt-generate').on('input', () => {
objectivePrompts.createTask = $('#objective-prompt-generate').val();
});
$('#objective-prompt-check').on('input', () => {
objectivePrompts.checkTaskCompleted = $('#objective-prompt-check').val();
});
$('#objective-prompt-extension-prompt').on('input', () => {
objectivePrompts.currentTask = $('#objective-prompt-extension-prompt').val();
});
// Handle new
$('#objective-custom-prompt-new').on('click', () => {
newCustomPrompt();
});
// Handle save
$('#objective-custom-prompt-save').on('click', () => {
saveCustomPrompt();
});
// Handle delete
$('#objective-custom-prompt-delete').on('click', () => {
deleteCustomPrompt();
});
// Handle load
$('#objective-custom-prompt-select').on('change', loadCustomPrompt);
}
async function newCustomPrompt() {
const customPromptName = await callPopup('<h3>Custom Prompt name:</h3>', 'input');
if (customPromptName == '') {
toastr.warning('Please set custom prompt name to save.');
return;
}
if (customPromptName == 'default') {
toastr.error('Cannot save over default prompt');
return;
}
extension_settings.objective.customPrompts[customPromptName] = {};
Object.assign(extension_settings.objective.customPrompts[customPromptName], objectivePrompts);
saveSettingsDebounced();
populateCustomPrompts();
}
function saveCustomPrompt() {
const customPromptName = $('#objective-custom-prompt-select').find(':selected').val();
if (customPromptName == 'default') {
toastr.error('Cannot save over default prompt');
return;
}
Object.assign(extension_settings.objective.customPrompts[customPromptName], objectivePrompts);
saveSettingsDebounced();
populateCustomPrompts();
}
function deleteCustomPrompt() {
const customPromptName = $('#objective-custom-prompt-select').find(':selected').val();
if (customPromptName == 'default') {
toastr.error('Cannot delete default prompt');
return;
}
delete extension_settings.objective.customPrompts[customPromptName];
saveSettingsDebounced();
populateCustomPrompts();
loadCustomPrompt();
}
function loadCustomPrompt() {
const optionSelected = $('#objective-custom-prompt-select').find(':selected').val();
Object.assign(objectivePrompts, extension_settings.objective.customPrompts[optionSelected]);
$('#objective-prompt-generate').val(objectivePrompts.createTask);
$('#objective-prompt-check').val(objectivePrompts.checkTaskCompleted);
$('#objective-prompt-extension-prompt').val(objectivePrompts.currentTask);
}
function populateCustomPrompts() {
// Populate saved prompts
$('#objective-custom-prompt-select').empty();
for (const customPromptName in extension_settings.objective.customPrompts) {
const option = document.createElement('option');
option.innerText = customPromptName;
option.value = customPromptName;
option.selected = customPromptName;
$('#objective-custom-prompt-select').append(option);
}
}
//###############################//
//# UI AND Settings #//
//###############################//
const defaultSettings = {
currentObjectiveId: null,
taskTree: null,
chatDepth: 2,
checkFrequency: 3,
hideTasks: false,
prompts: defaultPrompts,
};
// Convenient single call. Not much at the moment.
function resetState() {
lastMessageWasSwipe = false;
loadSettings();
}
//
function saveState() {
const context = getContext();
if (currentChatId == '') {
currentChatId = context.chatId;
}
chat_metadata['objective'] = {
currentObjectiveId: currentObjective.id,
taskTree: taskTree.toSaveStateRecurse(),
checkFrequency: $('#objective-check-frequency').val(),
chatDepth: $('#objective-chat-depth').val(),
hideTasks: $('#objective-hide-tasks').prop('checked'),
prompts: objectivePrompts,
};
saveMetadataDebounced();
}
// Dump core state
function debugObjectiveExtension() {
console.log(JSON.stringify({
'currentTask': currentTask,
'currentObjective': currentObjective,
'taskTree': taskTree.toSaveStateRecurse(),
'chat_metadata': chat_metadata['objective'],
'extension_settings': extension_settings['objective'],
'prompts': objectivePrompts,
}, null, 2));
}
window.debugObjectiveExtension = debugObjectiveExtension;
// Populate UI task list
function updateUiTaskList() {
$('#objective-tasks').empty();
// Show button to navigate back to parent objective if parent exists
if (currentObjective) {
if (currentObjective.parentId !== '') {
$('#objective-parent').show();
} else {
$('#objective-parent').hide();
}
}
$('#objective-text').val(currentObjective.description);
if (currentObjective.children.length > 0) {
// Show tasks if there are any to show
for (const task of currentObjective.children) {
task.addUiElement();
}
} else {
// Show button to add tasks if there are none
$('#objective-tasks').append(`
<input id="objective-task-add-first" type="button" class="menu_button" value="Add Task">
`);
$('#objective-task-add-first').on('click', () => {
currentObjective.addTask('');
setCurrentTask();
updateUiTaskList();
});
}
}
function onParentClick() {
currentObjective = getTaskById(currentObjective.parentId);
updateUiTaskList();
setCurrentTask();
}
// Trigger creation of new tasks with given objective.
async function onGenerateObjectiveClick() {
await generateTasks();
saveState();
}
// Update extension prompts
function onChatDepthInput() {
saveState();
setCurrentTask(); // Ensure extension prompt is updated
}
function onObjectiveTextFocusOut() {
if (currentObjective) {
currentObjective.description = $('#objective-text').val();
saveState();
}
}
// Update how often we check for task completion
function onCheckFrequencyInput() {
checkCounter = $('#objective-check-frequency').val();
$('#objective-counter').text(checkCounter);
saveState();
}
function onHideTasksInput() {
$('#objective-tasks').prop('hidden', $('#objective-hide-tasks').prop('checked'));
saveState();
}
function loadTaskChildrenRecurse(savedTask) {
let tempTaskTree = new ObjectiveTask({
id: savedTask.id,
description: savedTask.description,
completed: savedTask.completed,
parentId: savedTask.parentId,
});
for (const task of savedTask.children) {
const childTask = loadTaskChildrenRecurse(task);
tempTaskTree.children.push(childTask);
}
return tempTaskTree;
}
function loadSettings() {
// Load/Init settings for chatId
currentChatId = getContext().chatId;
// Reset Objectives and Tasks in memory
taskTree = null;
currentObjective = null;
// Init extension settings
if (Object.keys(extension_settings.objective).length === 0) {
Object.assign(extension_settings.objective, { 'customPrompts': { 'default': defaultPrompts } });
}
// Generate a temporary chatId if none exists
if (currentChatId == undefined) {
currentChatId = 'no-chat-id';
}
// Migrate existing settings
if (currentChatId in extension_settings.objective) {
// TODO: Remove this soon
chat_metadata['objective'] = extension_settings.objective[currentChatId];
delete extension_settings.objective[currentChatId];
}
if (!('objective' in chat_metadata)) {
Object.assign(chat_metadata, { objective: defaultSettings });
}
// Migrate legacy flat objective to new objectiveTree and currentObjective
if ('objective' in chat_metadata.objective) {
// Create root objective from legacy objective
taskTree = new ObjectiveTask({ id: 0, description: chat_metadata.objective.objective });
currentObjective = taskTree;
// Populate root objective tree from legacy tasks
if ('tasks' in chat_metadata.objective) {
let idIncrement = 0;
taskTree.children = chat_metadata.objective.tasks.map(task => {
idIncrement += 1;
return new ObjectiveTask({
id: idIncrement,
description: task.description,
completed: task.completed,
parentId: taskTree.id,
});
});
}
saveState();
delete chat_metadata.objective.objective;
delete chat_metadata.objective.tasks;
} else {
// Load Objectives and Tasks (Normal path)
if (chat_metadata.objective.taskTree) {
taskTree = loadTaskChildrenRecurse(chat_metadata.objective.taskTree);
}
}
// Make sure there's a root task
if (!taskTree) {
taskTree = new ObjectiveTask({ id: 0, description: $('#objective-text').val() });
}
currentObjective = taskTree;
checkCounter = chat_metadata['objective'].checkFrequency;
// Update UI elements
$('#objective-counter').text(checkCounter);
$('#objective-text').text(taskTree.description);
updateUiTaskList();
$('#objective-chat-depth').val(chat_metadata['objective'].chatDepth);
$('#objective-check-frequency').val(chat_metadata['objective'].checkFrequency);
$('#objective-hide-tasks').prop('checked', chat_metadata['objective'].hideTasks);
$('#objective-tasks').prop('hidden', $('#objective-hide-tasks').prop('checked'));
setCurrentTask(null, true);
}
function addManualTaskCheckUi() {
const getWandContainer = () => $(document.getElementById('objective_wand_container') ?? document.getElementById('extensionsMenu'));
const container = getWandContainer();
container.append(`
<div id="objective-task-manual-check-menu-item" class="list-group-item flex-container flexGap5">
<div id="objective-task-manual-check" class="extensionsMenuExtensionButton fa-regular fa-square-check"/></div>
Manual Task Check
</div>`);
container.append(`
<div id="objective-task-complete-current-menu-item" class="list-group-item flex-container flexGap5">
<div id="objective-task-complete-current" class="extensionsMenuExtensionButton fa-regular fa-list-check"/></div>
Complete Current Task
</div>`);
$('#objective-task-manual-check-menu-item').attr('title', 'Trigger AI check of completed tasks').on('click', checkTaskCompleted);
$('#objective-task-complete-current-menu-item').attr('title', 'Mark the current task as completed.').on('click', markTaskCompleted);
}
function doPopout(e) {
const target = e.target;
//repurposes the zoomed avatar template to server as a floating div
if ($('#objectiveExtensionPopout').length === 0) {
console.debug('did not see popout yet, creating');
const originalHTMLClone = $(target).parent().parent().parent().find('.inline-drawer-content').html();
const originalElement = $(target).parent().parent().parent().find('.inline-drawer-content');
const template = $('#zoomed_avatar_template').html();
const controlBarHtml = `<div class="panelControlBar flex-container">
<div id="objectiveExtensionPopoutheader" class="fa-solid fa-grip drag-grabber hoverglow"></div>
<div id="objectiveExtensionPopoutClose" class="fa-solid fa-circle-xmark hoverglow dragClose"></div>
</div>`;
const newElement = $(template);
newElement.attr('id', 'objectiveExtensionPopout')
.removeClass('zoomed_avatar')
.addClass('draggable')
.empty();
originalElement.html('<div class="flex-container alignitemscenter justifyCenter wide100p"><small>Currently popped out</small></div>');
newElement.append(controlBarHtml).append(originalHTMLClone);
$('#movingDivs').append(newElement);
$('#objectiveExtensionDrawerContents').addClass('scrollY');
loadSettings();
loadMovingUIState();
$('#objectiveExtensionPopout').css('display', 'flex').fadeIn(animation_duration);
dragElement(newElement);
//setup listener for close button to restore extensions menu
$('#objectiveExtensionPopoutClose').off('click').on('click', function () {
$('#objectiveExtensionDrawerContents').removeClass('scrollY');
const objectivePopoutHTML = $('#objectiveExtensionDrawerContents');
$('#objectiveExtensionPopout').fadeOut(animation_duration, () => {
originalElement.empty();
originalElement.html(objectivePopoutHTML);
$('#objectiveExtensionPopout').remove();
});
loadSettings();
});
} else {
console.debug('saw existing popout, removing');
$('#objectiveExtensionPopout').fadeOut(animation_duration, () => { $('#objectiveExtensionPopoutClose').trigger('click'); });
}
}
jQuery(async () => {
const settingsHtml = await renderExtensionTemplateAsync('third-party/Extension-Objective', 'settings');
addManualTaskCheckUi();
const getContainer = () => $(document.getElementById('objective_container') ?? document.getElementById('extensions_settings'));
getContainer().append(settingsHtml);
$(document).on('click', '#objective-generate', onGenerateObjectiveClick);
$(document).on('input', '#objective-chat-depth', onChatDepthInput);
$(document).on('input', '#objective-check-frequency', onCheckFrequencyInput);
$(document).on('click', '#objective-hide-tasks', onHideTasksInput);
$(document).on('click', '#objective_prompt_edit', onEditPromptClick);
$(document).on('click', '#objective-parent', onParentClick);
$(document).on('focusout', '#objective-text', onObjectiveTextFocusOut);
$(document).on('click', '#objectiveExtensionPopoutButton', function (e) {
doPopout(e);
e.stopPropagation();
});
$('#objective-parent').hide();
loadSettings();
eventSource.on(event_types.CHAT_CHANGED, () => {
resetState();
});
eventSource.on(event_types.MESSAGE_SWIPED, () => {
lastMessageWasSwipe = true;
});
eventSource.on(event_types.MESSAGE_RECEIVED, () => {
if (currentChatId == undefined || jQuery.isEmptyObject(currentTask) || lastMessageWasSwipe) {
lastMessageWasSwipe = false;
return;
}
if ($('#objective-check-frequency').val() > 0) {
// Check only at specified interval
if (checkCounter <= 0) {
checkTaskCompleted();
}
checkCounter -= 1;
}
setCurrentTask();
$('#objective-counter').text(checkCounter);
});
registerSlashCommand('taskcheck', checkTaskCompleted, [], '– checks if the current task is completed', true, true);
});