A force-directed graph using images as nodes, with accompanying text labels.
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 Component from '@glimmer/component'; | |
import { action } from '@ember/object'; | |
import { tracked } from '@glimmer/tracking'; | |
const tasks = new WeakMap(); | |
class Task { | |
@tracked isLoading = true; | |
@tracked lastError; | |
@tracked result; |