complex.hpp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. class complex_item: public mstch::object {
  2. private:
  3. std::string m_name;
  4. bool m_current;
  5. std::string m_url;
  6. public:
  7. complex_item(const std::string& name, bool current, const std::string& url):
  8. m_name(name), m_current(current), m_url(url)
  9. {
  10. register_methods(this, std::map<std::string,mstch::node(complex_item::*)()>{
  11. {"name", &complex_item::name}, {"current", &complex_item::current},
  12. {"url", &complex_item::url}, {"link", &complex_item::link}
  13. });
  14. }
  15. mstch::node current() {
  16. return m_current;
  17. }
  18. mstch::node url() {
  19. return m_url;
  20. }
  21. mstch::node name() {
  22. return m_name;
  23. }
  24. mstch::node link() {
  25. return !m_current;
  26. }
  27. };
  28. class complex: public mstch::object {
  29. private:
  30. std::string m_header;
  31. mstch::array m_item;
  32. public:
  33. complex():
  34. m_header("Colors"),
  35. m_item(mstch::array{
  36. std::make_shared<complex_item>("red", true, "#Red"),
  37. std::make_shared<complex_item>("green", false, "#Green"),
  38. std::make_shared<complex_item>("blue", false, "#Blue")
  39. })
  40. {
  41. register_methods(this, std::map<std::string,mstch::node(complex::*)()>{
  42. {"header", &complex::header}, {"item", &complex::item},
  43. {"list", &complex::list}, {"empty", &complex::empty}
  44. });
  45. }
  46. mstch::node header() {
  47. return m_header;
  48. }
  49. mstch::node item() {
  50. return m_item;
  51. }
  52. mstch::node list() {
  53. return m_item.size() != 0;
  54. }
  55. mstch::node empty() {
  56. return m_item.size() == 0;
  57. }
  58. };
  59. const auto complex_data = std::make_shared<complex>();