#include "content/views/view_settings.hpp"

#include <hex/api/content_registry.hpp>
#include <hex/helpers/logger.hpp>

#include <nlohmann/json.hpp>

#include <popups/popup_question.hpp>

namespace hex::plugin::builtin {

    ViewSettings::ViewSettings() : View::Modal("hex.builtin.view.settings.name") {
        // Handle window open requests
        RequestOpenWindow::subscribe(this, [this](const std::string &name) {
            if (name == "Settings") {
                TaskManager::doLater([this] {
                    this->getWindowOpenState() = true;
                });
            }
        });

        // Add the settings menu item to the Extras menu
        ContentRegistry::Interface::addMenuItemSeparator({ "hex.builtin.menu.extras" }, 3000);
        ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.extras", "hex.builtin.view.settings.name" }, 4000, Shortcut::None, [&, this] {
            this->getWindowOpenState() = true;
        });
    }

    ViewSettings::~ViewSettings() {
        RequestOpenWindow::unsubscribe(this);
    }

    void ViewSettings::drawContent() {
        if (ImGui::BeginTabBar("settings")) {
            auto &categories = ContentRegistry::Settings::impl::getSettings();

            // Draw all categories
            for (auto &category : categories) {

                // Skip empty categories
                if (category.subCategories.empty())
                    continue;

                // For each category, create a new tab
                if (ImGui::BeginTabItem(Lang(category.unlocalizedName))) {
                    if (ImGui::BeginChild("scrolling")) {

                        // Draw the category description
                        if (!category.unlocalizedDescription.empty()) {
                            ImGuiExt::TextFormattedWrapped("{}", Lang(category.unlocalizedDescription));
                            ImGui::NewLine();
                        }

                        // Draw all settings of that category
                        for (auto &subCategory : category.subCategories) {

                            // Skip empty subcategories
                            if (subCategory.entries.empty())
                                continue;

                            ImGuiExt::BeginSubWindow(Lang(subCategory.unlocalizedName));
                            {
                                for (auto &setting : subCategory.entries) {
                                    ImGui::BeginDisabled(!setting.widget->isEnabled());
                                    ImGui::PushItemWidth(-200_scaled);
                                    bool settingChanged = setting.widget->draw(Lang(setting.unlocalizedName));
                                    ImGui::PopItemWidth();
                                    ImGui::EndDisabled();

                                    if (auto tooltip = setting.widget->getTooltip(); tooltip.has_value() && ImGui::IsItemHovered())
                                        ImGuiExt::InfoTooltip(Lang(tooltip.value()));

                                    auto &widget = setting.widget;

                                    // Handle a setting being changed
                                    if (settingChanged) {
                                        auto newValue = widget->store();

                                        // Write new value to settings
                                        ContentRegistry::Settings::write(category.unlocalizedName, setting.unlocalizedName, newValue);

                                        // Print a debug message
                                        log::debug("Setting [{} / {}]: Value was changed to {}", category.unlocalizedName.get(), setting.unlocalizedName.get(), nlohmann::to_string(newValue));

                                        // Signal that the setting was changed
                                        EventSettingsChanged::post();
                                        widget->onChanged();

                                        // Request a restart if the setting requires it
                                        if (widget->doesRequireRestart()) {
                                            m_restartRequested = true;
                                            m_triggerPopup = true;
                                        }
                                    }
                                }
                            }
                            ImGuiExt::EndSubWindow();
                        }
                    }
                    ImGui::EndChild();

                    ImGui::EndTabItem();
                }
            }

            ImGui::EndTabBar();
        }
    }

    void ViewSettings::drawAlwaysVisibleContent() {
        // If a restart is required, ask the user if they want to restart
        if (!this->getWindowOpenState() && m_triggerPopup) {
            m_triggerPopup = false;
            ui::PopupQuestion::open("hex.builtin.view.settings.restart_question"_lang,
                ImHexApi::System::restartImHex,
                [this]{
                    m_restartRequested = false;
                }
            );
        }
    }


}