ode-ngjs-front 1.2.6-dev-produit.202302201114 → 1.2.6-feat-produit.202302201120

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/ode-ngjs-front.js +5 -5
  2. package/dist/ode-ngjs-front.js.map +1 -1
  3. package/dist/ts/directives/business/share/share-panel.directive.d.ts +0 -155
  4. package/dist/ts/directives/business/share/share-panel.directive.d.ts.map +1 -1
  5. package/dist/ts/directives/index.d.ts +0 -9
  6. package/dist/ts/directives/index.d.ts.map +1 -1
  7. package/dist/ts/modules/explorer.module.d.ts +0 -5
  8. package/dist/ts/modules/explorer.module.d.ts.map +1 -1
  9. package/dist/ts/modules/index.d.ts +0 -2
  10. package/dist/ts/modules/index.d.ts.map +1 -1
  11. package/dist/version.txt +1 -1
  12. package/package.json +2 -2
  13. package/dist/5a177ed9e4e64baa8287a6f6e5625ab4.html +0 -127
  14. package/dist/d6dec5bea5ec25a97b20e8259e193c57.html +0 -162
  15. package/dist/e42fe8833e44d61abdaa936837b6b949.html +0 -10
  16. package/dist/f3f8289907cc5f53b11e2bc5f451be96.html +0 -31
  17. package/dist/ts/directives/business/explorer/domino-folder.directive.d.ts +0 -28
  18. package/dist/ts/directives/business/explorer/domino-folder.directive.d.ts.map +0 -1
  19. package/dist/ts/directives/business/explorer/domino-item.directive.d.ts +0 -27
  20. package/dist/ts/directives/business/explorer/domino-item.directive.d.ts.map +0 -1
  21. package/dist/ts/directives/business/explorer/explorer.directive.d.ts +0 -44
  22. package/dist/ts/directives/business/explorer/explorer.directive.d.ts.map +0 -1
  23. package/dist/ts/directives/business/explorer/resource-list.directive.d.ts +0 -37
  24. package/dist/ts/directives/business/explorer/resource-list.directive.d.ts.map +0 -1
  25. package/dist/ts/directives/business/explorer/sidebar-folder.directive.d.ts +0 -41
  26. package/dist/ts/directives/business/explorer/sidebar-folder.directive.d.ts.map +0 -1
  27. package/dist/ts/directives/business/explorer/sidebar.directive.d.ts +0 -26
  28. package/dist/ts/directives/business/explorer/sidebar.directive.d.ts.map +0 -1
  29. package/dist/ts/directives/business/toaster/toaster.directive.d.ts +0 -69
  30. package/dist/ts/directives/business/toaster/toaster.directive.d.ts.map +0 -1
  31. package/dist/ts/models/ui.model.d.ts +0 -18
  32. package/dist/ts/models/ui.model.d.ts.map +0 -1
