Sean Lynch

Results 203 issues of Sean Lynch

I would like to start the conversation about adding geo spatial query support to js-data (and all it's adapters, or at least as many as we can). Initially it would...

backlog
feature
needs contribution
needs more info

*Extracted from https://github.com/techniq/odata-query/pull/20#issuecomment-407770014* Regarding dates and times they do not appear to qualify the values with a type except optionally with a duration. ``` DateValue eq 2012-12-03 DateTimeOffsetValue eq 2012-12-03T07:16:23Z...

After some discussion in the [PR](https://github.com/techniq/odata-query/pull/14) about how to handle `in` and parens, I think we should implement a breaking change to make array (`[ ]`) usage more consistent and...

Support all transforms defined within [spec](http://docs.oasis-open.org/odata/odata-data-aggregation-ext/v4.0/odata-data-aggregation-ext-v4.0.html) - [x] aggregate - [ ] topcount - [ ] topsum - [ ] toppercent - [ ] bottomcount - [ ] bottomsum -...

- https://github.com/object/Simple.OData.Client/wiki/Batch-requests - https://damienbod.com/2014/08/14/web-api-odata-v4-batching-part-10/ - https://blogs.msdn.microsoft.com/webdev/2013/11/01/introducing-batch-support-in-web-api-and-web-api-odata/

Hi @pngwn 👋 , This is more of a question, but have you considered adding additional components to MDsveX to support documenting components easier, similar to the React/Gatsby based [docz](https://www.docz.site/)...

tooling :hammer_and_wrench:

Will need to wait for react-cache to be officially released (which is currently slated for [mid 2019](https://reactjs.org/blog/2018/11/27/react-16-roadmap.html)). An implementation is available that rolled it's own caching (https://github.com/CharlesStover/fetch-suspense), although this is...

Now that `fetch` supports aborting using `AbortController` via a `signal`, it would be nice if we did as well. [Currently](https://github.com/techniq/react-fetch-component/blob/master/src/Fetch.js#L188-L192) we track whether the component is mounted and not call...

Support `useFetch` hooks API ```jsx function Example(props) { const { loading, data, error } = useFetch({ url: props.url }); // ... } ``` along with the existing `Fetch` render props...

While we currently support Typescript via [separate definitions](https://github.com/techniq/react-fetch-component/blob/master/index.d.ts), I plan to use it to write the library. Need to setup a Typescript setup/build first.