- Create extension for generating dynamic chat bubble images via markdown - Add function that AI models can call to generate properly formatted markdown links - Implement URL encoding for text parameters - Add configurable settings for image service URL and bubble styles - Include test functionality to preview generated bubble markdown 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
130 lines
4.2 KiB
JavaScript
130 lines
4.2 KiB
JavaScript
// SillyBubble - Dynamic Chat Bubble Image Generation Extension
|
|
import { extension_settings, getContext, loadExtensionSettings, registerCustomFunction } from "../../../extensions.js";
|
|
import { saveSettingsDebounced, callPopup, substituteParams } from "../../../../script.js";
|
|
|
|
// Extension configuration
|
|
const extensionName = "SillyBubble";
|
|
const extensionFolderPath = `scripts/extensions/third-party/${extensionName}`;
|
|
const extensionSettings = extension_settings[extensionName];
|
|
const defaultSettings = {
|
|
image_service_url: "image.php",
|
|
default_style: "default",
|
|
enabled: true
|
|
};
|
|
|
|
// Function for AI to call - generates markdown image with URL-encoded text
|
|
function generateChatBubbleImage(text, style) {
|
|
if (!extensionSettings.enabled) {
|
|
return text;
|
|
}
|
|
|
|
// Use default style if not specified
|
|
const bubbleStyle = style || extensionSettings.default_style;
|
|
|
|
// URL encode the text parameter
|
|
const encodedText = encodeURIComponent(text);
|
|
|
|
// Construct the URL with the encoded text
|
|
const imageUrl = `${extensionSettings.image_service_url}?q=${encodedText}`;
|
|
|
|
// Add style parameter if specified
|
|
const fullUrl = bubbleStyle !== "default"
|
|
? `${imageUrl}&style=${bubbleStyle}`
|
|
: imageUrl;
|
|
|
|
// Return markdown image format
|
|
return ``;
|
|
}
|
|
|
|
// Load extension settings
|
|
async function loadSettings() {
|
|
extension_settings[extensionName] = extension_settings[extensionName] || {};
|
|
if (Object.keys(extension_settings[extensionName]).length === 0) {
|
|
Object.assign(extension_settings[extensionName], defaultSettings);
|
|
}
|
|
|
|
// Update UI with current settings
|
|
$("#sillybubble_enabled").prop("checked", extensionSettings.enabled).trigger("input");
|
|
$("#sillybubble_image_url").val(extensionSettings.image_service_url).trigger("input");
|
|
$("#sillybubble_default_style").val(extensionSettings.default_style).trigger("input");
|
|
}
|
|
|
|
// Handle enable/disable toggle
|
|
function onEnabledInput(event) {
|
|
const value = Boolean($(event.target).prop("checked"));
|
|
extensionSettings.enabled = value;
|
|
saveSettingsDebounced();
|
|
}
|
|
|
|
// Handle image service URL changes
|
|
function onImageUrlInput(event) {
|
|
const value = $(event.target).val();
|
|
extensionSettings.image_service_url = value;
|
|
saveSettingsDebounced();
|
|
}
|
|
|
|
// Handle default style changes
|
|
function onDefaultStyleInput(event) {
|
|
const value = $(event.target).val();
|
|
extensionSettings.default_style = value;
|
|
saveSettingsDebounced();
|
|
}
|
|
|
|
// Test function to visualize a bubble
|
|
function onTestButtonClick() {
|
|
const testText = "This is a test chat bubble generated by SillyBubble!";
|
|
const markdown = generateChatBubbleImage(testText);
|
|
const testPopup = `
|
|
<div class="sillybubble-test">
|
|
<p>Generated Markdown:</p>
|
|
<pre>${markdown.replace(/</g, '<').replace(/>/g, '>')}</pre>
|
|
<p>Preview (if connected to image service):</p>
|
|
<div>${markdown}</div>
|
|
</div>
|
|
`;
|
|
callPopup(testPopup, 'text');
|
|
}
|
|
|
|
// Initialize extension
|
|
jQuery(async () => {
|
|
// Load settings HTML
|
|
const settingsHtml = await $.get(`${extensionFolderPath}/example.html`);
|
|
// Visual extensions go in the right column (extensions_settings2)
|
|
$("#extensions_settings2").append(settingsHtml);
|
|
|
|
// Register event listeners
|
|
$("#sillybubble_enabled").on("input", onEnabledInput);
|
|
$("#sillybubble_image_url").on("input", onImageUrlInput);
|
|
$("#sillybubble_default_style").on("input", onDefaultStyleInput);
|
|
$("#sillybubble_test_button").on("click", onTestButtonClick);
|
|
|
|
// Register the custom function for AI to call
|
|
registerCustomFunction({
|
|
name: 'generateChatBubbleImage',
|
|
displayName: 'Generate Chat Bubble Image',
|
|
description: 'Creates a markdown image link with URL-encoded text parameter for dynamic chat bubbles',
|
|
parameters: [
|
|
{
|
|
name: 'text',
|
|
displayName: 'Text',
|
|
description: 'The text to display in the chat bubble',
|
|
type: 'string',
|
|
required: true,
|
|
},
|
|
{
|
|
name: 'style',
|
|
displayName: 'Style',
|
|
description: 'The visual style of the chat bubble (optional)',
|
|
type: 'string',
|
|
required: false,
|
|
}
|
|
],
|
|
run: async function(text, style) {
|
|
return generateChatBubbleImage(text, style);
|
|
}
|
|
});
|
|
|
|
// Load settings
|
|
loadSettings();
|
|
});
|