2015-03-06 12:37:24 -05:00
|
|
|
import Store from "discourse/models/store";
|
2018-06-15 11:03:24 -04:00
|
|
|
import RestAdapter from "discourse/adapters/rest";
|
|
|
|
import KeyValueStore from "discourse/lib/key-value-store";
|
2019-09-09 11:03:57 -04:00
|
|
|
import TopicListAdapter from "discourse/adapters/topic-list";
|
2018-06-15 11:03:24 -04:00
|
|
|
import TopicTrackingState from "discourse/models/topic-tracking-state";
|
|
|
|
import { buildResolver } from "discourse-common/resolver";
|
2015-03-06 12:37:24 -05:00
|
|
|
|
2019-10-30 11:25:42 -04:00
|
|
|
export default function(customLookup = () => {}) {
|
2018-06-15 11:03:24 -04:00
|
|
|
const resolver = buildResolver("discourse").create();
|
2016-11-08 13:40:35 -05:00
|
|
|
|
2015-03-06 12:37:24 -05:00
|
|
|
return Store.create({
|
2016-11-08 13:40:35 -05:00
|
|
|
register: {
|
2015-03-06 12:37:24 -05:00
|
|
|
lookup(type) {
|
|
|
|
if (type === "adapter:rest") {
|
2017-06-14 13:57:58 -04:00
|
|
|
if (!this._restAdapter) {
|
|
|
|
this._restAdapter = RestAdapter.create({ owner: this });
|
|
|
|
}
|
|
|
|
return this._restAdapter;
|
2015-09-03 16:55:55 -04:00
|
|
|
}
|
2019-09-09 11:03:57 -04:00
|
|
|
if (type === "adapter:topicList") {
|
|
|
|
this._topicListAdapter =
|
|
|
|
this._topicListAdapter || TopicListAdapter.create({ owner: this });
|
|
|
|
return this._topicListAdapter;
|
|
|
|
}
|
2015-09-03 16:55:55 -04:00
|
|
|
if (type === "key-value-store:main") {
|
|
|
|
this._kvs = this._kvs || new KeyValueStore();
|
2018-06-15 11:03:24 -04:00
|
|
|
return this._kvs;
|
2015-09-03 16:55:55 -04:00
|
|
|
}
|
|
|
|
if (type === "topic-tracking-state:main") {
|
2015-09-21 14:15:25 -04:00
|
|
|
this._tracker = this._tracker || TopicTrackingState.create();
|
2018-06-15 11:03:24 -04:00
|
|
|
return this._tracker;
|
2015-09-03 16:55:55 -04:00
|
|
|
}
|
|
|
|
if (type === "site-settings:main") {
|
2016-06-14 14:31:51 -04:00
|
|
|
this._settings = this._settings || Discourse.SiteSettings;
|
2018-06-15 11:03:24 -04:00
|
|
|
return this._settings;
|
2015-03-06 12:37:24 -05:00
|
|
|
}
|
2019-10-30 11:25:42 -04:00
|
|
|
return customLookup(type);
|
2015-03-06 12:37:24 -05:00
|
|
|
},
|
|
|
|
|
2015-04-08 14:44:44 -04:00
|
|
|
lookupFactory(type) {
|
2018-06-15 11:03:24 -04:00
|
|
|
const split = type.split(":");
|
|
|
|
return resolver.customResolve({
|
|
|
|
type: split[0],
|
|
|
|
fullNameWithoutType: split[1]
|
|
|
|
});
|
|
|
|
}
|
2015-03-06 12:37:24 -05:00
|
|
|
}
|
|
|
|
});
|
2017-09-06 10:21:07 -04:00
|
|
|
}
|