mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-26 17:28:47 +08:00
86080b0ccf
This is WIP. Help make the translations better.
98 lines
3.8 KiB
JavaScript
98 lines
3.8 KiB
JavaScript
/**
|
|
* Copyright (C) 2024 Puter Technologies Inc.
|
|
*
|
|
* This file is part of Puter.
|
|
*
|
|
* Puter is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import UIWindow from './UIWindow.js'
|
|
|
|
async function UIWindowQR(options){
|
|
return new Promise(async (resolve) => {
|
|
options = options ?? {};
|
|
|
|
let h = '';
|
|
h += `<div style="padding: 20px; margin-top: 0;">`;
|
|
// success
|
|
h += `<div class="feedback-sent-success">`;
|
|
h += `<img src="${html_encode(window.icons['c-check.svg'])}" style="width:50px; height:50px; display: block; margin:10px auto;">`;
|
|
h += `<p style="text-align:center; margin-bottom:10px; color: #005300; padding: 10px;">${i18n('feedback_sent_confirmation')}</p>`;
|
|
h+= `</div>`;
|
|
// form
|
|
h += `<div class="feedback-form">`;
|
|
h += `<p style="margin-top:0; font-size: 15px; -webkit-font-smoothing: antialiased;">${i18n('feedback_c2a')}</p>`;
|
|
h += `<textarea class="feedback-message" style="width:100%; height: 200px; padding: 10px; box-sizing: border-box;"></textarea>`;
|
|
h += `<button class="button button-primary send-feedback-btn" style="float: right; margin-bottom: 15px; margin-top: 10px;">${i18n('send')}</button>`;
|
|
h += `</div>`;
|
|
h += `</div>`;
|
|
|
|
const el_window = await UIWindow({
|
|
title: i18n('contact_us'),
|
|
app: 'feedback',
|
|
single_instance: true,
|
|
icon: null,
|
|
uid: null,
|
|
is_dir: false,
|
|
body_content: h,
|
|
has_head: true,
|
|
selectable_body: false,
|
|
draggable_body: false,
|
|
allow_context_menu: false,
|
|
is_resizable: false,
|
|
is_droppable: false,
|
|
init_center: true,
|
|
allow_native_ctxmenu: false,
|
|
allow_user_select: false,
|
|
width: 350,
|
|
height: 'auto',
|
|
dominant: true,
|
|
show_in_taskbar: false,
|
|
onAppend: function(this_window){
|
|
$(this_window).find('.feedback-message').get(0).focus({preventScroll:true});
|
|
},
|
|
window_class: 'window-feedback',
|
|
body_css: {
|
|
width: 'initial',
|
|
height: '100%',
|
|
'background-color': 'rgb(245 247 249)',
|
|
'backdrop-filter': 'blur(3px)',
|
|
}
|
|
})
|
|
|
|
$(el_window).find('.send-feedback-btn').on('click', function(e){
|
|
const message = $(el_window).find('.feedback-message').val();
|
|
if(message)
|
|
$(this).prop('disabled', true);
|
|
$.ajax({
|
|
url: api_origin + "/contactUs",
|
|
type: 'POST',
|
|
async: true,
|
|
contentType: "application/json",
|
|
headers: {
|
|
"Authorization": "Bearer "+auth_token
|
|
},
|
|
data: JSON.stringify({
|
|
message: message,
|
|
}),
|
|
success: async function (data){
|
|
$(el_window).find('.feedback-form').hide();
|
|
$(el_window).find('.feedback-sent-success').show(100);
|
|
}
|
|
})
|
|
})
|
|
})
|
|
}
|
|
|
|
export default UIWindowQR |