@@ -1,156 +1 @@
1
- import { IAttributes, IController, IDirective, IScope } from "angular";
2
- import { Shareable, ShareVisible, SharePayload, ShareInfos, ShareAction } from "../../../legacy/rights";
3
- import { UiModel } from "../../../models/ui.model";
4
- import { NotifyService } from '../../../services/notify.service';
5
- export declare const appPrefix: string;
6
- export declare const infraPrefix: string;
7
- export interface ShareCloseDelegate {
8
- $canceled: boolean;
9
- $close: () => void;
10
- }
11
- export interface ShareableWithId extends Shareable {
12
- _id: string;
13
- }
14
- declare type tofix = void;
15
- export declare class SharePanelController implements IController {
16
- private $scope;
17
- private notify;
18
- display: {
19
- showSaveSharebookmarkInput: boolean;
20
- sharebookmarkSaved: boolean;
21
- workflowAllowSharebookmarks: boolean;
22
- showCloseConfirmation: boolean;
23
- showBookmarkMembers: boolean;
24
- search: {
25
- processing: Boolean;
26
- };
27
- };
28
- sharing: {
29
- actions?: ShareAction[];
30
- };
31
- varyingRights: boolean | undefined;
32
- varyingRightsI18nKey: string | undefined;
33
- editResources: Shareable[];
34
- sharingModel: ShareInfos & {
35
- edited: any[];
36
- editedInherited: any[];
37
- changed?: boolean;
38
- sharebookmarks?: any;
39
- };
40
- appPrefix: string;
41
- shareTable: string;
42
- resources: Array<ShareableWithId>;
43
- maxResults: number;
44
- translate?: Function;
45
- actions: ShareAction[] | undefined;
46
- search: string;
47
- found: ShareVisible[];
48
- maxEdit: number;
49
- shareOverrideDefaultActions: string[] | undefined;
50
- newSharebookmarkName: string;
51
- constructor($scope: IDirectiveScope, notify: NotifyService);
52
- model: UiModel;
53
- autoClose?: boolean;
54
- onValidate?(args: {
55
- $data: SharePayload;
56
- $resource: ShareableWithId;
57
- $actions: ShareAction[];
58
- }): tofix;
59
- canEditDelegate?(args: {
60
- $item: {
61
- type: string;
62
- id: string;
63
- };
64
- }): boolean;
65
- confirmationCloseDelegate?(args: ShareCloseDelegate): tofix;
66
- closeDelegate?(args: ShareCloseDelegate): tofix;
67
- onCancel?(): tofix;
68
- onSubmit?(args: {
69
- $shared: SharePayload;
70
- }): tofix;
71
- onFeed?(args: {
72
- $data: ShareInfos;
73
- $resource: ShareableWithId;
74
- $actions: ShareAction[];
75
- }): tofix;
76
- $onInit(): void;
77
- $postLink(): void;
78
- /** get directory workflow to manage allowSharebookmarks workflow */
79
- private loadDirectoryWorkflow;
80
- private loadAppBehavioursSharingConf;
81
- canEdit(item: {
82
- type: string;
83
- id: string;
84
- }): boolean;
85
- isSubmitDisabled(): boolean;
86
- createSharebookmark(newSharebookmarkName: string): void;
87
- typeSort(value: any): number;
88
- remove(element: ShareVisible): void;
89
- displayMore(): void;
90
- private requiredActions;
91
- changeAction(item: {
92
- type: string;
93
- users: {
94
- actions: {
95
- [x: string]: any;
96
- };
97
- }[];
98
- actions: {
99
- [x: string]: any;
100
- };
101
- groups: {
102
- actions: {
103
- [x: string]: any;
104
- };
105
- }[];
106
- id: any;
107
- hide: boolean;
108
- }, action: ShareAction): void;
109
- private actionToRights;
110
- private rightsToActions;
111
- share(): Promise<void>;
112
- private usersCache;
113
- findUserOrGroup(): any;
114
- addResults(): void;
115
- private actionsConfiguration;
116
- addEdit(item: ShareVisible): void;
117
- setActions(actions: Array<ShareAction>): void;
118
- clearSearch(): void;
119
- canShowMore(): boolean;
120
- getColor(profile?: string | Array<string>): string | undefined;
121
- private differentRights;
122
- private onFeedEvent;
123
- private feeding;
124
- feedData(): void;
125
- }
126
- interface IDirectiveScope extends IScope {
127
- closePanel?(cancelled: boolean): Promise<void>;
128
- revertClose?(): void;
129
- }
130
- declare class Directive implements IDirective<IDirectiveScope, JQLite, IAttributes, IController[]> {
131
- restrict: string;
132
- templateUrl: any;
133
- scope: {
134
- onCancel: string;
135
- onSubmit: string;
136
- onValidate: string;
137
- onFeed: string;
138
- closeDelegate: string;
139
- confirmationCloseDelegate: string;
140
- canEditDelegate: string;
141
- autoClose: string;
142
- };
143
- bindToController: boolean;
144
- controller: (string | typeof SharePanelController)[];
145
- controllerAs: string;
146
- require: string[];
147
- link(scope: IDirectiveScope, element: JQLite, attrs: IAttributes, controllers?: IController[]): void;
148
- }
149
- /** The share-panel directive.
150
- *
151
- * Usage:
152
- *
153
- */
154
- export declare function DirectiveFactory(): Directive;
155
- export {};
156
1
  //# sourceMappingURL=share-panel.directive.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"share-panel.directive.d.ts","sourceRoot":"","sources":["../../../../../src/ts/directives/business/share/share-panel.directive.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"share-panel.directive.d.ts","sourceRoot":"","sources":["../../../../../src/ts/directives/business/share/share-panel.directive.ts"],"names":[],"mappings":""}
@@ -1,14 +1,5 @@
1
- export * as Explorer from './business/explorer/explorer.directive';
2
- export * as Sidebar from './business/explorer/sidebar.directive';
3
- export * as SidebarFolder from './business/explorer/sidebar-folder.directive';
4
- export * as ResourceList from './business/explorer/resource-list.directive';
5
- export * as DominoFolder from './business/explorer/domino-folder.directive';
6
- export * as DominoItem from './business/explorer/domino-item.directive';
7
- export * as Toaster from './business/toaster/toaster.directive';
8
1
  export * as Modal from './components/modal/modal.directive';
9
2
  export * as ModalContainer from './components/modal/modal-container.directive';
10
- export * as PropsPanel from './business/props/props-panel.directive';
11
- export * as SharePanel from './business/share/share-panel.directive';
12
3
  export * as Translate from './components/i18n/translate.directive';
13
4
  export * as I18n from './components/i18n/i18n.directive';
