Alex

Results 364 comments of Alex

`getBoundingClientRect` is kind of `read` property method, so what are the problems with: ```ts source .DOM .select('input') .element().compose(sampleCombine(stream$)) .map(([el]) => el.getBoundingClientRect()) ``` and `blur()`, `focus()`, `select`, are a kind of...

Then you should make a wrapper that is aimed to translate languages between the contexts. You actually need a wrapper for cycle/DOM that will convert it to the "DOM source"...

So your issues refer to cross-context communication. There are two issues: 1) applying DOM effects like `blur`, `focus`, `selection` to DOM elements, which I state should be done using current...

> My problem stems from finding a generic way to allow "reads" and "writes" to specific elements in the DOM Reads and writes should be segregated, at least on a...

```ts type Type1 = number type Type2 = string type CompoundType = Type1 | Type2; const first: Type1 = 1; const first$ = xs.of(first); const x$: Stream = first$; //...

I made a PR for this https://github.com/staltz/xstream/pull/317

> but it would only add more code to the bundle. Don't get me wrong, I know you care much about resulting bundle "size", but [this issue](https://github.com/cyclejs/cyclejs/issues/385): adds much more...

> I agree, and I'm still up for accepting a PR for that issue. I think it (makeHTMLDriver) should be properly be extracted and documented maybe @TylorS could accomplish it....

The with isolate with typings also refers to https://github.com/staltz/xstream/issues/306 as I'm using a distinct version of `MemoryStream` type which `Stream` is not assignable to. @staltz So I'm not proposing to...

I'm implementing HMR for cyclejs components, so there I replicate (create proxy) streams and need to know if to create with memory or not.