// // Copyright © 2020, 2021 Anticrm Platform Contributors. // Copyright © 2021 Hardcore Engineering Inc. // // Licensed under the Eclipse Public License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. You may // obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // // See the License for the specific language governing permissions and // limitations under the License. // import { type Class, type Client, type Doc, type DocumentQuery, type FindOptions, type FindResult, type Mixin, type Ref, type SearchOptions, type SearchQuery, type SearchResult, type Tx, type TxResult, type WithLookup } from '@hcengineering/core' import type { Asset, IntlString, Metadata, Plugin, StatusCode } from '@hcengineering/platform' import { plugin } from '@hcengineering/platform' import { type ComponentExtensionId } from '@hcengineering/ui' import { type PresentationMiddlewareFactory } from './pipeline' import type { PreviewConfig } from './preview' import { type ComponentPointExtension, type DocCreateExtension, type DocRules, type FilePreviewExtension, type InstantTransactions, type ObjectSearchCategory } from './types' /** * @public */ export const presentationId = 'presentation' as Plugin /** * @public */ export interface ClientHook { findAll: ( client: Client, _class: Ref>, query: DocumentQuery, options?: FindOptions ) => Promise> findOne: ( client: Client, _class: Ref>, query: DocumentQuery, options?: FindOptions ) => Promise | undefined> tx: (client: Client, tx: Tx) => Promise searchFulltext: (client: Client, query: SearchQuery, options: SearchOptions) => Promise } export default plugin(presentationId, { class: { ObjectSearchCategory: '' as Ref>, PresentationMiddlewareFactory: '' as Ref>, ComponentPointExtension: '' as Ref>, DocCreateExtension: '' as Ref>, DocRules: '' as Ref>, FilePreviewExtension: '' as Ref> }, mixin: { InstantTransactions: '' as Ref> }, string: { Create: '' as IntlString, Cancel: '' as IntlString, Ok: '' as IntlString, Save: '' as IntlString, Saved: '' as IntlString, Download: '' as IntlString, Delete: '' as IntlString, Close: '' as IntlString, NotSelected: '' as IntlString, Deselect: '' as IntlString, Archived: '' as IntlString, AddSocialLinks: '' as IntlString, EditSocialLinks: '' as IntlString, Change: '' as IntlString, Remove: '' as IntlString, Search: '' as IntlString, Spaces: '' as IntlString, NumberMembers: '' as IntlString, NumberSpaces: '' as IntlString, InThis: '' as IntlString, NoMatchesInThis: '' as IntlString, NoMatchesFound: '' as IntlString, NotInThis: '' as IntlString, Match: '' as IntlString, Add: '' as IntlString, Edit: '' as IntlString, DocumentPreview: '' as IntlString, MakePrivate: '' as IntlString, MakePrivateDescription: '' as IntlString, OpenInANewTab: '' as IntlString, Created: '' as IntlString, NoResults: '' as IntlString, Next: '' as IntlString, FailedToPreview: '' as IntlString, ContentType: '' as IntlString, ContentTypeNotSupported: '' as IntlString }, extension: { FilePreviewExtension: '' as ComponentExtensionId }, metadata: { RequiredVersion: '' as Metadata, Draft: '' as Metadata>, UploadURL: '' as Metadata, CollaboratorUrl: '' as Metadata, CollaboratorApiUrl: '' as Metadata, Token: '' as Metadata, Endpoint: '' as Metadata, FrontUrl: '' as Asset, PreviewConfig: '' as Metadata, ClientHook: '' as Metadata }, status: { FileTooLarge: '' as StatusCode } })