Giter Club home page Giter Club logo

Comments (3)

Riim avatar Riim commented on July 19, 2024

Не уверен, что понял пример. Вот простой пример АПИ на cellx:

class BinanceAPI {
	serverTime = cellx(({ push, fail, wait }) => {
		fetch('https://api.binance.com/api/v1/time')
			.then((res) => res.json())
			.then(push, fail);

		wait();
	});
}

const binance = new BinanceAPI();

autorun(() => {
	console.log('autorun');
	console.log(binance.serverTime());

	setTimeout(() => {
		binance.serverTime.pull();
	}, 3000);
});

Выводит:

test.html:25 autorun
test.html:25 autorun
test.html:26 {serverTime: 1658241693094}
test.html:25 autorun
test.html:26 {serverTime: 1658241696386}
...

autorun -- это по сути вычисляемая ячейка с добавленным ей пустым обработчикам onChange, то есть она сразу в активном состоянии. Для уничтожения нужно вызвать возвращаемую ей функцию (внутри просто снимается пустой обработчик onChange).
При первом вызове autorun второй console.log не срабатывает, это из-за wait() (внутри serverTime) который просто бросает спец.ошибку которая останавливает всё вычисление, но не попадает в консоль. Система как бы переходит в режим ожидания из которого можно вывести вызовом push(data) или fail(err). При вызове push ячейка serverTime запоминает переданное ей значение, а вычисляемая autorun-ячейка реагирует на это. Только на этот раз при чтении serverTime до wait уже не доходит, тк. ячейка не запускает своё вычисление, а просто возвращает запомненное значение, в результате, на этот раз, срабатывает второй console.log выводящий результат запроса.
Если теперь читать serverTime, то он всегда будет возвращать запомненный результат, что бы заставить его опять сходить на сервер нужно вызвать pull. Во время повторного запроса ячейка по прежнему будет иметь запомненное значение.

Пример с цепочкой запросов:

class BinanceAPI {
	exchangeInfo = cellx(({ push, wait }) => {
		fetch('https://api.binance.com/api/v1/exchangeInfo')
			.then((res) => res.json())
			.then(push);

		wait();
	});

	firstSymbolTicker = cellx(({ push, wait }) => {
		fetch(`https://api.binance.com/api/v1/ticker/bookTicker?symbol=${this.exchangeInfo().symbols[0].symbol}`)
			.then((res) => res.json())
			.then(push);

		wait();
	});
}

const binance = new BinanceAPI();

autorun(() => {
	console.log(binance.firstSymbolTicker());
});

Выводит:

{
  symbol: 'ETHBTC',
  bidPrice: '0.06769500',
  bidQty: '6.40620000',
  askPrice: '0.06769600',
  askQty: '3.68580000'
}

from cellx.

dwfe avatar dwfe commented on July 19, 2024

супер, то что надо, благодарю

from cellx.

Riim avatar Riim commented on July 19, 2024

Ещё немного добавлю. Вместо wait() можно возвращать какое-то значение, тогда ячейка на время запроса примет это значение. Ну и при первом вызове autorun второй console.log уже конечно сработает:

class BinanceAPI {
	serverTime = cellx(({ push }, prev = { serverTime: null }) => {
		fetch('https://api.binance.com/api/v1/time')
			.then((res) => res.json())
			.then(push);

		return prev;
	});
}

from cellx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.