Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krasimir/actml
ActML is a library that allows you to use React's JSX syntax for writing business logic.
https://github.com/krasimir/actml
declarative-language jsx logic
Last synced: 6 days ago
JSON representation
ActML is a library that allows you to use React's JSX syntax for writing business logic.
- Host: GitHub
- URL: https://github.com/krasimir/actml
- Owner: krasimir
- License: mit
- Created: 2018-08-24T14:57:52.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-05T04:11:12.000Z (about 4 years ago)
- Last Synced: 2024-10-22T15:43:38.729Z (14 days ago)
- Topics: declarative-language, jsx, logic
- Language: JavaScript
- Homepage:
- Size: 2.24 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
![ActML](assets/logo.jpg)
> :dizzy: ActML is a library that allows you to use JSX syntax outside of React world. It aims to provide the same experience in terms of composability and patterns.
```js
/** @jsx A */
import { A, run } from 'actml';const Message = ({ user, children }) => {
console.log(children(user));
}
const Greeting = (user) => {
return `Hello ${ user.name }!`;
}run(
);
// Hello Emma!
```(Try it yourself [here](https://poet.codes/e/XD26EjK9ECK).)
---
* [How to use it](#how-to-use-it)
* [Introduction](#introduction)
* [Children](#children)
* [Asynchronous](#asynchronous)
* [Context](#context)
* [Hooks](#hooks)
* [useState](#usestate)
* [useEffect](#useeffect)
* [useReducer](#usereducer)
* [usePubSub](#usepubsub)
* [useContext](#usecontext)
* [Examples](#examples)---
## How to use it
* `npm i actml` or `yarn install actml`
* ActML uses JSX so you need to have some sort of [Babel](https://babeljs.io) integration (or any other transpiler that understands [JSX](https://facebook.github.io/jsx/))
* ActML requires you to add `/** @jsx A */` at the top of the file. Otherwise the ActML elements will be transpiled to `React.createElement`## Introduction
ActML looks like [React](https://reactjs.org/) but it's not about rendering UI. It's about executing your JavaScript.
```js
const Foo = () => 'bar';
run(); // bar
```You'll probably wonder why using ActML and instead of writing `Foo()` we use ``? The answer is same reason why we write `` instead of `React.createElement(Component, null)`. We are declarative instead of imperative. It's better to say what we want to happen instead of how it happens. Being declarative means having more options for composition. The declarative code is easier to read and extend.
Also when we write `` we are not executing our function `Foo`. We are just saying that this function _should be_ executed at this place. We create a descriptor of that call which is passed to ActML runtime. This abstraction creates a layer where we can do bunch of things. We can for example process async operations behind the scenes or we can build a map the application's logic. We can deffer things or enhance them with additional arguments.
### Children
Every function run by ActML receives a `children` prop. Similarly to React that prop represents the children of the element. Here we have two use case - we can call `children` as a function or we can return it as a result.
```js
const X = ({ children }) => {
children();
children();
};
const Y = ({ children }) => {
return children;
}
const Message = () => {
console.log('Hello')
};
run(); // prints Hello twice
run(); // prints Hello once
```If we are calling `children` we are getting back an array containing the results of the nested elements. Or if the array contains one item we get directly that item.
```js
const X = () => 'foo';
const Y = () => 'bar';
const Results = ({ children }) => {
console.log(JSON.stringify(children()));
};
run(
); // prints ["foo","bar"]
```Calling manually `children` means running the children `X` and `Y` and receiving the result of them.
### Asynchronous
ActML runtime supports both asynchronous and synchronous elements. You can mix them in a single expression. As soon as there is something asynchronous ActML marks the call as such and the result of it is a promise. For example:
```js
const App = async ({ children }) => {
const message = await children();
return message.join(' ');
}
const Greeting = () => 'Hey';
const GetUserFirstName = async () => {
const { data: { first_name }} = await (await fetch('https://reqres.in/api/users/2')).json();
return first_name;
}
const FavoriteColor = () => 'your favorite color is';
const GetFavoriteColor = async () => {
const { data: { color }} = await (await fetch('https://reqres.in/api/products/3')).json();
return color;
}run(
).then(message => console.log(message));// outputs: Hey Janet your favorite color is #BF1932
```(online demo [here](https://poet.codes/e/ZLOngMd8liP))
Notice that `` and `` are synchronous. ActML waits for all the children to be processed and then resolves the promise returned by the `children` call. If all the elements were synchronous then we'll get an array straight away.
### Context
I can't say it better than [React docs](https://reactjs.org/docs/context.html#reactcreatecontext):
> Context provides a way to pass data through the component tree without having to pass props down manually at every level.
```js
import { createContext } from 'actml';const Context = createContext('');
const { Provider, Consumer } = Context;const F = () => {
return (
{ value => console.log(value) }
);
};run(
);
// outputs: 'foo'
```ActML searches for the `` up the tree from the place where the `` is positioned. If it can't find the `` then it shows a warning and delivers `` instead.
## Hooks
### useState
```js
import { A, useState } from 'actml';const E = () => {
const [ getState, setState ] = useState(initialState);
}
```Returns two functions for setting and retrieving a state value. In the original [React docs](https://reactjs.org/docs/hooks-reference.html#usestate) the first item is the state value directly but here ActML diverges a little bit by providing a function. It is done to provide a mechanism for immediate retrieval of the update value.
### useEffect
```js
import { A, useEffect } from 'actml';const E = () => {
useEffect(function sideEffect() {
// ...
return function onElementRemoved() {
// ...
}
}, [ dependencyA, dependencyB ]);
}
```The function `sideEffect` is fired after the function `E` finishes. After that it gets fired only if some of the `dependencyA` or `dependencyB` are changed. If we pass an empty array we are creating a side effect that is fired only once no matter how many times `E` is executed. The function that we pass to `useEffect` may return another function that is invoked when the element is removed from the tree.
_ActML's `useEffect` mimics [React's `useEffect`](https://reactjs.org/docs/hooks-reference.html#useeffect)_
### useReducer
```js
import { A, useEffect } from 'actml';function reducer(state, action) {
switch (action.type) {
case 'increment':
return {count: state.count + 1};
case 'decrement':
return {count: state.count - 1};
default:
throw new Error();
}
}
const E = function () {
const [ getState, dispatch ] = useReducer(reducer, initialState);
//...
dispatch({ type: 'increment' })
}
```Very similar to [`useState`](#usestate). In fact `useReducer` internally uses `useState. The mechanism for updating the state is by using actions which are `dispatch`ed and then processed by the `reducer` which returns the new version of the state.
_ActML's `useReducer` mimics [React's `useReducer`](https://reactjs.org/docs/hooks-reference.html#usereducer)_
### usePubSub
```js
import { A, Fragment, usePubSub } from 'actml';const TYPE = 'TYPE';
const Publisher = function () {
const { publish } = usePubSub();publish(TYPE, 42);
};
const Subscribe = function () {
const { subscribe } = usePubSub();subscribe(TYPE, (answer) => {
console.log(`The answer is ${ answer }`);
});
};run(
);
```The `usePubSub` hook can help you if you need to communicate between elements on different levels in the tree. It returns an object with two methods `publish` and `subscribe`:
* `publish(, )`
* `subscribe(, )`### useContext
Consume the value of a context.
```js
const Context = createContext();
const F = () => {
const value = useContext(Context);
// here value is 'foo'
};run(
);
```## Examples
* [Playground](https://poet.codes/e/XD26EjK9ECK)
* [ToDoMVC app](./examples/todomvc)