I’m sure that my question is a little wonky as I’m an ember newb. Anyway, here’s the setup, I have a CMS editor with its own controller and model (StaticPage and StaticPageController).
Totally straightforward. However, a piece of static content can be attached to an arbitrary system object. E.g. a Product
. What I’d like to do is a have a SearchController that handles searching and search API interaction. A user types in a product code/sku and is given a list of matching products that they could attach the static content to. But I’d rather not make that a monolithic part of the editor.
I’m sure this is a common kind of problem, I’m just curious about how this stuff is done in Ember land. Thanks!
(I tried searching but I my search-foo is weak as hell)