2023-11-24 12:59:57 -05:00
|
|
|
import invariant from "invariant";
|
2023-11-24 14:15:23 -05:00
|
|
|
import lowerFirst from "lodash/lowerFirst";
|
2023-11-24 12:59:57 -05:00
|
|
|
import pluralize from "pluralize";
|
2020-06-20 13:59:15 -07:00
|
|
|
import ApiKeysStore from "./ApiKeysStore";
|
|
|
|
import AuthStore from "./AuthStore";
|
2022-10-24 17:01:40 -04:00
|
|
|
import AuthenticationProvidersStore from "./AuthenticationProvidersStore";
|
2020-06-20 13:59:15 -07:00
|
|
|
import CollectionsStore from "./CollectionsStore";
|
feat: Comments (#4911)
* Comment model
* Framework, model, policy, presenter, api endpoint etc
* Iteration, first pass of UI
* fixes, refactors
* Comment commands
* comment socket support
* typing indicators
* comment component, styling
* wip
* right sidebar resize
* fix: CMD+Enter submit
* Add usePersistedState
fix: Main page scrolling on comment highlight
* drafts
* Typing indicator
* refactor
* policies
* Click thread to highlight
Improve comment timestamps
* padding
* Comment menu v1
* Change comments to use editor
* Basic comment editing
* fix: Hide commenting button when disabled at team level
* Enable opening sidebar without mark
* Move selected comment to location state
* Add comment delete confirmation
* Add comment count to document meta
* fix: Comment sidebar togglable
Add copy link to comment
* stash
* Restore History changes
* Refactor right sidebar to allow for comment animation
* Update to new router best practices
* stash
* Various improvements
* stash
* Handle click outside
* Fix incorrect placeholder in input
fix: Input box appearing on other sessions erroneously
* stash
* fix: Don't leave orphaned child comments
* styling
* stash
* Enable comment toggling again
* Edit styling, merge conflicts
* fix: Cannot navigate from insights to comments
* Remove draft comment mark on click outside
* Fix: Empty comment sidebar, tsc
* Remove public toggle
* fix: All comments are recessed
fix: Comments should not be printed
* fix: Associated mark should be removed on comment delete
* Revert unused changes
* Empty state, basic RTL support
* Create dont toggle comment mark
* Make it feel more snappy
* Highlight active comment in text
* fix animation
* RTL support
* Add reply CTA
* Translations
2023-02-25 15:03:05 -05:00
|
|
|
import CommentsStore from "./CommentsStore";
|
2021-10-24 12:30:27 -07:00
|
|
|
import DialogsStore from "./DialogsStore";
|
2020-08-08 22:53:59 -07:00
|
|
|
import DocumentPresenceStore from "./DocumentPresenceStore";
|
2020-06-20 13:59:15 -07:00
|
|
|
import DocumentsStore from "./DocumentsStore";
|
2021-08-05 18:03:55 -04:00
|
|
|
import EventsStore from "./EventsStore";
|
2021-08-29 02:57:07 +05:30
|
|
|
import FileOperationsStore from "./FileOperationsStore";
|
2024-07-17 21:39:13 -04:00
|
|
|
import GroupMembershipsStore from "./GroupMembershipsStore";
|
2024-09-01 09:51:52 -04:00
|
|
|
import GroupUsersStore from "./GroupUsersStore";
|
2020-08-08 22:53:59 -07:00
|
|
|
import GroupsStore from "./GroupsStore";
|
2020-06-20 13:59:15 -07:00
|
|
|
import IntegrationsStore from "./IntegrationsStore";
|
|
|
|
import MembershipsStore from "./MembershipsStore";
|
2023-05-20 10:47:32 -04:00
|
|
|
import NotificationsStore from "./NotificationsStore";
|
2021-12-30 16:54:02 -08:00
|
|
|
import PinsStore from "./PinsStore";
|
2020-06-20 13:59:15 -07:00
|
|
|
import PoliciesStore from "./PoliciesStore";
|
|
|
|
import RevisionsStore from "./RevisionsStore";
|
2021-12-19 11:08:28 -08:00
|
|
|
import SearchesStore from "./SearchesStore";
|
2020-06-20 13:59:15 -07:00
|
|
|
import SharesStore from "./SharesStore";
|
2022-01-21 18:11:50 -08:00
|
|
|
import StarsStore from "./StarsStore";
|
2022-08-26 12:17:13 +05:30
|
|
|
import SubscriptionsStore from "./SubscriptionsStore";
|
2020-06-20 13:59:15 -07:00
|
|
|
import UiStore from "./UiStore";
|
2024-01-31 07:18:22 +05:30
|
|
|
import UserMembershipsStore from "./UserMembershipsStore";
|
2020-06-20 13:59:15 -07:00
|
|
|
import UsersStore from "./UsersStore";
|
|
|
|
import ViewsStore from "./ViewsStore";
|
feat: Webhooks (#3691)
* Webhooks (#3607)
* Get the migration and the model setup. Also make the sample env file a bit easier to use. Now just requires setting a SECRET_KEY and besides that will boot up from the sample
* WIP: Start getting a Webhook page created. Just the skeleton state right now
* WIP: Getting a form created to create webhooks, need to bring in react-hook-forms now
* WIP: Get library installed and make TS happy
* Get a few checkboxes ready to go
* Get creating and destroying working with a decent start to a frontend
* Didn't mean to enable this
* Remove eslint and fix other random typescript issue
* Rename some events to be more realistic
* Revert these changes
* PR review comments around policies. Also make sure this inherits from IdModel so it actually gets an id
* Allow any admin on the team to edit webhooks
* Start sending some webhooks for some User events
* Make sure the URL is valid
* Start recording webhook deliveries
* Make sure to verify if the subscription is for the type of event we are looking at
* Refactor sending Webhooks and follow better webhook schema
This creates a presenter to unify the format of webhooks. We also
extract the sending of webhooks and recording their deliveries to a
method than can be used by each of the different event type methods
We also add a status to WebhookDelivery since we need to save the record
before we make the HTTP request to get its id. Then once we make the
request and get a response we can update the delivery with the HTTP info
* Turn off a subscription that has failed for the last 25 deliveries
* Get a first spec passing. Found a bug in my returning of promises so good to patch that up now
* This looks nicer
* Get some tests added for the processor
* Add cron task to delete older webhooks
* Add Document Events to the Processor
* Revisions, FileOperations and Collections
* Get all the server side events added to the processor and make Typescript make sure they are all accounted for
* Get all the events added to the Frontend and work on styling them a bit, still needs some love though
* Get UI styled up a bit
* Get events wired up for webhook subscriptions
* Get delete events working and test at least one variant of them
* Get deletes working and actually make sure to send the model id in the webhook
* Remove webhook secrets from this slice
* Add disabled label for subscriptions that are disabled
* Make sure to cascade the delete
* Reorg this file a bit
* Fix association
* I removed secret for the moment
* Apply Copy changes from PR Review
Co-authored-by: Tom Moor <tom.moor@gmail.com>
* Actually apply the copy changes
TIL that if you Resolve a conversation it _also_ removes the 'staged suggestion' from your list on Github
Co-authored-by: Tom Moor <tom.moor@gmail.com>
* Update app/scenes/Settings/Webhooks.tsx
Missed this copy change before
Co-authored-by: Tom Moor <tom.moor@gmail.com>
* Add disabled as yellow badge
* Resolve frontend comments
* Fixup Schema a bit and remove the dependency on the subscription
* Add test to make sure we don't disable until there are enough failures, and fix code to actually do that. Also some test fixes from the json response shape changes
* Fix WebhookDeliveries to store the responses as Text instead of blobs
* Switch to text better for response bodies, this is using the helpers better and makes the code read better
* Move the logic to a task but run in through the processor cause the tests expect that right now, moving the tests over next
* Split up the tests and actually enqueue the events from the WebhookProcessor instead of doing them inline
* Allow any team admin to see any webhook subscription for the team
* Add the indexes based on our lookup patterns
* Run eslint --fix to fix auto correct issues from when I tried to use Github to merge copy changes
* Allow subscriptions to be edited after creation
* Types caught that I didn't add the new event to the webhook processor, also added it to the frontend here
* I think this will get these into the translations file
* Catch a few more translations, use styled components better and remove usage of webhook subscription in the copy
Co-authored-by: Tom Moor <tom.moor@gmail.com>
* fix: tsc
fix: Document model payload empty
* fix: Revision webhook payload
Add custom UA for hooks
* Add webhooks icon, move under Integrations settings
Some spacing fixes
* Add actorId to webhook payloads
* Add View and ApiKey event types
* Spacing tweaks, fix team payload
* fix: Webhook not disabled after 25 failures
* fix: Enable webhook when editing if previously disabled
* fix: Correctly store response headers
* fix: Error in json/parsing/presentation results in hanging 'pending' webhook delivery
* fix: Awkward payload for users.invite webhook
* Add BaseEvent, ShareEvent
* fix: Add share events to form
* fix: Move webhook delivery cleanup to single DB call
Remove some unused abstraction
* Add user, collection, group context to membership webhook events
Some associated refactoring
Co-authored-by: Corey Alexander <coreyja@gmail.com>
2022-06-29 08:44:50 +03:00
|
|
|
import WebhookSubscriptionsStore from "./WebhookSubscriptionStore";
|
2023-11-24 12:59:57 -05:00
|
|
|
import Store from "./base/Store";
|
2018-12-04 22:24:30 -08:00
|
|
|
|
|
|
|
export default class RootStore {
|
|
|
|
apiKeys: ApiKeysStore;
|
|
|
|
auth: AuthStore;
|
2022-10-24 17:01:40 -04:00
|
|
|
authenticationProviders: AuthenticationProvidersStore;
|
2018-12-04 22:24:30 -08:00
|
|
|
collections: CollectionsStore;
|
2024-07-17 21:39:13 -04:00
|
|
|
groupMemberships: GroupMembershipsStore;
|
feat: Comments (#4911)
* Comment model
* Framework, model, policy, presenter, api endpoint etc
* Iteration, first pass of UI
* fixes, refactors
* Comment commands
* comment socket support
* typing indicators
* comment component, styling
* wip
* right sidebar resize
* fix: CMD+Enter submit
* Add usePersistedState
fix: Main page scrolling on comment highlight
* drafts
* Typing indicator
* refactor
* policies
* Click thread to highlight
Improve comment timestamps
* padding
* Comment menu v1
* Change comments to use editor
* Basic comment editing
* fix: Hide commenting button when disabled at team level
* Enable opening sidebar without mark
* Move selected comment to location state
* Add comment delete confirmation
* Add comment count to document meta
* fix: Comment sidebar togglable
Add copy link to comment
* stash
* Restore History changes
* Refactor right sidebar to allow for comment animation
* Update to new router best practices
* stash
* Various improvements
* stash
* Handle click outside
* Fix incorrect placeholder in input
fix: Input box appearing on other sessions erroneously
* stash
* fix: Don't leave orphaned child comments
* styling
* stash
* Enable comment toggling again
* Edit styling, merge conflicts
* fix: Cannot navigate from insights to comments
* Remove draft comment mark on click outside
* Fix: Empty comment sidebar, tsc
* Remove public toggle
* fix: All comments are recessed
fix: Comments should not be printed
* fix: Associated mark should be removed on comment delete
* Revert unused changes
* Empty state, basic RTL support
* Create dont toggle comment mark
* Make it feel more snappy
* Highlight active comment in text
* fix animation
* RTL support
* Add reply CTA
* Translations
2023-02-25 15:03:05 -05:00
|
|
|
comments: CommentsStore;
|
2021-10-24 12:30:27 -07:00
|
|
|
dialogs: DialogsStore;
|
2018-12-04 22:24:30 -08:00
|
|
|
documents: DocumentsStore;
|
2021-08-05 18:03:55 -04:00
|
|
|
events: EventsStore;
|
2020-03-14 20:48:32 -07:00
|
|
|
groups: GroupsStore;
|
2024-09-01 09:51:52 -04:00
|
|
|
groupUsers: GroupUsersStore;
|
2018-12-04 22:24:30 -08:00
|
|
|
integrations: IntegrationsStore;
|
2019-10-05 18:42:03 -07:00
|
|
|
memberships: MembershipsStore;
|
2023-05-20 10:47:32 -04:00
|
|
|
notifications: NotificationsStore;
|
2020-01-02 21:17:59 -08:00
|
|
|
presence: DocumentPresenceStore;
|
2021-12-30 16:54:02 -08:00
|
|
|
pins: PinsStore;
|
2019-08-21 21:41:37 -07:00
|
|
|
policies: PoliciesStore;
|
2018-12-04 22:24:30 -08:00
|
|
|
revisions: RevisionsStore;
|
2021-12-19 11:08:28 -08:00
|
|
|
searches: SearchesStore;
|
2018-12-04 22:24:30 -08:00
|
|
|
shares: SharesStore;
|
|
|
|
ui: UiStore;
|
2022-01-21 18:11:50 -08:00
|
|
|
stars: StarsStore;
|
2022-08-26 12:17:13 +05:30
|
|
|
subscriptions: SubscriptionsStore;
|
2018-12-04 22:24:30 -08:00
|
|
|
users: UsersStore;
|
2019-01-08 22:49:20 -08:00
|
|
|
views: ViewsStore;
|
2021-08-29 02:57:07 +05:30
|
|
|
fileOperations: FileOperationsStore;
|
feat: Webhooks (#3691)
* Webhooks (#3607)
* Get the migration and the model setup. Also make the sample env file a bit easier to use. Now just requires setting a SECRET_KEY and besides that will boot up from the sample
* WIP: Start getting a Webhook page created. Just the skeleton state right now
* WIP: Getting a form created to create webhooks, need to bring in react-hook-forms now
* WIP: Get library installed and make TS happy
* Get a few checkboxes ready to go
* Get creating and destroying working with a decent start to a frontend
* Didn't mean to enable this
* Remove eslint and fix other random typescript issue
* Rename some events to be more realistic
* Revert these changes
* PR review comments around policies. Also make sure this inherits from IdModel so it actually gets an id
* Allow any admin on the team to edit webhooks
* Start sending some webhooks for some User events
* Make sure the URL is valid
* Start recording webhook deliveries
* Make sure to verify if the subscription is for the type of event we are looking at
* Refactor sending Webhooks and follow better webhook schema
This creates a presenter to unify the format of webhooks. We also
extract the sending of webhooks and recording their deliveries to a
method than can be used by each of the different event type methods
We also add a status to WebhookDelivery since we need to save the record
before we make the HTTP request to get its id. Then once we make the
request and get a response we can update the delivery with the HTTP info
* Turn off a subscription that has failed for the last 25 deliveries
* Get a first spec passing. Found a bug in my returning of promises so good to patch that up now
* This looks nicer
* Get some tests added for the processor
* Add cron task to delete older webhooks
* Add Document Events to the Processor
* Revisions, FileOperations and Collections
* Get all the server side events added to the processor and make Typescript make sure they are all accounted for
* Get all the events added to the Frontend and work on styling them a bit, still needs some love though
* Get UI styled up a bit
* Get events wired up for webhook subscriptions
* Get delete events working and test at least one variant of them
* Get deletes working and actually make sure to send the model id in the webhook
* Remove webhook secrets from this slice
* Add disabled label for subscriptions that are disabled
* Make sure to cascade the delete
* Reorg this file a bit
* Fix association
* I removed secret for the moment
* Apply Copy changes from PR Review
Co-authored-by: Tom Moor <tom.moor@gmail.com>
* Actually apply the copy changes
TIL that if you Resolve a conversation it _also_ removes the 'staged suggestion' from your list on Github
Co-authored-by: Tom Moor <tom.moor@gmail.com>
* Update app/scenes/Settings/Webhooks.tsx
Missed this copy change before
Co-authored-by: Tom Moor <tom.moor@gmail.com>
* Add disabled as yellow badge
* Resolve frontend comments
* Fixup Schema a bit and remove the dependency on the subscription
* Add test to make sure we don't disable until there are enough failures, and fix code to actually do that. Also some test fixes from the json response shape changes
* Fix WebhookDeliveries to store the responses as Text instead of blobs
* Switch to text better for response bodies, this is using the helpers better and makes the code read better
* Move the logic to a task but run in through the processor cause the tests expect that right now, moving the tests over next
* Split up the tests and actually enqueue the events from the WebhookProcessor instead of doing them inline
* Allow any team admin to see any webhook subscription for the team
* Add the indexes based on our lookup patterns
* Run eslint --fix to fix auto correct issues from when I tried to use Github to merge copy changes
* Allow subscriptions to be edited after creation
* Types caught that I didn't add the new event to the webhook processor, also added it to the frontend here
* I think this will get these into the translations file
* Catch a few more translations, use styled components better and remove usage of webhook subscription in the copy
Co-authored-by: Tom Moor <tom.moor@gmail.com>
* fix: tsc
fix: Document model payload empty
* fix: Revision webhook payload
Add custom UA for hooks
* Add webhooks icon, move under Integrations settings
Some spacing fixes
* Add actorId to webhook payloads
* Add View and ApiKey event types
* Spacing tweaks, fix team payload
* fix: Webhook not disabled after 25 failures
* fix: Enable webhook when editing if previously disabled
* fix: Correctly store response headers
* fix: Error in json/parsing/presentation results in hanging 'pending' webhook delivery
* fix: Awkward payload for users.invite webhook
* Add BaseEvent, ShareEvent
* fix: Add share events to form
* fix: Move webhook delivery cleanup to single DB call
Remove some unused abstraction
* Add user, collection, group context to membership webhook events
Some associated refactoring
Co-authored-by: Corey Alexander <coreyja@gmail.com>
2022-06-29 08:44:50 +03:00
|
|
|
webhookSubscriptions: WebhookSubscriptionsStore;
|
2024-01-31 07:18:22 +05:30
|
|
|
userMemberships: UserMembershipsStore;
|
2018-12-04 22:24:30 -08:00
|
|
|
|
|
|
|
constructor() {
|
2023-11-24 12:59:57 -05:00
|
|
|
// Models
|
|
|
|
this.registerStore(ApiKeysStore);
|
|
|
|
this.registerStore(AuthenticationProvidersStore);
|
|
|
|
this.registerStore(CollectionsStore);
|
2024-07-17 21:39:13 -04:00
|
|
|
this.registerStore(GroupMembershipsStore);
|
2023-11-24 12:59:57 -05:00
|
|
|
this.registerStore(CommentsStore);
|
|
|
|
this.registerStore(DocumentsStore);
|
|
|
|
this.registerStore(EventsStore);
|
|
|
|
this.registerStore(GroupsStore);
|
2024-09-01 09:51:52 -04:00
|
|
|
this.registerStore(GroupUsersStore);
|
2023-11-24 12:59:57 -05:00
|
|
|
this.registerStore(IntegrationsStore);
|
|
|
|
this.registerStore(MembershipsStore);
|
|
|
|
this.registerStore(NotificationsStore);
|
|
|
|
this.registerStore(PinsStore);
|
|
|
|
this.registerStore(PoliciesStore);
|
|
|
|
this.registerStore(RevisionsStore);
|
|
|
|
this.registerStore(SearchesStore);
|
|
|
|
this.registerStore(SharesStore);
|
|
|
|
this.registerStore(StarsStore);
|
|
|
|
this.registerStore(SubscriptionsStore);
|
|
|
|
this.registerStore(UsersStore);
|
|
|
|
this.registerStore(ViewsStore);
|
|
|
|
this.registerStore(FileOperationsStore);
|
|
|
|
this.registerStore(WebhookSubscriptionsStore);
|
2024-01-31 07:18:22 +05:30
|
|
|
this.registerStore(UserMembershipsStore);
|
2023-11-24 12:59:57 -05:00
|
|
|
|
|
|
|
// Non-models
|
|
|
|
this.registerStore(DocumentPresenceStore, "presence");
|
|
|
|
this.registerStore(DialogsStore, "dialogs");
|
|
|
|
this.registerStore(UiStore, "ui");
|
2023-10-28 12:43:50 -04:00
|
|
|
|
|
|
|
// AuthStore must be initialized last as it makes use of the other stores.
|
2023-11-24 12:59:57 -05:00
|
|
|
this.registerStore(AuthStore, "auth");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a store by model name.
|
|
|
|
*
|
|
|
|
* @param modelName
|
|
|
|
*/
|
2024-10-11 15:46:46 -04:00
|
|
|
public getStoreForModelName<K extends keyof RootStore>(modelName: string) {
|
2023-11-24 12:59:57 -05:00
|
|
|
const storeName = this.getStoreNameForModelName(modelName);
|
|
|
|
const store = this[storeName];
|
|
|
|
invariant(store, `No store found for model name "${modelName}"`);
|
2024-10-11 15:46:46 -04:00
|
|
|
return store as RootStore[K];
|
2018-12-04 22:24:30 -08:00
|
|
|
}
|
|
|
|
|
2023-11-24 12:59:57 -05:00
|
|
|
/**
|
|
|
|
* Clear all data from the stores except for auth and ui.
|
|
|
|
*/
|
|
|
|
public clear() {
|
2023-04-08 08:25:20 -04:00
|
|
|
Object.getOwnPropertyNames(this)
|
|
|
|
.filter((key) => ["auth", "ui"].includes(key) === false)
|
2024-10-11 15:46:46 -04:00
|
|
|
.forEach((key: keyof RootStore) => {
|
|
|
|
// @ts-expect-error clear exists on all stores
|
|
|
|
"clear" in this[key] && this[key].clear();
|
2023-04-08 08:25:20 -04:00
|
|
|
});
|
2018-12-04 22:24:30 -08:00
|
|
|
}
|
2023-11-24 12:59:57 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a store with the root store.
|
|
|
|
*
|
|
|
|
* @param StoreClass
|
|
|
|
*/
|
2024-10-11 15:46:46 -04:00
|
|
|
private registerStore<T = typeof Store>(
|
|
|
|
StoreClass: T,
|
|
|
|
name?: keyof RootStore
|
|
|
|
) {
|
2023-11-24 12:59:57 -05:00
|
|
|
// @ts-expect-error TS thinks we are instantiating an abstract class.
|
|
|
|
const store = new StoreClass(this);
|
|
|
|
const storeName = name ?? this.getStoreNameForModelName(store.modelName);
|
|
|
|
this[storeName] = store;
|
|
|
|
}
|
|
|
|
|
|
|
|
private getStoreNameForModelName(modelName: string) {
|
2024-10-11 15:46:46 -04:00
|
|
|
return pluralize(lowerFirst(modelName)) as keyof RootStore;
|
2023-11-24 12:59:57 -05:00
|
|
|
}
|
2018-12-04 22:24:30 -08:00
|
|
|
}
|