64 lines
2.0 KiB
JavaScript
64 lines
2.0 KiB
JavaScript
function saveButtonEvent(){
|
|
const input = document.createElement("input");
|
|
input.type = "hidden";
|
|
input.name = "publish";
|
|
input.value = "true";
|
|
|
|
const form = document.querySelector('#assistant-form form');
|
|
|
|
const submitButton = document.getElementById('save-assistant-button');
|
|
const publishButton = document.getElementById('save-publish-assistant-button');
|
|
if (publishButton) {
|
|
publishButton.addEventListener('click', function(e){
|
|
form.appendChild(input);
|
|
submitButton.click();
|
|
form.removeChild(input);
|
|
});
|
|
}
|
|
|
|
$('#theme-buttons button').on('click', changeMiniProgramTheme);
|
|
$('#icon-buttons svg').on('click', changeMiniProgramIcon);
|
|
$('#save-icon-button').on('click', saveMiniProgramIcon);
|
|
}
|
|
|
|
saveButtonEvent();
|
|
window.afterPageUpdate = saveButtonEvent;
|
|
|
|
let selectedTheme = iconTheme ?? 7;
|
|
let selectedIcon = iconName ?? 'coding';
|
|
|
|
function changeMiniProgramTheme(event)
|
|
{
|
|
const $icon = $('#preview-icon');
|
|
const $button = $(event.target).closest('button');
|
|
const $prev = $('.theme-checked');
|
|
$prev.removeClass('theme-checked');
|
|
$button.addClass('theme-checked');
|
|
$prev.empty();
|
|
$button.append(iconCheck);
|
|
$icon.css('background-color', $button.css('background-color'));
|
|
$icon.css('border', $button.css('border'));
|
|
selectedTheme = $button.index();
|
|
}
|
|
|
|
function changeMiniProgramIcon(event)
|
|
{
|
|
const $icon = $('#preview-icon');
|
|
const $svg = $(event.target).closest('svg').clone();
|
|
$icon.empty();
|
|
$icon.append($svg);
|
|
selectedIcon = $svg.prop('id');
|
|
}
|
|
|
|
function saveMiniProgramIcon()
|
|
{
|
|
const $editIcon = $('#ai-edit-icon');
|
|
$editIcon.children().first('svg').remove();
|
|
const $icon = $('#preview-icon');
|
|
$editIcon.prepend($icon.find('svg').clone());
|
|
$editIcon.css('background-color', $icon.css('background-color'));
|
|
$editIcon.css('border', $icon.css('border'));
|
|
$('input[name="iconTheme"]').prop('value', selectedTheme);
|
|
$('input[name="iconName"]').prop('value', selectedIcon);
|
|
}
|