diff --git a/client/src/app/shared/components/sorting-tree/sorting-tree.component.ts b/client/src/app/shared/components/sorting-tree/sorting-tree.component.ts index 43c619bce..6103451c7 100644 --- a/client/src/app/shared/components/sorting-tree/sorting-tree.component.ts +++ b/client/src/app/shared/components/sorting-tree/sorting-tree.component.ts @@ -53,6 +53,12 @@ class Movement { styleUrls: ['./sorting-tree.component.scss'] }) export class SortingTreeComponent implements OnInit, OnDestroy { + /** + * Declare the templateRef to coexist between parent in child + */ + @ContentChild(TemplateRef) + public templateRef: TemplateRef; + /** * The data to build the tree */ diff --git a/client/src/app/site/motions/modules/call-list/call-list.component.html b/client/src/app/site/motions/modules/call-list/call-list.component.html index 45ca50f8e..6b57797d8 100644 --- a/client/src/app/site/motions/modules/call-list/call-list.component.html +++ b/client/src/app/site/motions/modules/call-list/call-list.component.html @@ -26,7 +26,17 @@ (hasChanged)="receiveChanges($event)" [model]="motionsObservable"> - {{ item.getTitle() }} +
+
+ {{ item.getTitle() }} +
+
+ + local_offer + {{ tag.getTitle() }} + +
+
diff --git a/client/src/app/site/motions/modules/call-list/call-list.component.scss b/client/src/app/site/motions/modules/call-list/call-list.component.scss new file mode 100644 index 000000000..fb1df8fba --- /dev/null +++ b/client/src/app/site/motions/modules/call-list/call-list.component.scss @@ -0,0 +1,22 @@ +// TODO: partial duplicate of sorting-list +.line { + display: table; + width: 100%; + font-size: 14px; + min-height: 50px; + margin-bottom: 5px; + + .left { + display: table-cell; + vertical-align: middle; + max-width: 100%; + } + + .right { + display: table-cell; + padding-right: 10px; + vertical-align: middle; + width: auto; + white-space: nowrap; + } +} diff --git a/client/src/app/site/motions/modules/call-list/call-list.component.ts b/client/src/app/site/motions/modules/call-list/call-list.component.ts index 0e1560b7d..156bd1e6f 100644 --- a/client/src/app/site/motions/modules/call-list/call-list.component.ts +++ b/client/src/app/site/motions/modules/call-list/call-list.component.ts @@ -7,19 +7,22 @@ import { Observable } from 'rxjs'; import { MotionRepositoryService } from 'app/core/repositories/motions/motion-repository.service'; import { BaseViewComponent } from 'app/site/base/base-view'; +import { CanComponentDeactivate } from 'app/shared/utils/watch-sorting-tree.guard'; +import { FlatNode } from 'app/core/ui-services/tree.service'; import { MotionCsvExportService } from 'app/site/motions/services/motion-csv-export.service'; import { MotionPdfExportService } from 'app/site/motions/services/motion-pdf-export.service'; +import { PromptService } from 'app/core/ui-services/prompt.service'; import { SortingTreeComponent } from 'app/shared/components/sorting-tree/sorting-tree.component'; import { ViewMotion } from 'app/site/motions/models/view-motion'; -import { PromptService } from 'app/core/ui-services/prompt.service'; -import { CanComponentDeactivate } from 'app/shared/utils/watch-sorting-tree.guard'; +import { ViewTag } from 'app/site/tags/models/view-tag'; /** * Sort view for the call list. */ @Component({ selector: 'os-call-list', - templateUrl: './call-list.component.html' + templateUrl: './call-list.component.html', + styleUrls: ['./call-list.component.scss'] }) export class CallListComponent extends BaseViewComponent implements CanComponentDeactivate { /** @@ -124,4 +127,15 @@ export class CallListComponent extends BaseViewComponent implements CanComponent } return true; } + + /** + * Get the tags associated with the motion of a sorting item + * + * @param item A FlatNode from a OsSortignTree + * @returns An array of ViewTags (or an empty adrray) + */ + public getTags(item: FlatNode): ViewTag[] { + const motion = this.motionRepo.getViewModel(item.id); + return motion ? motion.tags : []; + } } diff --git a/client/src/app/site/motions/modules/category/components/category-sort/category-sort.component.html b/client/src/app/site/motions/modules/category/components/category-sort/category-sort.component.html index d67f2235f..530ca80e4 100644 --- a/client/src/app/site/motions/modules/category/components/category-sort/category-sort.component.html +++ b/client/src/app/site/motions/modules/category/components/category-sort/category-sort.component.html @@ -20,5 +20,15 @@ > Number motions - + + + +
+ + local_offer + {{ tag.getTitle() }} + +
+
+
diff --git a/client/src/app/site/motions/modules/motion-list/components/motion-list/motion-list.component.html b/client/src/app/site/motions/modules/motion-list/components/motion-list/motion-list.component.html index f669f64eb..547b08620 100644 --- a/client/src/app/site/motions/modules/motion-list/components/motion-list/motion-list.component.html +++ b/client/src/app/site/motions/modules/motion-list/components/motion-list/motion-list.component.html @@ -113,6 +113,13 @@ widgets {{ motion.motion_block.title }} +
+ local_offer + + {{ tag.getTitle() }} + + +