mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
86 lines
1.9 KiB
TypeScript
86 lines
1.9 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-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.
|
|
*/
|
|
|
|
// note: contains only limited subset of available fields
|
|
|
|
import { NodeEntry, Node } from '@alfresco/js-api';
|
|
|
|
export class NodePaging {
|
|
list: NodePagingList;
|
|
}
|
|
|
|
export class NodePagingList {
|
|
pagination: Pagination;
|
|
entries: NodeMinimalEntry[];
|
|
}
|
|
|
|
export class NodeMinimalEntry implements NodeEntry {
|
|
entry: NodeMinimal;
|
|
}
|
|
|
|
export class Pagination {
|
|
count: number;
|
|
hasMoreItems: boolean;
|
|
totalItems: number;
|
|
skipCount: number;
|
|
maxItems: number;
|
|
}
|
|
|
|
export class NodeMinimal implements Node {
|
|
id: string;
|
|
parentId: string;
|
|
name: string;
|
|
nodeType: string;
|
|
isFolder: boolean;
|
|
isFile: boolean;
|
|
modifiedAt: Date;
|
|
modifiedByUser: UserInfo;
|
|
createdAt: Date;
|
|
createdByUser: UserInfo;
|
|
content: ContentInfo;
|
|
path: PathInfoEntity;
|
|
properties: NodeProperties = {};
|
|
aspectNames: string[];
|
|
}
|
|
|
|
export class UserInfo {
|
|
displayName: string;
|
|
id: string;
|
|
}
|
|
|
|
export class ContentInfo {
|
|
mimeType: string;
|
|
mimeTypeName: string;
|
|
sizeInBytes: number;
|
|
encoding: string;
|
|
}
|
|
|
|
export class PathInfoEntity {
|
|
elements: PathElementEntity[];
|
|
isComplete: boolean;
|
|
name: string;
|
|
}
|
|
|
|
export class PathElementEntity {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface NodeProperties {
|
|
[key: string]: any;
|
|
}
|