semantic-dom-selectors -----> ember-semantic-test-helpers
| |
| |
| |
qunit-semantic-assertions ------
|
|
|
qunit-dom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import difference from '@turf/difference' | |
| import { feature, multiPolygon, polygon, featureCollection, multiPoint } from '@turf/helpers' | |
| import { getGeom } from '@turf/invariant' | |
| import { flattenEach, featureEach } from '@turf/meta' | |
| import simplepolygon from 'simplepolygon' | |
| import gpsi from 'geojson-polygon-self-intersections' | |
| export function unkinkPolygon (geojson) { | |
| const features = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { currentURL } from '@ember/test-helpers'; | |
| export default function getQp(name, url=currentURL()) { | |
| if (!url || !name) { | |
| return; | |
| } | |
| let [, qps] = url.split('?'); | |
| let pairs = qps.split('&'); | |
| let [found] = pairs.filter((item) => item.includes(`${name}=`)); |
Legend:
- [be] Bleeding Edge
- [ed] Ember Data Related
- https://github.com/ember-template-lint/ember-cli-template-lint lint the templates
- https://github.com/ember-cli-deploy/ember-cli-deploy Deployment pipeline addons or apps
- nullif - convert empty string to null
- concat_ws
- FILTER
- a) What's the status of being able to use ES classes?
- b)
I just started learning Ember and would like to get more experience with the project by contributing to it. What's a good way for me to get started in open-source work related to Ember and to get more familiar with its internals at the same time?answered by @jessica-jordan - c) When the re hydration will land in Ember? and what about the incremental rendering?
d) Why Ember ships with RSVP instead of a Promise polyfill?answered by @ef4- e) How is didReceiveAttrs better than observers, or is it just as bad?
- f)
Is module unification something you can use today in an app? It seems like a lot of the discussion revolves around usage in addons, corner cases, or require using canary versions of Ember.answered by @jenweber - g) I've seen the Glimmer site and explanation but I'm still not sure if I should be thinking about Glimmer as solving my front end lightweight framework needs. For instance, should I go ahead and assume I can use Glimme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // mirage/scenarios/default.js | |
| export default function(server) { | |
| function store() { | |
| let data = server.db.dump(); | |
| let json = JSON.stringify(data); | |
| localStorage.mirage = json; | |
| } |
