{"id":1975,"date":"2021-12-01T17:43:00","date_gmt":"2021-12-01T16:43:00","guid":{"rendered":"https:\/\/codizon.com\/?p=1975"},"modified":"2022-04-23T17:21:04","modified_gmt":"2022-04-23T16:21:04","slug":"wedbliss","status":"publish","type":"post","link":"https:\/\/codizon.com\/2021\/12\/wedbliss\/","title":{"rendered":"Wedbliss"},"content":{"rendered":"\n

Overview<\/h2>\n\n\n\n

Wedbliss helps couples easily find their dream wedding venue. The platform features an interactive map of expertly curated wedding venues across Poland, in which couples can adjust filters to display venues matching specified criteria.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Developed using a Lean Startup<\/em> approach, the product has undergone a number of feedback-driven iterations. The following article illustrates our development approach through three stages of the product lifecycle: Discover, Build, and Drive.<\/em><\/p>\n\n\n\n

\n
\n
\"\"<\/figure>\n<\/div>\n\n\n\n
\n
\"\"<\/figure>\n<\/div>\n<\/div>\n\n\n\n

The first step was to conduct an in-depth market analysis. This facilitated a refined product vision and allowed us to clearly map a series of user and business outcomes, as detailed in the Discover<\/em> section.<\/p>\n\n\n\n

This real-world research was invaluable, allowing the team to uncover various pain points associated with a couple\u2019s search for their dream wedding venue. Understanding these pain points made designing and architecting our custom Wedbliss solution straightforward, as highlighted in the Build <\/em>section.<\/p>\n\n\n\n

Lastly, we made sure that everything was put in place for smooth and efficient maintenance of the product. In the Drive<\/em> section, we underscore some of the best practices and standard industry tools used to collect key performance indicators (KPIs) to track product success.<\/p>\n\n\n\n

*Note: <\/strong>Early feedback has indicated a considerable market interest in our product. Unfortunately, the wedding industry has been badly hit by the COVID-19 pandemic – product launch will be revisited when revenue projections recover.<\/p>\n\n\n\n

<\/div>\n\n\n\n

Discover<\/h2>\n\n\n\n

The Discovery phase successfully validated and refined the product\u2019s unique value proposition.<\/mark><\/p>\n\n\n\n

Our team conducted a number of small scale experiments to collect user data (i.e. surveys, interviews, content analysis, etc.). This provided early insights into user desire for a more transparent and efficient service in the early stages of their search for a wedding venue. Specifically, users were interested in shortlisting a small number of venues, based on key features such as capacity, price, location, and reviews.
<\/p>\n\n\n\n

At this stage, we understood what was important to the user, but had not yet formulated a final product response. We used Figma to visualize our ideas, testing prototype solutions directly with potential customers (our Figma approach is detailed further in the next section) to identify how best to meet user needs. This new feedback was then used to modify product design and the process of gathering feedback would begin again. Wireframes and early-stage designs were iterated rapidly, informed by these direct feedback loops.<\/p>\n\n\n\n

This iterative design process is useful at any phase of the product lifecycle, including when a product has already been launched in the market and there is a desire to make improvements.<\/p>\n\n\n\n

Key Takeaway<\/em><\/p>\n\n\n\n

Using a feedback\/outcome-driven framework, allowed the team to quickly establish a clear set of priorities for the platform. The process empowered the team to make leaner, faster decisions and in turn, accelerate delivery.<\/p>\n\n\n\n

<\/div>\n\n\n\n

Build<\/h2>\n\n\n\n

The Build phase defined effective processes for design and code delivery. <\/mark><\/p>\n\n\n\n

When building our designs, Figma<\/a> is our go-to tool. It is straightforward to use, navigate, and collaborate on. Most importantly, however, it allows for great flexibility in structuring our components.<\/p>\n\n\n\n

Let\u2019s rewind here for a moment to explain what a component is.<\/p>\n\n\n\n

We believe that modularity is the key to creating a flexible\/Agile design system. For a system to be modular, it must have interchangeable parts. These parts are called components. Components can be as simple as an individual button, or as complex as an entire navigation header (consisting of other components like logos, buttons and menu items). Once you make something a component, you can create other instances of it, which are essentially connected copies of that component \u2014 so if you update the design of the original component, all instances will reflect that change. For example, when you need to change something, like your brand\u2019s link color or home icon, you can make the change once (in the original main component or style) and watch it update across all your designs.<\/p>\n\n\n\n

Whether in Figma or in code, components are at the core of our approach to architecting products.<\/p>\n\n\n\n

However, bringing our components to life (i.e., writing code), is an exciting but error-prone process, made especially challenging when collaborating with a larger team. It is, therefore, crucial to align on processes and have a shared understanding of the system design (i.e., the architecture).<\/p>\n\n\n\n

Most of our processes were defined by SCRUM – probably the most widely used project management framework for Agile development. As for the architecture, incorporating BLoC and State Machine paradigm into our solution were the two core choices that helped us effectively expand (build new features) and navigate an increasingly complex project.<\/p>\n\n\n\n

BLoC stands for Business Logic Components and at its core is centered around the concept of Unidirectional Data Flow. If you\u2019re interested to learn more check out this great article<\/a> written by one of our developers explaining the concept in more detail. We recommend further reading on BLoC to fully understand its benefits. Overall, it helped us separate business logic from the presentation layer and enabled us to reuse code more efficiently.<\/p>\n\n\n\n

State Machine is a computational model that consists of states and transition functions. A transition function reads an input and determines the next state. A program cannot be in two states at any given time. This makes the app\u2019s behavior predictable and easily testable. All we have to do is come up with a finite number of states, their possible transitions, and code them up. One of our developers created a library that allows us to express states and the corresponding transitions for a given BLoC in Dart language https:\/\/pub.dev\/packages\/state_graph_bloc<\/a>.<\/p>\n\n\n\n

The tech stack can be summarized as a multiplatform Dart application, designed for code sharing between Angular Dart used for web development and Flutter used for mobile apps.<\/p>\n\n\n\n

The industry is moving towards multi-platform development tools (i.e., one technology to build apps for mobile, web, desktop, and embedded devices) with Flutter at the front of such initiatives. The move is motivated by the need to cut the enormous costs involved in the development and maintenance of multiple tech stacks.<\/p>\n\n\n\n

The only reason we used Angular Dart<\/em> instead of Flutter on the Web<\/em> is that the latter was still in its early stages of beta testing at the time of building Wedbliss. In our case, migrating Angular Dart<\/em> to Flutter on the Web<\/em> will be easy, since we maintain one codebase and most of the code is already shared between web and mobile (as both are written in Dart programming language).<\/p>\n\n\n\n

Lastly, it is important to note our approach to designing the backend. We used Ktor and MongoDB. We chose Ktor due to its low setup costs (i.e., lightweight framework with a quick and easy setup). Another advantage was that Ktor is built with Kotlin (a much more concise language when compared to Java), and we took full advantage of Kotlin features such as lambda syntax and DSLs. As for MongoDB, there is a never-ending debate on whether you should choose SQL or NoSQL databases. The truth is, there is no silver bullet and it all depends on your use case. For us, the focus was on flexibility. We chose NoSQL MongoDB due to its schemaless nature that allowed for rapid transformations as our data needs changed. Rather than fitting an application to meet schema requirements, we allowed for experiments to define our optimal database structure.<\/p>\n\n\n\n

Key Takeaway<\/em><\/p>\n\n\n\n

Our component-based approach to designing and building our product allowed for quick and easy propagations of changes – saving us a lot of time when going through the numerous iterations of Wedbliss.<\/p>\n\n\n\n

<\/div>\n\n\n\n

Drive<\/h2>\n\n\n\n

Coming soon.<\/p>\n","protected":false},"excerpt":{"rendered":"

Wedbliss helps couples easily find their dream wedding venue. The platform features an interactive map of expertly curated wedding venues across Poland, in which couples can adjust filters to display venues matching specified criteria.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":""},"categories":[1],"tags":[233],"_links":{"self":[{"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/posts\/1975"}],"collection":[{"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/comments?post=1975"}],"version-history":[{"count":15,"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/posts\/1975\/revisions"}],"predecessor-version":[{"id":2028,"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/posts\/1975\/revisions\/2028"}],"wp:attachment":[{"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/media?parent=1975"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/categories?post=1975"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codizon.com\/wp-json\/wp\/v2\/tags?post=1975"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}