Questions tagged [orbit.js]

Use this tag for questions about Orbit.js, a promise-based JavaScript library for managing access to data sources.

Orbit is a promise-based JavaScript library for managing access to data sources.

Although Orbit is written in plain JavaScript (with no external dependencies) a promises polyfill is required in environments that do not support the Promises/A+ spec.

Resources

Related Links

7 questions
4
votes
1 answer

How to find a linked relationship with Orbit.js

I cannot seem to figure out how to get linked objects working in Orbit.js. I've read through the source code a few thousand times (not an exaggeration :D), and there is no documentation. I've tried: memoryStore.findLinked("student", 1,…
Ben Aubin
  • 5,542
  • 2
  • 34
  • 54
3
votes
1 answer

THREE.js OrbitControls not working

I'm pretty sure I have everything needed in my JavaScript code for using Three.js OrbitControls. I have: And also: var cameraControls; cameraControls = new THREE.OrbitControls(camera,…
sheavictoria
  • 57
  • 1
  • 3
3
votes
1 answer

Query for multiple records in firebase

I'm implementing an orbit.js adapter for firebase, orbit-firebase. I'm looking for an efficient way to query for multiple records so that I can resolve relationships between objects e.g. course.participants { course: { 'c1': { …
opsb
  • 29,325
  • 19
  • 89
  • 99
1
vote
0 answers

How to create a dynamic chart using ember-vega

Im trying to create a vega chart in an ember octane app but in doing so im able to render the chart once, but from then on, even if the values change, the chart doesn't get rerendered the code im using is component.ts @tracked model!: any; get…
TheLooseCannon
  • 316
  • 3
  • 9
1
vote
0 answers

I want to create a ember table component whose value is updated dynamically [Ember.js]

when i bind a tracked variable to the ember table, this is the error that i get Error: Assertion Failed: You attempted to update rows on <(unknown):ember472>, but it had already been used previously in the same computation. Attempting to update a…
TheLooseCannon
  • 316
  • 3
  • 9
1
vote
0 answers

Three.js orbit control rotate and focus object

I am using Threejs and oribt control. I want a feature, if I give the object name. orbit control should rotate and focus ( make visible in center of screen ). Could some one help me on this? Thanks, Sabari.
0
votes
1 answer

Why my code works with arrow function and broken with bind?

I have thought that bind(this) is an equivalent of the arrow function however I have met an issue( This is a store which purpose to track delayed requests. I am using the orbitjs library to save everything into IndexedDB. It provides api which…
Nikita
  • 1,019
  • 2
  • 15
  • 39