14
5
  export * as I18nValue from './components/i18n/i18n-value.directive';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ts/directives/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,QAAQ,MAAM,wCAAwC,CAAC;AACnE,OAAO,KAAK,OAAO,MAAM,uCAAuC,CAAC;AACjE,OAAO,KAAK,aAAa,MAAM,8CAA8C,CAAC;AAC9E,OAAO,KAAK,YAAY,MAAM,6CAA6C,CAAC;AAC5E,OAAO,KAAK,YAAY,MAAM,6CAA6C,CAAC;AAC5E,OAAO,KAAK,UAAU,MAAM,2CAA2C,CAAC;AACxE,OAAO,KAAK,OAAO,MAAM,sCAAsC,CAAC;AAChE,OAAO,KAAK,KAAK,MAAM,oCAAoC,CAAC;AAC5D,OAAO,KAAK,cAAc,MAAM,8CAA8C,CAAC;AAC/E,OAAO,KAAK,UAAU,MAAM,wCAAwC,CAAC;AACrE,OAAO,KAAK,UAAU,MAAM,wCAAwC,CAAC;AAGrE,OAAO,KAAK,SAAS,MAAM,uCAAuC,CAAC;AACnE,OAAO,KAAK,IAAI,MAAM,kCAAkC,CAAC;AACzD,OAAO,KAAK,SAAS,MAAM,wCAAwC,CAAC;AACpE,OAAO,KAAK,SAAS,MAAM,wCAAwC,CAAC;AACpE,OAAO,KAAK,eAAe,MAAM,8CAA8C,CAAC;AAChF,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAE5D,OAAO,KAAK,iBAAiB,MAAM,sDAAsD,CAAC;AAC1F,OAAO,KAAK,SAAS,MAAM,8CAA8C,CAAC;AAC1E,OAAO,KAAK,UAAU,MAAM,+CAA+C,CAAC;AAC5E,OAAO,KAAK,UAAU,MAAM,+CAA+C,CAAC;AAC5E,OAAO,KAAK,aAAa,MAAM,kDAAkD,CAAC;AAClF,OAAO,KAAK,WAAW,MAAM,gDAAgD,CAAC;AAC9E,OAAO,KAAK,UAAU,MAAM,+CAA+C,CAAC;AAE5E,OAAO,KAAK,QAAQ,MAAM,4CAA4C,CAAC;AACvE,OAAO,KAAK,SAAS,MAAM,yCAAyC,CAAC;AACrE,OAAO,KAAK,MAAM,MAAM,sCAAsC,CAAC;AAC/D,OAAO,KAAK,OAAO,MAAM,wCAAwC,CAAC;AAClE,OAAO,KAAK,cAAc,MAAM,gDAAgD,CAAC;AACjF,OAAO,KAAK,aAAa,MAAM,+CAA+C,CAAC;AAC/E,OAAO,KAAK,QAAQ,MAAM,uCAAuC,CAAC;AAClE,OAAO,KAAK,iBAAiB,MAAM,gDAAgD,CAAC;AACpF,OAAO,KAAK,WAAW,MAAM,0CAA0C,CAAC;AACxE,OAAO,KAAK,IAAI,MAAM,kCAAkC,CAAC;AACzD,OAAO,KAAK,YAAY,MAAM,kDAAkD,CAAC;AACjF,OAAO,KAAK,QAAQ,MAAM,sCAAsC,CAAC;AACjE,OAAO,KAAK,IAAI,MAAM,kCAAkC,CAAC;AAGzD,OAAO,KAAK,MAAM,MAAM,oCAAoC,CAAC;AAC7D,OAAO,KAAK,MAAM,MAAM,oCAAoC,CAAC;AAC7D,OAAO,KAAK,SAAS,MAAM,uCAAuC,CAAC;AACnE,OAAO,KAAK,OAAO,MAAM,qCAAqC,CAAC;AAC/D,OAAO,KAAK,MAAM,MAAM,oCAAoC,CAAC;AAC7D,OAAO,KAAK,OAAO,MAAM,sCAAsC,CAAC;AAChE,OAAO,KAAK,QAAQ,MAAM,qCAAqC,CAAA;AAC/D,OAAO,KAAK,eAAe,MAAM,qCAAqC,CAAC;AACvE,OAAO,KAAK,MAAM,MAAM,2BAA2B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ts/directives/index.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,KAAK,MAAM,oCAAoC,CAAC;AAC5D,OAAO,KAAK,cAAc,MAAM,8CAA8C,CAAC;AAK/E,OAAO,KAAK,SAAS,MAAM,uCAAuC,CAAC;AACnE,OAAO,KAAK,IAAI,MAAM,kCAAkC,CAAC;AACzD,OAAO,KAAK,SAAS,MAAM,wCAAwC,CAAC;AACpE,OAAO,KAAK,SAAS,MAAM,wCAAwC,CAAC;AACpE,OAAO,KAAK,eAAe,MAAM,8CAA8C,CAAC;AAChF,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAE5D,OAAO,KAAK,iBAAiB,MAAM,sDAAsD,CAAC;AAC1F,OAAO,KAAK,SAAS,MAAM,8CAA8C,CAAC;AAC1E,OAAO,KAAK,UAAU,MAAM,+CAA+C,CAAC;AAC5E,OAAO,KAAK,UAAU,MAAM,+CAA+C,CAAC;AAC5E,OAAO,KAAK,aAAa,MAAM,kDAAkD,CAAC;AAClF,OAAO,KAAK,WAAW,MAAM,gDAAgD,CAAC;AAC9E,OAAO,KAAK,UAAU,MAAM,+CAA+C,CAAC;AAE5E,OAAO,KAAK,QAAQ,MAAM,4CAA4C,CAAC;AACvE,OAAO,KAAK,SAAS,MAAM,yCAAyC,CAAC;AACrE,OAAO,KAAK,MAAM,MAAM,sCAAsC,CAAC;AAC/D,OAAO,KAAK,OAAO,MAAM,wCAAwC,CAAC;AAClE,OAAO,KAAK,cAAc,MAAM,gDAAgD,CAAC;AACjF,OAAO,KAAK,aAAa,MAAM,+CAA+C,CAAC;AAC/E,OAAO,KAAK,QAAQ,MAAM,uCAAuC,CAAC;AAClE,OAAO,KAAK,iBAAiB,MAAM,gDAAgD,CAAC;AACpF,OAAO,KAAK,WAAW,MAAM,0CAA0C,CAAC;AACxE,OAAO,KAAK,IAAI,MAAM,kCAAkC,CAAC;AACzD,OAAO,KAAK,YAAY,MAAM,kDAAkD,CAAC;AACjF,OAAO,KAAK,QAAQ,MAAM,sCAAsC,CAAC;AACjE,OAAO,KAAK,IAAI,MAAM,kCAAkC,CAAC;AAGzD,OAAO,KAAK,MAAM,MAAM,oCAAoC,CAAC;AAC7D,OAAO,KAAK,MAAM,MAAM,oCAAoC,CAAC;AAC7D,OAAO,KAAK,SAAS,MAAM,uCAAuC,CAAC;AACnE,OAAO,KAAK,OAAO,MAAM,qCAAqC,CAAC;AAC/D,OAAO,KAAK,MAAM,MAAM,oCAAoC,CAAC;AAC7D,OAAO,KAAK,OAAO,MAAM,sCAAsC,CAAC;AAChE,OAAO,KAAK,QAAQ,MAAM,qCAAqC,CAAA;AAC/D,OAAO,KAAK,eAAe,MAAM,qCAAqC,CAAC;AACvE,OAAO,KAAK,MAAM,MAAM,2BAA2B,CAAC"}
