mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 19:07:15 +03:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
95 lines
2.4 KiB
C++
95 lines
2.4 KiB
C++
/*
|
|
* Copyright (c) 2022, Valtteri Koskivuori <vkoskiv@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "StorageModel.h"
|
|
|
|
#include <AK/FuzzyMatch.h>
|
|
|
|
namespace Browser {
|
|
|
|
void StorageModel::set_items(OrderedHashMap<DeprecatedString, DeprecatedString> map)
|
|
{
|
|
begin_insert_rows({}, m_local_storage_entries.size(), m_local_storage_entries.size());
|
|
m_local_storage_entries = map;
|
|
end_insert_rows();
|
|
|
|
did_update(DontInvalidateIndices);
|
|
}
|
|
|
|
void StorageModel::clear_items()
|
|
{
|
|
begin_insert_rows({}, m_local_storage_entries.size(), m_local_storage_entries.size());
|
|
m_local_storage_entries.clear();
|
|
end_insert_rows();
|
|
|
|
did_update(DontInvalidateIndices);
|
|
}
|
|
|
|
int StorageModel::row_count(GUI::ModelIndex const& index) const
|
|
{
|
|
if (!index.is_valid())
|
|
return m_local_storage_entries.size();
|
|
return 0;
|
|
}
|
|
|
|
DeprecatedString StorageModel::column_name(int column) const
|
|
{
|
|
switch (column) {
|
|
case Column::Key:
|
|
return "Key";
|
|
case Column::Value:
|
|
return "Value";
|
|
case Column::__Count:
|
|
return {};
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
GUI::ModelIndex StorageModel::index(int row, int column, GUI::ModelIndex const&) const
|
|
{
|
|
if (static_cast<size_t>(row) < m_local_storage_entries.size())
|
|
return create_index(row, column, NULL);
|
|
return {};
|
|
}
|
|
|
|
GUI::Variant StorageModel::data(GUI::ModelIndex const& index, GUI::ModelRole role) const
|
|
{
|
|
if (role != GUI::ModelRole::Display)
|
|
return {};
|
|
|
|
auto const& keys = m_local_storage_entries.keys();
|
|
auto const& local_storage_key = keys[index.row()];
|
|
auto const& local_storage_value = m_local_storage_entries.get(local_storage_key).value_or({});
|
|
|
|
switch (index.column()) {
|
|
case Column::Key:
|
|
return local_storage_key;
|
|
case Column::Value:
|
|
return local_storage_value;
|
|
}
|
|
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
|
|
TriState StorageModel::data_matches(GUI::ModelIndex const& index, GUI::Variant const& term) const
|
|
{
|
|
auto needle = term.as_string();
|
|
if (needle.is_empty())
|
|
return TriState::True;
|
|
|
|
auto const& keys = m_local_storage_entries.keys();
|
|
auto const& local_storage_key = keys[index.row()];
|
|
auto const& local_storage_value = m_local_storage_entries.get(local_storage_key).value_or({});
|
|
|
|
auto haystack = DeprecatedString::formatted("{} {}", local_storage_key, local_storage_value);
|
|
if (fuzzy_match(needle, haystack).score > 0)
|
|
return TriState::True;
|
|
return TriState::False;
|
|
}
|
|
|
|
}
|