2020-12-15 19:37:42 +01:00
|
|
|
<ion-header class="ion-no-border">
|
2021-06-18 11:01:02 +01:00
|
|
|
<!-- <ion-toolbar class="bg-blue"> -->
|
2023-07-06 12:18:15 +01:00
|
|
|
<div class="main-header viewport-font-size">
|
2021-07-08 13:41:27 +01:00
|
|
|
<div class="title-content d-flex width-100">
|
2023-07-06 12:18:15 +01:00
|
|
|
<div class="cursor-pointer viewport-font-size" (click)="goBack()">
|
2023-11-06 09:07:04 +01:00
|
|
|
<ion-icon class="font-35-em" *ngIf="ThemeService.currentTheme == 'default' " slot="end"
|
|
|
|
|
src='assets/images/icons-arrow-arrow-left.svg'></ion-icon>
|
|
|
|
|
<ion-icon class="font-35-em" *ngIf="ThemeService.currentTheme == 'doneIt' "
|
|
|
|
|
src="assets/images/theme/doneIt/icons-calendar-arrow-left.svg"></ion-icon>
|
|
|
|
|
<ion-icon class="font-35-em" *ngIf="ThemeService.currentTheme == 'gov' " slot="end"
|
|
|
|
|
src='assets/images/theme/gov/icons-calendar-arrow-left.svg'></ion-icon>
|
2020-12-01 14:03:15 +01:00
|
|
|
</div>
|
2023-08-18 17:37:11 +01:00
|
|
|
<div *ngIf="publicationFolderService.FolderDetails[folderId]?.DateBegin != null" class="div-title flex-grow-1">
|
2025-10-16 16:09:35 +01:00
|
|
|
<p class="title font-25-em mb-10-em">{{publicationFolderService.FolderDetails[folderId].Detail}}</p>
|
2023-11-06 09:07:04 +01:00
|
|
|
<p class="item-content-date font-13-em">{{publicationFolderService.FolderDetails[folderId].DateBegin | date:
|
|
|
|
|
'dd-MM-yyyy HH:mm'}}</p>
|
2020-12-01 14:03:15 +01:00
|
|
|
</div>
|
2023-11-06 09:07:04 +01:00
|
|
|
<div
|
|
|
|
|
*ngIf="p.userPermission([p.permissionList.Actions.createPost]) && publicationFolderService.FolderDetails[folderId]"
|
|
|
|
|
class="cursor-pointer font-35-em"
|
|
|
|
|
(click)="AddPublication('2',publicationFolderService.FolderDetails[folderId].ProcessId)">
|
|
|
|
|
<!-- <ion-icon (click)="AddPublication('1',item.ProcessId)" slot="end" src='assets/images/icons-add-photo.svg'></ion-icon> -->
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " slot="end"
|
|
|
|
|
src='assets/images/icons-add.svg'></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="end"
|
|
|
|
|
src='assets/images/theme/gov/icons-add.svg'></ion-icon>
|
2020-12-01 14:03:15 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-12-15 19:37:42 +01:00
|
|
|
</div>
|
2021-06-18 11:01:02 +01:00
|
|
|
<!-- </ion-toolbar> -->
|
2020-12-15 19:37:42 +01:00
|
|
|
</ion-header>
|
|
|
|
|
|
2021-07-15 16:18:57 +01:00
|
|
|
<ion-content class="background-white">
|
2023-11-06 09:07:04 +01:00
|
|
|
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
|
2020-12-15 19:37:42 +01:00
|
|
|
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
|
|
|
|
|
<ion-refresher-content>
|
|
|
|
|
</ion-refresher-content>
|
2023-09-28 09:02:15 +01:00
|
|
|
</ion-refresher>
|
2023-11-06 09:07:04 +01:00
|
|
|
<div class="main-container background-white height-100 overflow-y-auto viewport-font-size">
|
2023-12-01 12:16:34 +01:00
|
|
|
<ion-content *ngIf="publicationFolderService.FolderDetails[folderId]" #VideoManager >
|
2023-08-18 17:37:11 +01:00
|
|
|
|
2025-10-16 16:09:35 +01:00
|
|
|
<p class="px-20 item-content-detail font-14-em">{{publicationFolderService.FolderDetails[folderId].Description}}</p>
|
2023-08-18 17:37:11 +01:00
|
|
|
|
2023-09-28 09:02:15 +01:00
|
|
|
<ion-card *ngFor="let publication of publicationFolderService.publicationList[folderId] let i = index">
|
2024-07-26 12:42:30 +01:00
|
|
|
<ion-card-content >
|
2024-04-11 17:05:28 +01:00
|
|
|
<div style="width: 100%; height: 395px;">
|
2024-04-11 08:19:07 +01:00
|
|
|
<app-swiper
|
|
|
|
|
[publicationList]=publication
|
2024-05-08 10:38:35 +01:00
|
|
|
[navigation]="false"
|
|
|
|
|
[pagination]="true"
|
2024-04-11 08:19:07 +01:00
|
|
|
></app-swiper>
|
|
|
|
|
</div>
|
2024-04-11 17:05:28 +01:00
|
|
|
|
2024-04-07 18:01:21 +01:00
|
|
|
|
2024-10-25 12:23:58 +01:00
|
|
|
<div (click)="goToPublicationDetail(publication.DocumentId, publication.ProcessId)" class="post-content" >
|
2023-11-06 09:07:04 +01:00
|
|
|
<div class="post-title-time">
|
|
|
|
|
<div class="post-title font-15-em">
|
|
|
|
|
<ion-label>{{publication.Title}}</ion-label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="post-data font-13-em">{{publication.DatePublication | date: 'dd-MM-yyyy HH:mm'}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="post-description ">
|
|
|
|
|
<!-- <pre class="text font-14-em">{{publication.Message}}</pre> -->
|
|
|
|
|
<app-show-more [text]=publication.Message></app-show-more>
|
|
|
|
|
</div>
|
2022-02-18 15:28:30 +01:00
|
|
|
</div>
|
2023-11-06 09:07:04 +01:00
|
|
|
</ion-card-content>
|
2022-02-18 15:28:30 +01:00
|
|
|
</ion-card>
|
|
|
|
|
</ion-content>
|
2022-03-30 16:32:56 +01:00
|
|
|
|
2021-07-22 14:36:29 +01:00
|
|
|
</div>
|
2023-12-01 12:16:34 +01:00
|
|
|
</ion-content>
|