@@ -1,6 +1 @@
1
- import { IModule } from "angular";
2
- /**
3
- * The "odeExplorerModule" angularjs module is an all-in-one resources exploration toolkit.
4
- */
5
- export declare function odeExplorerModule(): IModule;
6
1
  //# sourceMappingURL=explorer.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"explorer.module.d.ts","sourceRoot":"","sources":["../../../src/ts/modules/explorer.module.ts"],"names":[],"mappings":"AAAA,OAAgB,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAM3C;;GAEG;AACF,wBAAgB,iBAAiB,IAAG,OAAO,CAe1C"}
1
+ {"version":3,"file":"explorer.module.d.ts","sourceRoot":"","sources":["../../../src/ts/modules/explorer.module.ts"],"names":[],"mappings":""}
@@ -18,7 +18,5 @@ export declare abstract class OdeModules {
18
18
  static getUi(): string;
19
19
  /** Widgets module : declares lazy loaded directives (widgets for the timeline) */
20
20
  static getWidgets(): string;
21
- /** Explorer module. Declares components for exploring assets from resource-producing apps. */
22
- static getExplorer(): string;
23
21
  }
24
22
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ts/modules/index.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;GAUG;AACH,8BAAsB,UAAU;IAC5B,sGAAsG;IACtG,MAAM,CAAC,OAAO,IAAG,MAAM;IAGvB,uFAAuF;IACvF,MAAM,CAAC,OAAO,IAAG,MAAM;IAGvB,uEAAuE;IACvE,MAAM,CAAC,KAAK,IAAG,MAAM;IAGrB,kFAAkF;IAClF,MAAM,CAAC,UAAU,IAAG,MAAM;IAG1B,8FAA8F;IAC9F,MAAM,CAAC,WAAW,IAAG,MAAM;CAG9B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ts/modules/index.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;GAUG;AACH,8BAAsB,UAAU;IAC5B,sGAAsG;IACtG,MAAM,CAAC,OAAO,IAAG,MAAM;IAGvB,uFAAuF;IACvF,MAAM,CAAC,OAAO,IAAG,MAAM;IAGvB,uEAAuE;IACvE,MAAM,CAAC,KAAK,IAAG,MAAM;IAGrB,kFAAkF;IAClF,MAAM,CAAC,UAAU,IAAG,MAAM;CAO7B"}
package/dist/version.txt CHANGED
@@ -1 +1 @@
1
- ode-ngjs-front=1.2-dev-produit-SNAPSHOT 20/02/2023 11:14:49
1
+ ode-ngjs-front=1.2-feat-produit-SNAPSHOT 20/02/2023 11:21:50
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ode-ngjs-front",
3
- "version": "1.2.6-dev-produit.202302201114",
3
+ "version": "1.2.6-feat-produit.202302201120",
4
4
  "description": "Open Digital Education Frontend Framework",
5
5
  "main": "dist/ts/index.js",
6
6
  "types": "dist/ts/index.d.ts",
@@ -51,7 +51,7 @@
51
51
  "karma-chrome-launcher": "^3.1.0",
52
52
  "karma-jasmine": "^4.0.1",
53
53
  "moment-locales-webpack-plugin": "~1.2.0",
54
- "ode-ts-client": "dev-produit",
54
+ "ode-ts-client": "feat-explorer",
55
55
  "terser-webpack-plugin": "5.1.4",
56
56
  "ts-loader": "^8.0.18",
57
57
  "typescript": "4.2.2",
