You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
4.6 KiB

## mini-framework
Now that you have already used a framework of your choice, you must now implement some features on a framework of your own. That's right, you are going to create a framework.
Be aware that a framework is different from a library. When you call a method from a library, you are in control. But with a framework, the control is inverted: the framework calls you.
### Objectives
Your framework should implement:
- Abstracting the DOM
Routing System
- State Management
- Event Handling
4 years ago
You will also need to make a [todoMVC](http://todomvc.com/) project using your framework.
### Instructions
You must create documentation for your framework, so that users (auditers) are able to understand and know how to use your framework without experiencing any awkwardness. By documentation we mean, the explaining of how does the framework works and how to work with it, for example: how to create a div, how to add an event to a button, etc.
Your framework will be tested by using it, like you previously have used one, in the social network project. So the user has to be presented to a folder structure that allows him to run the app from the root of that folder structure. The user testing your framework will have to implement some simple code in order to test the features described bellow.
#### Abstracting the DOM
You will have to implement a way to handle the DOM. The DOM can be seen as a big object, like in the example below:
```html
<html>
<div class="nameSubm">
<input type="text" placeholder="Insert Name" />
<input type="submit" placeholder="Submit" />
</div>
</html>
```
The html above can be written as:
```json
{
"tag": "html",
"attrs": {},
"children": [
{
"tag": "div",
"attrs": {
"class": "nameSubm"
},
"children": [
{
"tag": "input",
"attrs": {
"type": "text",
"placeholder": "Insert Name"
}
},
{
"tag": "input",
"attrs": {
"type": "submit",
"placeholder": "Submit"
}
}
]
}
]
}
```
With this in mind you can manipulate the DOM more easily in JS. And that is what you will do using a method. Here are some methods you can use:
- [Virtual DOM](https://bitsofco.de/understanding-the-virtual-dom/) - Using a second DOM with the wanted changes, to compare with the real DOM and change just what is needed
- [Data Binding](https://docs.microsoft.com/en-us/dotnet/desktop-wpf/data/data-binding-overview?redirectedfrom=MSDN) - binds together two data sources and keeps them synchronized
- [Templating](https://medium.com/@BuildMySite1/javascript-templating-what-is-templating-7ff49d97db6b) - refers to the client side data binding method implemented with the JavaScript language.
There are a lot of ways to achieve this. Above are just some examples, what matters is that the DOM must respond to certain actions of the user.
You have to take into account the events, children and attributes of each element of the DOM.
---
#### Routing System
Routing is the process of selecting a path for traffic in a network. And, as you may have already realized, routing in JS can sometimes be a little bit confusing, so what you will need to do, is to implement a new routing system that is more intuitive and simpler.
---
#### State Management
The state of an app can be seen as the outcome of all of the actions that the user has taken since the page loaded. In other words, if a user clicks on a button to execute an action, the state should then change.\
What you will need to do is to implement a way to handle this state. Remember that multiple pages can need to interact with the same state, so you need to find a way to let the state be reachable at every time.
---
#### Event Handling
You will also have to implement a way to handle the events triggered by the user, like: scrolling, clicking, certain keybindings, etc.... Note that this new way of handling events must different from the `addEventListener()` method that already exists.
---
4 years ago
#### TodoMVC
A todoMVC project consists on creating a [webpage](http://todomvc.com/examples/vanillajs/) (this example is written in VanillaJS) with the same elements present in the example, so we advise you to test it around first. You have to make your todoMVC project, a pretty much perfect copy of the examples given in the links above, but using your framework.\
Be aware that every thing that we can't visually see has to be present too (ids, classes, etc.).
This project will help you learn about:
- Web Development
- Frameworks
- DOM
- Routing
- State of an Application