mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
bf45e97641
* Update types * fix circular dep * type imports * lint type imports and --fix
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import invariant from "invariant";
|
|
import { action } from "mobx";
|
|
import type { SubscriptionType } from "@shared/types";
|
|
import Subscription from "~/models/Subscription";
|
|
import { client } from "~/utils/ApiClient";
|
|
import { AuthorizationError, NotFoundError } from "~/utils/errors";
|
|
import type RootStore from "./RootStore";
|
|
import Store, { RPCAction } from "./base/Store";
|
|
|
|
export default class SubscriptionsStore extends Store<Subscription> {
|
|
actions = [RPCAction.List, RPCAction.Create, RPCAction.Delete];
|
|
|
|
constructor(rootStore: RootStore) {
|
|
super(rootStore, Subscription);
|
|
}
|
|
|
|
@action
|
|
async fetchOne(
|
|
options: { event: SubscriptionType } & (
|
|
| { documentId: string }
|
|
| { collectionId: string }
|
|
)
|
|
) {
|
|
const subscription =
|
|
"collectionId" in options
|
|
? this.getByCollectionId(options.collectionId)
|
|
: this.getByDocumentId(options.documentId);
|
|
|
|
if (subscription) {
|
|
return subscription;
|
|
}
|
|
|
|
this.isFetching = true;
|
|
|
|
try {
|
|
const res = await client.post(`/${this.apiEndpoint}.info`, options);
|
|
if (!res) {
|
|
return;
|
|
}
|
|
invariant(res?.data, "Data should be available");
|
|
return this.add(res.data);
|
|
} catch (err) {
|
|
if (err instanceof AuthorizationError || err instanceof NotFoundError) {
|
|
return;
|
|
}
|
|
throw err;
|
|
} finally {
|
|
this.isFetching = false;
|
|
}
|
|
}
|
|
|
|
getByDocumentId = (documentId: string): Subscription | undefined =>
|
|
this.find({ documentId });
|
|
|
|
getByCollectionId = (collectionId: string): Subscription | undefined =>
|
|
this.find({ collectionId });
|
|
}
|