@@ -1,127 +0,0 @@
1
- <div class="share temp">
2
- <div class="line">
3
- <form name="sharePanelForm">
4
- <div>
5
- <button class="panel-button right-magnet" ng-click="ctrl.share()" ng-disabled="ctrl.isSubmitDisabled()">
6
- <i18n>share</i18n>
7
- </button>
8
- <div class="block" ng-if="ctrl.varyingRights">
9
- <div class="warning">
10
- <span class="no-style" translate content="[[ctrl.varyingRightsI18nKey]]"></span>
11
- </div>
12
- </div>
13
- </div>
14
-
15
- <div class="groups-list">
16
- <div>
17
- <ng-include src="ctrl.shareTable"></ng-include>
18
- </div>
19
-
20
- <div class="flex-row justify-between align-center">
21
- <div class="saveSharebookmark">
22
- <div class="flex-row align-center"
23
- ng-if="ctrl.display.showSaveSharebookmarkInput === false && ctrl.display.sharebookmarkSaved === false && ctrl.sharingModel.edited.length > 0"
24
- workflow="directory.allowSharebookmarks">
25
- <a class="hover-icon" ng-click="ctrl.display.showSaveSharebookmarkInput = true">
26
- <i class="add-favorite cell"></i> <i18n>share.save.sharebookmark</i18n>
27
- </a>
28
- </div>
29
- <div class="flex-row" ng-if="ctrl.display.showSaveSharebookmarkInput === true && ctrl.display.sharebookmarkSaved === false"
30
- workflow="directory.allowSharebookmarks">
31
- <input class="cell"
32
- type="text"
33
- ng-model="ctrl.newSharebookmarkName"
34
- i18n-placeholder="share.mysharebookmark"
35
- required
36
- ng-minlength="1">
37
- <a class="button is-light uppercase"
38
- ng-click="ctrl.createSharebookmark(newSharebookmarkName)"
39
- ng-disabled="!ctrl.newSharebookmarkName || ctrl.sharingModel.edited.length < 1">
40
- <i18n>ok</i18n>
41
- </a>
42
- </div>
43
- <div ng-if="ctrl.display.sharebookmarkSaved === true" workflow="directory.allowSharebookmarks">
44
- <span class="italic-text saved-in"><i18n>share.save.sharebookmark.in</i18n></span>
45
- <a href="/userbook/annuaire#/search" target="_blank" rel="noopener"><i18n>share.mysharebookmarks</i18n></a>
46
- </div>
47
- </div>
48
-
49
- <a ng-click="ctrl.displayMore()"
50
- ng-if="ctrl.canShowMore()"
51
- class="display-more">
52
- <i18n>share.more</i18n>
53
- </a>
54
- </div>
55
- </div>
56
- </form>
57
- </div>
58
-
59
- <div class="bottom-spacing-twice">
60
- <div class="flex-row align-center">
61
- <h2 class= "size-auto">
62
- <span ng-if="!ctrl.display.workflowAllowSharebookmarks || ctrl.display.workflowAllowSharebookmarks == false">[[ctrl.translate('share.search.title')]]</span>
63
- <span workflow="directory.allowSharebookmarks">[[ctrl.translate('share.search.sharebookmark.title')]]</span>
64
- </h2>
65
- <span class="tipbox up" workflow="directory.allowSharebookmarks">
66
- <div>
67
- <i class="help sticker square-medium"></i>
68
- </div>
69
- <div class="tipbox-content top">
70
- <span class="small-text">
71
- <i18n>share.tip.addFavorite</i18n>
72
- </span>
73
- </div>
74
- </span>
75
- </div>
76
-
77
- <search-user class="twelve cell"
78
- ng-model="ctrl.search"
79
- clear-list="ctrl.clearSearch()"
80
- on-send="ctrl.findUserOrGroup()"
81
- search-track="ctrl.display.search">
82
- </search-user>
83
- <div class="found-users-list">
84
- <div ng-repeat="item in ctrl.found | orderBy:[typeSort, 'name', 'username'] | limitTo:ctrl.maxResults" class="autocomplete temp">
85
- <div ng-click="ctrl.addEdit(item)" class="">
86
- <a class="cell right-spacing" ng-class="{sharebookmark: item.type === 'sharebookmark'}">
87
- <i class="add-favorite cell" ng-if="item.type === 'sharebookmark'"></i>
88
- <!-- group or sharebookmark name -->
89
- <span ng-if="item.name">[[item.name]]</span>
90
- <!-- user displayName -->
91
- <span ng-if="item.username">[[item.username]]</span>
92
- </a>
93
- <!-- structureName for groups -->
94
- <em ng-if="item.structureName" class="low-importance">[[item.structureName]]</em>
95
- <!-- profile for users -->
96
- <em ng-if="item.profile" class="low-importance">[[ctrl.translate(item.profile)]]</em>
97
- </div>
98
- </div>
99
- <div class="" ng-if="ctrl.found.length === 0 && !ctrl.display.search.processing">
100
- <div class="spacer-small"></div>
101
- <label class="low-importance medium-importance italic-text" ng-if="ctrl.search.length >= 3" user-role="ADMIN_LOCAL">
102
- <i18n>portal.no.result</i18n>
103
- </label>
104
- <label class="low-importance medium-importance italic-text" ng-if="ctrl.search.length" user-missing-role="ADMIN_LOCAL">
105
- <i18n>portal.no.result</i18n>
106
- </label>
107
- </div>
108
- <div class="">
109
- <a ng-click="ctrl.addResults()" ng-if="ctrl.found.length > ctrl.maxResults" class="right-magnet reduce-block-four">
110
- <i18n>seemore</i18n>
111
- </a>
112
- </div>
113
- </div>
114
- </div>
115
- </div>
116
-
117
- <div ng-show="ctrl.display.showCloseConfirmation === true">
118
- <h1><i18n>sharepanel.close.title</i18n></h1>
119
- <div>
120
- <p><i18n>sharepanel.close.explanation</i18n></p>
121
- <p><i18n>sharepanel.close.confirmation</i18n></p>
122
- </div>
123
- <div class="">
124
- <button ng-click="closePanel()" class="right-magnet"><i18n>sharepanel.close.confirm</i18n></button>
125
- <button ng-click="revertClose()" class="right-magnet cancel"><i18n>cancel</i18n></button>
126
- </div>
127
- </div>
@@ -1,162 +0,0 @@
1
- <div class="responsive-table">
2
-
3
- <div class="">
4
- <table>
5
- <!-- Action headers -->
6
- <thead>
7
- <th></th>
8
- <th ng-repeat="action in ctrl.actions | orderBy:'priority'">[[ctrl.translate(action.displayName)]]</th>
9
- <th></th>
10
- </thead>
11
-
12
- <!-- Me line -->
13
- <tbody>
14
- <tr>
15
- <td><i18n>share.me</i18n></td>
16
- <td ng-repeat="action in ctrl.actions | orderBy:'priority'" data-label="[[ctrl.translate(action.displayName)]]">
17
- <label class="checkbox">
18
- <input type="checkbox" checked disabled /><span></span>
19
- </label>
20
- </td>
21
- <td></td>
22
- </tr>
23
- </tbody>
24
-
25
- <!-- Inherit lines -->
26
- <tbody ng-repeat="item in ctrl.sharingModel.editedInherited | orderBy:'index':true | limitTo:ctrl.maxEdit" ng-if="!item.hide || item.hide != true">
27
- <tr ng-class="{'nested-root': item.type == 'sharebookmark'}">
28
-
29
- <!-- Sharebookmarks -->
30
- <td ng-if="item.type === 'sharebookmark'" ng-click="ctrl.display.showBookmarkMembers = !ctrl.display.showBookmarkMembers" class="flex-row twelve align-center">
31
- <i class="add-favorite"></i>
32
- <span>[[item.name]]</span>
33
- <i class="down-open" ng-if="ctrl.display.showBookmarkMembers === false"></i>
34
- <i class="up-open" ng-if="ctrl.display.showBookmarkMembers === true"></i>
35
- </td>
36
-
37
- <!-- Users and Groups -->
38
- <td ng-if="item.type === 'user' || item.type === 'group'" class="flex-row twelve align-center">
39
- <div class="round bg-white square-normal right-spacing no-shrink">
40
- <img ng-if="item.type === 'user'" ng-src="/userbook/avatar/[[item.id]]?thumbnail=100x100" />
41
- <img ng-if="item.type === 'group'" skin-src="/img/illustrations/group-avatar.svg" />
42
- </div>
43
-
44
- <div ng-if="item.type === 'user'" class="circle square-mini right-spacing" ng-class="ctrl.getColor(item.profile)">
45
- </div>
46
-
47
- <div ng-if="item.type === 'user'"><a href="/userbook/annuaire#/[[item.id]]" target="_blank" rel="noopener">[[item.username]]</a></div>
48
- <div ng-if="item.type === 'group'"><a href="/userbook/annuaire#/group-view/[[item.id]]" target="_blank" rel="noopener">[[item.name]]</a></div>
49
- </td>
50
-
51
- <!-- Checkboxes -->
52
- <td ng-repeat="action in ctrl.actions | orderBy:'priority'" data-label="[[ctrl.translate(action.displayName)]]">
53
- <label class="checkbox">
54
- <input type="checkbox" ng-model="item.actions[action.displayName]" disabled />
55
- <span></span>
56
- </label>
57
- </td>
58
-
59
- <!-- Info line -->
60
- <td class="overflow-visible">
61
- <div class="tipbox up relative">
62
- <div>
63
- <i class="help sticker square-medium"></i>
64
- </div>
65
- <div class="tipbox-content top">
66
- <span class="small-text">
67
- <i18n>sharepanel.close.inherited</i18n>
68
- </span>
69
- </div>
70
- </div>
71
- </td>
72
- </tr>
73
-
74
-
75
- <!-- Members lines -->
76
- <tbody ng-repeat="item in ctrl.sharingModel.edited | orderBy:'index':true | limitTo:ctrl.maxEdit" ng-if="!item.hide || item.hide != true">
77
- <tr ng-class="{'nested-root': item.type == 'sharebookmark'}">
78
-
79
- <!-- Sharebookmarks -->
80
- <td ng-if="item.type === 'sharebookmark'" ng-click="ctrl.display.showBookmarkMembers = !ctrl.display.showBookmarkMembers" class="flex-row twelve align-center">
81
- <i class="add-favorite"></i>
82
- <span>[[item.name]]</span>
83
- <i class="down-open" ng-if="ctrl.display.showBookmarkMembers === false"></i>
84
- <i class="up-open" ng-if="ctrl.display.showBookmarkMembers === true"></i>
85
- </td>
86
-
87
- <!-- Users and Groups -->
88
- <td ng-if="item.type === 'user' || item.type === 'group'" class="flex-row twelve align-center">
89
- <div class="round bg-white square-normal right-spacing no-shrink">
90
- <img ng-if="item.type === 'user'" ng-src="/userbook/avatar/[[item.id]]?thumbnail=100x100" />
91
- <img ng-if="item.type === 'group'" skin-src="/img/illustrations/group-avatar.svg" />
92
- </div>
93
-
94
- <div ng-if="item.type === 'user'" class="circle square-mini right-spacing" ng-class="ctrl.getColor(item.profile)">
95
- </div>
96
-
97
- <div ng-if="item.type === 'user'"><a href="/userbook/annuaire#/[[item.id]]" target="_blank" rel="noopener">[[item.username]]</a></div>
98
- <div ng-if="item.type === 'group'"><a href="/userbook/annuaire#/group-view/[[item.id]]" target="_blank" rel="noopener">[[item.name]]</a></div>
99
- </td>
100
-
101
- <!-- Checkboxes -->
102
- <td ng-repeat="action in ctrl.actions | orderBy:'priority'" data-label="[[ctrl.translate(action.displayName)]]">
103
- <label class="checkbox">
104
- <input type="checkbox" ng-model="item.actions[action.displayName]" ng-change="ctrl.changeAction(item, action)" ng-disabled="!ctrl.canEdit(item)"/>
105
- <span></span>
106
- </label>
107
- </td>
108
-
109
- <!-- Remove item line -->
110
- <td class="drop-line" ng-click="ctrl.remove(item)" ng-if="ctrl.canEdit(item)"></td>
111
- <td class="" ng-if="!ctrl.canEdit(item)"></td>
112
- </tr>
113
-
114
- <!-- Sharebookmark users -->
115
- <tr ng-if="item.type === 'sharebookmark' && ctrl.display.showBookmarkMembers === true" ng-repeat="user in item.users" class="nested-child">
116
-
117
- <!-- User -->
118
- <td class="flex-row align-center">
119
- <div class="round bg-white square-normal right-spacing no-shrink">
120
- <img ng-src="/userbook/avatar/[[user.id]]?thumbnail=100x100" />
121
- </div>
122
-
123
- <div class="circle square-mini right-spacing" ng-class="ctrl.getColor(user.profile)">
124
- </div>
125
-
126
- <div>[[ user.displayName ]]</div>
127
- </td>
128
-
129
- <!-- Checkboxes -->
130
- <td ng-repeat="action in ctrl.actions | orderBy:'priority'" data-label="[[ctrl.translate(action.displayName)]]">
131
- <label class="checkbox">
132
- <input type="checkbox" ng-model="user.actions[action.displayName]" ng-change="ctrl.changeAction(user, action)" />
133
- <span></span>
134
- </label>
135
- </td>
136
- </tr>
137
-
138
- <!-- Sharebookmark groups -->
139
- <tr ng-if="item.type === 'sharebookmark' && ctrl.display.showBookmarkMembers === true" ng-repeat="group in item.groups" class="nested-child">
140
-
141
- <!-- Group -->
142
- <td class="flex-row align-center">
143
- <div class="round bg-white square-normal right-spacing no-shrink">
144
- <img skin-src="/img/illustrations/group-avatar.svg" />
145
- </div>
146
-
147
- <div>[[ group.name ]]</div>
148
- </td>
149
-
150
- <!-- Checkbox -->
151
- <td ng-repeat="action in ctrl.actions | orderBy:'priority'" data-label="[[ctrl.translate(action.displayName)]]">
152
- <label class="checkbox">
153
- <input type="checkbox" ng-model="group.actions[action.displayName]" ng-change="ctrl.changeAction(group, action)" />
154
- <span></span>
155
- </label>
156
- </td>
157
- </tr>
158
- </tbody>
159
- </table>
160
- </div>
161
-
162
- </div>
@@ -1,10 +0,0 @@
1
-
2
- <a ng-class="ctrl.getClass()" href="" ng-click="ctrl.toggle()">
3
- <!--TODO begin : remove the following temporary artefact-->
4
- <span ng-if="ctrl.hasChildren">>&nbsp;</span>
5
- <!--TODO end -->
6
- {{ctrl.folder.name}}
7
- </a>
8
- <ul ng-if="ctrl.showSubfolders">
9
- <li ng-repeat="f in ctrl.subfolders track by f.id" ode-sidebar-folder="f" on-select="ctrl.onSelect({folderCtrl:folderCtrl})"></li>
10
- </ul>
@@ -1,31 +0,0 @@
1
- <div class="row">
2
- <div class="col-sm-12 col-md-5 col-lg-3 text-center"
3
- ng-show="ctrl.showImage">
4
- <img src="https://loremflickr.com/200/200?random=3" alt="..." class="img-thumbnail">
5
- <div class="row p-2">
6
- <button class="btn btn-sm btn-outline-secondary m-1 mx-auto"><i class="fa fa-edit" aria-hidden="true"></i> Changer l'image</button>
7
- <button class="btn btn-sm btn-outline-secondary m-1 mx-auto"><i class="fa fa-trash" aria-hidden="true"></i> Supprimer l'image</button>
8
- </div>
9
- </div>
10
- <form class="col-sm-12 col-md-7 col-lg-9">
11
- <div class="form-group"
12
- ng-show="ctrl.showTitle">
13
- <label>Titre de mon blog :</label>
14
- <input type="text" class="form-control" id="" value="Titre de la ressource">
15
- </div>
16
- <div ng-show="ctrl.showUrl">
17
- <div class="custom-control custom-checkbox mt-4"
18
- ng-show="ctrl.showUrl">
19
- <input type="checkbox" class="custom-control-input" id="customCheck1" checked>
20
- <label class="custom-control-label" for="customCheck1">Le blog est accessible publiquement via cette adresse personnalisable :</label>
21
- </div>
22
- <div class="form-inline my-2">
23
- <label class="text-muted" for="inlineFormInput">https://recette-paris.opendigitaleducation.com/blog/pub/</label> <input type="text" class="form-control" id="inlineFormInput" value="titre-de-la-ressource">
24
- <button type="button" class="btn btn-link">Copier l'adresse</button>
25
- </div>
26
- <div class="my-3 alert alert-warning" role="alert">
27
- Attention, ce blog va devenir public, les documents appartenant à d'autres utilisateurs et présents sur le blog seront rendus publics également. Les liens pointant vers des ressources internes au réseau ne seront pas accessibles pour les visiteurs sans compte.
28
- </div>
29
- </div>
30
- </form>
31
- </div>
@@ -1,28 +0,0 @@
1
- import { IAttributes, IController, IDirective, IScope } from "angular";
2
- import { IFolder } from "ode-ts-client";
3
- import { UiModel } from "../../../models/ui.model";
4
- export declare class Controller implements IController {
5
- constructor();
6
- model: UiModel;
7
- folder: IFolder;
8
- private selected;
9
- toggleSelect(selected?: boolean): void;
10
- openSubfolder(): void;
11
- }
12
- declare class Directive implements IDirective<IScope, JQLite, IAttributes, IController[]> {
13
- restrict: string;
14
- template: any;
15
- scope: {
16
- folder: string;
17
- };
18
- bindToController: boolean;
19
- controller: (typeof Controller)[];
20
- controllerAs: string;
21
- require: string[];
22
- link(scope: IScope, elem: JQLite, attrs: IAttributes, controllers?: IController[]): void;
23
- }
24
- /** The ode-domino-folder directive.
25
- */
26
- export declare function DirectiveFactory(): Directive;
27
- export {};
28
- //# sourceMappingURL=domino-folder.directive.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"domino-folder.directive.d.ts","sourceRoot":"","sources":["../../../../../src/ts/directives/business/explorer/domino-folder.directive.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,UAAW,YAAW,WAAW;;IAM1C,KAAK,EAAE,OAAO,CAAC;IACf,MAAM,EAAC,OAAO,CAAC;IACf,OAAO,CAAC,QAAQ,CAAiB;IAEjC,YAAY,CAAE,QAAQ,CAAC,EAAC,OAAO,GAAG,IAAI;IAiBtC,aAAa,IAAG,IAAI;CAGvB;AAGD,cAAM,SAAU,YAAW,UAAU,CAAC,MAAM,EAAC,MAAM,EAAC,WAAW,EAAC,WAAW,EAAE,CAAC;IAC1E,QAAQ,SAAO;IAClB,QAAQ,MAAqD;IAC7D,KAAK;;MAEA;IACL,gBAAgB,UAAQ;IACxB,UAAU,wBAAgB;IAC1B,YAAY,SAAU;IACtB,OAAO,WAAuC;IAE3C,IAAI,CAAC,KAAK,EAAC,MAAM,EAAE,IAAI,EAAC,MAAM,EAAE,KAAK,EAAC,WAAW,EAAE,WAAW,CAAC,EAAC,WAAW,EAAE,GAAG,IAAI;CAMvF;AAED;GACG;AACH,wBAAgB,gBAAgB,cAE/B"}
@@ -1,27 +0,0 @@
1
- import { IAttributes, IController, IDirective, IScope } from "angular";
2
- import { IResource } from "ode-ts-client";
3
- import { UiModel } from "../../../models/ui.model";
4
- export declare class Controller implements IController {
5
- constructor();
6
- model: UiModel;
7
- item: IResource;
8
- private selected;
9
- toggleSelect(selected?: boolean): void;
10
- }
11
- declare class Directive implements IDirective<IScope, JQLite, IAttributes, IController[]> {
12
- restrict: string;
13
- template: any;
14
- scope: {
15
- item: string;
16
- };
17
- bindToController: boolean;
18
- controller: (typeof Controller)[];
19
- controllerAs: string;
20
- require: string[];
21
- link(scope: IScope, elem: JQLite, attrs: IAttributes, controllers?: IController[]): void;
22
- }
23
- /** The ode-domino-item directive.
24
- */
25
- export declare function DirectiveFactory(): Directive;
26
- export {};
27
- //# sourceMappingURL=domino-item.directive.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"domino-item.directive.d.ts","sourceRoot":"","sources":["../../../../../src/ts/directives/business/explorer/domino-item.directive.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AACvE,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,UAAW,YAAW,WAAW;;IAM1C,KAAK,EAAC,OAAO,CAAC;IACd,IAAI,EAAC,SAAS,CAAC;IACf,OAAO,CAAC,QAAQ,CAAiB;IAEjC,YAAY,CAAE,QAAQ,CAAC,EAAC,OAAO,GAAG,IAAI;CAgBzC;AAGD,cAAM,SAAU,YAAW,UAAU,CAAC,MAAM,EAAC,MAAM,EAAC,WAAW,EAAC,WAAW,EAAE,CAAC;IAC1E,QAAQ,SAAO;IAClB,QAAQ,MAAmD;IAC3D,KAAK;;MAEA;IACL,gBAAgB,UAAQ;IACxB,UAAU,wBAAgB;IAC1B,YAAY,SAAU;IACtB,OAAO,WAAqC;IAEzC,IAAI,CAAC,KAAK,EAAC,MAAM,EAAE,IAAI,EAAC,MAAM,EAAE,KAAK,EAAC,WAAW,EAAE,WAAW,CAAC,EAAC,WAAW,EAAE,GAAG,IAAI;CAOvF;AAED;GACG;AACH,wBAAgB,gBAAgB,cAE/B"}