#include <range/v3/all.hpp>
#include <AUI/View/AForEachUI.h>
#include <AUI/Platform/Entry.h>
#include "AUI/Platform/AWindow.h"
#include "AUI/Util/UIBuildingHelpers.h"
#include "AUI/View/AScrollArea.h"
#include "AUI/Model/AListModel.h"
#include <AUI/View/ATextField.h>
#include <AUI/View/AText.h>
#include "model/PredefinedContacts.h"
#include <view/ContactDetailsView.h>
#include <view/common.h>
#include <AUI/View/ASpacerFixed.h>
#include "AUI/Platform/AMessageBox.h"
using namespace declarative;
using namespace ass;
using namespace std::chrono_literals;
static constexpr auto CONTACTS_SORT = ranges::actions::sort(std::less {}, [](
const _<Contact>&
c) ->
decltype(
auto) {
return *
c->displayName; });
static auto groupLetter(
const AString& s) {
return s.
firstOpt().valueOr(
'_'); }
class ContactsWindow :
public AWindow {
public:
ContactsWindow() : AWindow("AUI Contacts", 600_dp, 300_dp) {
Horizontal {
AScrollArea::Builder()
.withContents(
Vertical {
_new<ATextField>() && mSearchQuery,
AText::fromString(predefined::DISCLAIMER)
with_style { ATextAlign::CENTER },
SpacerFixed(8_dp),
CustomLayout {} & mSearchQuery.readProjected([&](const AString& q) {
return indexedList();
}
return searchQueryList();
}),
Label {}
& mSearchQuery.readProjected([](const AString& s) { return s.empty(); }) > &AView::setVisible
& mContactCount.readProjected([](std::size_t c) {
return "{} contact(s)"_format(c);
})
with_style { FontSize { 10_pt }, ATextAlign::CENTER, Margin { 8_dp } },
.build()
with_style { Expanding(0, 1), MinSize(200_dp) },
CustomLayout::Expanding {} & mSelectedContact.readProjected([this](const _<Contact>& selectedContact) -> _<AView> {
auto editor = contactDetails(selectedContact);
if (editor != nullptr) {
connect(selectedContact->displayName.changed, editor, [
this] {
*mContacts.writeScope() |= CONTACTS_SORT;
});
connect(editor->deleteAction, me::deleteCurrentContact);
}
return editor;
})
with_style { Expanding(), MinSize(300_dp), BackgroundSolid { AColor::WHITE } },
Padding(0),
});
}
private:
AProperty<AVector<_<Contact>>> mContacts =
predefined::PERSONS | ranges::views::transform([](Contact& p) { return _new<Contact>(std::move(p)); }) |
ranges::to_vector | CONTACTS_SORT;
APropertyPrecomputed<std::size_t> mContactCount = [this] { return mContacts->size(); };
AProperty<_<Contact>> mSelectedContact = nullptr;
AProperty<AString> mSearchQuery;
APropertyPrecomputed<AString> mSearchQueryLowercased = [this] { return mSearchQuery->lowercase(); };
void deleteCurrentContact() {
if (mSelectedContact == nullptr) {
return;
}
"Do you really want to delete?",
"This action is irreversible!",
return;
}
mContacts.
writeScope()->removeFirst(mSelectedContact);
mSelectedContact = nullptr;
}
_<AView> indexedList() {
return AUI_DECLARATIVE_FOR(group, *mContacts | ranges::views::chunk_by([](
const _<Contact>& lhs,
const _<Contact>& rhs) {
return groupLetter(lhs->displayName) == groupLetter(rhs->displayName);
}), AVerticalLayout) {
auto firstContact = *ranges::begin(group);
auto firstLetter = groupLetter(firstContact->displayName);
ALogger::info("Test") << "Computing view for group " << AString(1, firstLetter);
return Vertical {
Opacity(0.5f),
Padding { 12_dp, 0, 4_dp },
Margin { 0 },
FontSize { 8_pt },
},
common_views::divider(),
ALogger::info("Test") << "Computing view for item " << i->displayName;
return contactPreview(i);
},
};
};
}
_<AView> searchQueryList() {
auto searchFilter = ranges::views::filter([&](const _<Contact>& c) {
for (
const auto& field : {
c->displayName,
c->note }) {
if (field->lowercase().contains(mSearchQueryLowercased)) {
return true;
}
}
return false;
});
return contactPreview(i);
};
}
_<AView> contactPreview(const _<Contact>& contact) {
return Vertical {
Label {} & contact->displayName
with_style { Padding { 8_dp, 0 }, Margin { 0 }, ATextOverflow::ELLIPSIS },
common_views::divider(),
connect(it->clicked, [
this, contact] { mSelectedContact = contact; });
};
}
_<ContactDetailsView> contactDetails(const _<Contact>& contact) {
if (!contact) {
return nullptr;
}
return _new<ContactDetailsView>(contact);
}
};
_new<ContactsWindow>()->show();
return 0;
}
Represents a Unicode character string.
Definition AString.h:38
void setContents(const _< AViewContainer > &container)
Moves (like via std::move) all children and layout of the specified container to this container.
Represents a window in the underlying windowing system.
Definition AWindow.h:45
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
class_of c
Selects views that are of the specified classes.
Definition class_of.h:84
static decltype(auto) connect(const Signal &signal, Object *object, Function &&function)
Connects signal to the slot of the specified object.
Definition AObject.h:86
#define let
Performs multiple operations on a single object without repeating its name (in place) This function c...
Definition kAUI.h:262
#define AUI_DECLARATIVE_FOR(value, model, layout)
ranged-for-loop style wrapped for AForEachUI.
Definition AForEachUI.h:402
#define with_style
Allows to define a style to the view right in place.
Definition kAUI.h:287
#define AUI_ENTRY
Application entry point.
Definition Entry.h:90
API_AUI_VIEWS ResultButton show(AWindow *parent, const AString &title, const AString &message, Icon icon=Icon::NONE, Button b=Button::OK)
Displays a message box, blocking the caller thread until the user dismisses the message.
@ YES
Indicates the user clicked the Yes button.
Definition AMessageBox.h:123
@ YES_NO
Display Yes and No buttons.
Definition AMessageBox.h:93
@ NONE
No icon is specified.
Definition AMessageBox.h:58
aui::PropertyModifier< AProperty > writeScope() noexcept
Definition AProperty.h:141