2020-05-23 19:53:09 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Hunter Salyer <thefalsehonesty@gmail.com>
|
2021-08-24 17:57:57 +03:00
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
2020-05-23 19:53:09 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-23 19:53:09 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ConsoleWidget.h"
|
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <LibGUI/BoxLayout.h>
|
2020-05-29 23:00:18 +03:00
|
|
|
#include <LibGUI/Button.h>
|
2020-05-23 19:53:09 +03:00
|
|
|
#include <LibGUI/TextBox.h>
|
2020-12-29 20:25:13 +03:00
|
|
|
#include <LibGfx/FontDatabase.h>
|
2020-05-25 22:24:46 +03:00
|
|
|
#include <LibJS/MarkupGenerator.h>
|
2021-02-07 18:56:02 +03:00
|
|
|
#include <LibJS/SyntaxHighlighter.h>
|
2020-05-23 19:53:09 +03:00
|
|
|
|
|
|
|
namespace Browser {
|
|
|
|
|
|
|
|
ConsoleWidget::ConsoleWidget()
|
|
|
|
{
|
|
|
|
set_layout<GUI::VerticalBoxLayout>();
|
|
|
|
set_fill_with_background_color(true);
|
|
|
|
|
2021-08-24 17:57:57 +03:00
|
|
|
m_output_view = add<Web::OutOfProcessWebView>();
|
|
|
|
m_output_view->load("data:text/html,<html></html>");
|
2020-05-23 19:53:09 +03:00
|
|
|
|
2020-05-29 23:00:18 +03:00
|
|
|
auto& bottom_container = add<GUI::Widget>();
|
|
|
|
bottom_container.set_layout<GUI::HorizontalBoxLayout>();
|
2020-12-30 03:23:32 +03:00
|
|
|
bottom_container.set_fixed_height(22);
|
2020-05-29 23:00:18 +03:00
|
|
|
|
|
|
|
m_input = bottom_container.add<GUI::TextBox>();
|
2021-02-07 18:56:02 +03:00
|
|
|
m_input->set_syntax_highlighter(make<JS::SyntaxHighlighter>());
|
2020-05-23 19:53:09 +03:00
|
|
|
// FIXME: Syntax Highlighting breaks the cursor's position on non fixed-width fonts.
|
2020-12-29 20:25:13 +03:00
|
|
|
m_input->set_font(Gfx::FontDatabase::default_fixed_width_font());
|
2020-05-27 05:18:25 +03:00
|
|
|
m_input->set_history_enabled(true);
|
2020-05-23 19:53:09 +03:00
|
|
|
|
2020-05-27 05:18:25 +03:00
|
|
|
m_input->on_return_pressed = [this] {
|
|
|
|
auto js_source = m_input->text();
|
2020-05-25 04:35:46 +03:00
|
|
|
|
|
|
|
// FIXME: An is_blank check to check if there is only whitespace would probably be preferable.
|
|
|
|
if (js_source.is_empty())
|
|
|
|
return;
|
|
|
|
|
2020-05-27 05:18:25 +03:00
|
|
|
m_input->add_current_text_to_history();
|
|
|
|
m_input->clear();
|
|
|
|
|
2020-05-23 19:53:09 +03:00
|
|
|
print_source_line(js_source);
|
|
|
|
|
2021-02-28 06:53:20 +03:00
|
|
|
if (on_js_input)
|
|
|
|
on_js_input(js_source);
|
2020-05-23 19:53:09 +03:00
|
|
|
};
|
2020-05-29 23:00:18 +03:00
|
|
|
|
2020-10-30 12:58:27 +03:00
|
|
|
set_focus_proxy(m_input);
|
|
|
|
|
2020-05-29 23:00:18 +03:00
|
|
|
auto& clear_button = bottom_container.add<GUI::Button>();
|
2020-12-30 03:23:32 +03:00
|
|
|
clear_button.set_fixed_size(22, 22);
|
2021-07-21 19:02:15 +03:00
|
|
|
clear_button.set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/delete.png"));
|
2020-05-29 23:00:18 +03:00
|
|
|
clear_button.set_tooltip("Clear the console output");
|
|
|
|
clear_button.on_click = [this](auto) {
|
|
|
|
clear_output();
|
|
|
|
};
|
2020-05-23 19:53:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ConsoleWidget::~ConsoleWidget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-02-28 06:53:20 +03:00
|
|
|
void ConsoleWidget::handle_js_console_output(const String& method, const String& line)
|
|
|
|
{
|
|
|
|
if (method == "html") {
|
|
|
|
print_html(line);
|
|
|
|
} else if (method == "clear") {
|
|
|
|
clear_output();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-23 19:53:09 +03:00
|
|
|
void ConsoleWidget::print_source_line(const StringView& source)
|
|
|
|
{
|
|
|
|
StringBuilder html;
|
2020-05-25 04:35:46 +03:00
|
|
|
html.append("<span class=\"repl-indicator\">");
|
2020-05-23 19:53:09 +03:00
|
|
|
html.append("> ");
|
2020-05-25 04:35:46 +03:00
|
|
|
html.append("</span>");
|
|
|
|
|
2020-05-25 18:46:10 +03:00
|
|
|
html.append(JS::MarkupGenerator::html_from_source(source));
|
2020-05-23 19:53:09 +03:00
|
|
|
|
|
|
|
print_html(html.string_view());
|
|
|
|
}
|
|
|
|
|
2021-08-24 17:57:57 +03:00
|
|
|
void ConsoleWidget::print_html(StringView const& line)
|
2020-05-23 19:53:09 +03:00
|
|
|
{
|
2021-08-24 17:57:57 +03:00
|
|
|
StringBuilder builder;
|
|
|
|
builder.append(R"~~~(
|
|
|
|
var p = document.createElement("p");
|
|
|
|
p.innerHTML = ")~~~");
|
|
|
|
builder.append_escaped_for_json(line);
|
|
|
|
builder.append(R"~~~("
|
|
|
|
document.body.appendChild(p);
|
|
|
|
)~~~");
|
|
|
|
m_output_view->run_javascript(builder.string_view());
|
2020-05-27 05:18:25 +03:00
|
|
|
m_output_view->scroll_to_bottom();
|
2020-05-23 19:53:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConsoleWidget::clear_output()
|
|
|
|
{
|
2021-08-24 17:57:57 +03:00
|
|
|
m_output_view->run_javascript(R"~~~(
|
|
|
|
document.body.innerHTML = "";
|
|
|
|
)~~~");
|
2020-05-23 19:53:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|