From 11e6c292b17f5aefc745948d93e9464d4a86bf5c Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Mon, 25 Apr 2022 10:33:06 +0300 Subject: [PATCH 01/24] RED-3343 - replace reason legacy with sourceId --- .../app/models/file/redaction-log.entry.ts | 2 + .../services/annotation-actions.service.ts | 2 +- .../services/file-data.service.ts | 44 ++++--------------- .../services/manual-redaction.service.ts | 3 +- libs/common-ui | 2 +- .../lib/redaction-log/redaction-log-entry.ts | 1 + 6 files changed, 14 insertions(+), 40 deletions(-) diff --git a/apps/red-ui/src/app/models/file/redaction-log.entry.ts b/apps/red-ui/src/app/models/file/redaction-log.entry.ts index e0b358d78..361d1e347 100644 --- a/apps/red-ui/src/app/models/file/redaction-log.entry.ts +++ b/apps/red-ui/src/app/models/file/redaction-log.entry.ts @@ -29,6 +29,7 @@ export class RedactionLogEntry implements IRedactionLogEntry { readonly textBefore?: string; readonly type?: string; readonly value?: string; + readonly sourceId?: string; reason?: string; @@ -69,5 +70,6 @@ export class RedactionLogEntry implements IRedactionLogEntry { this.type = redactionLogEntry.type; this.value = redactionLogEntry.value; this.imported = redactionLogEntry.imported; + this.sourceId = redactionLogEntry.sourceId; } } diff --git a/apps/red-ui/src/app/modules/file-preview/services/annotation-actions.service.ts b/apps/red-ui/src/app/modules/file-preview/services/annotation-actions.service.ts index 2758d5147..ecfa0dd0d 100644 --- a/apps/red-ui/src/app/modules/file-preview/services/annotation-actions.service.ts +++ b/apps/red-ui/src/app/modules/file-preview/services/annotation-actions.service.ts @@ -446,7 +446,7 @@ export class AnnotationActionsService { $event?.stopPropagation(); const requests: List = annotations.map(annotation => ({ - reason: annotation.id, + sourceId: annotation.id, value: this._getFalsePositiveText(annotation), type: annotation.type, positions: annotation.positions, diff --git a/apps/red-ui/src/app/modules/file-preview/services/file-data.service.ts b/apps/red-ui/src/app/modules/file-preview/services/file-data.service.ts index 72562c3cf..668ec4252 100644 --- a/apps/red-ui/src/app/modules/file-preview/services/file-data.service.ts +++ b/apps/red-ui/src/app/modules/file-preview/services/file-data.service.ts @@ -1,14 +1,4 @@ -import { - ChangeType, - File, - IRedactionLog, - IRedactionLogEntry, - IViewedPage, - LogEntryStatus, - ManualRedactionType, - ViewMode, - ViewModes, -} from '@red/domain'; +import { ChangeType, File, IRedactionLog, IRedactionLogEntry, IViewedPage, ViewMode, ViewModes } from '@red/domain'; import { AnnotationWrapper } from '../../../models/file/annotation.wrapper'; import { BehaviorSubject, firstValueFrom, iif, Observable, Subject } from 'rxjs'; import { RedactionLogEntry } from '../../../models/file/redaction-log.entry'; @@ -179,7 +169,7 @@ export class FileDataService extends EntitiesService { #convertData(redactionLog: IRedactionLog, file: File): RedactionLogEntry[] { let result: RedactionLogEntry[] = []; - const reasonAnnotationIds: { [key: string]: RedactionLogEntry[] } = {}; + const sourceIdAnnotationIds: { [key: string]: RedactionLogEntry[] } = {}; const dictionaries = this._dictionariesMapService.get(this._state.dossierTemplateId); redactionLog.redactionLogEntry?.forEach(redactionLogEntry => { @@ -199,36 +189,18 @@ export class FileDataService extends EntitiesService { !!dictionary?.hint, ); - if ( - redactionLogEntry.manualChanges?.find( - mc => - mc.manualRedactionType === ManualRedactionType.ADD_TO_DICTIONARY && - (mc.annotationStatus === LogEntryStatus.APPROVED || mc.annotationStatus === LogEntryStatus.REQUESTED), - ) - ) { - // for dictionary entries -> I.E accepted recommendations or false positives, - // check reason - if (!reasonAnnotationIds[redactionLogEntry.reason]) { - reasonAnnotationIds[redactionLogEntry.reason] = [redactionLogEntryWrapper]; - } else { - reasonAnnotationIds[redactionLogEntry.reason].push(redactionLogEntryWrapper); + if (redactionLogEntry.sourceId) { + if (!sourceIdAnnotationIds[redactionLogEntry.sourceId]) { + sourceIdAnnotationIds[redactionLogEntry.sourceId] = []; } + sourceIdAnnotationIds[redactionLogEntry.sourceId].push(redactionLogEntryWrapper); } result.push(redactionLogEntryWrapper); }); - const reasonKeys = Object.keys(reasonAnnotationIds); - result = result.filter(r => { - const matched = reasonKeys.indexOf(r.id) >= 0; - if (matched) { - reasonAnnotationIds[r.id].forEach(value => { - value.reason = null; - }); - } - return !matched; - }); - + const sourceKeys = Object.keys(sourceIdAnnotationIds); + result = result.filter(r => !sourceKeys.includes(r.id)); result = result.filter(r => !r.hidden); return result; diff --git a/apps/red-ui/src/app/modules/file-preview/services/manual-redaction.service.ts b/apps/red-ui/src/app/modules/file-preview/services/manual-redaction.service.ts index 23d07b31b..db02425c3 100644 --- a/apps/red-ui/src/app/modules/file-preview/services/manual-redaction.service.ts +++ b/apps/red-ui/src/app/modules/file-preview/services/manual-redaction.service.ts @@ -66,8 +66,7 @@ export class ManualRedactionService extends GenericService { addRecommendation(annotations: AnnotationWrapper[], dossierId: string, fileId: string, comment = { text: 'Accepted Recommendation' }) { const recommendations: List = annotations.map(annotation => ({ addToDictionary: true, - // set the ID as reason, so we can hide the suggestion - reason: annotation.annotationId, + sourceId: annotation.annotationId, value: annotation.value, positions: annotation.positions, type: annotation.recommendationType, diff --git a/libs/common-ui b/libs/common-ui index fd9d62241..d8c2a342b 160000 --- a/libs/common-ui +++ b/libs/common-ui @@ -1 +1 @@ -Subproject commit fd9d622413547de842439e8d91ee4316f2facff1 +Subproject commit d8c2a342baa6acb330132c44000562bdd823f620 diff --git a/libs/red-domain/src/lib/redaction-log/redaction-log-entry.ts b/libs/red-domain/src/lib/redaction-log/redaction-log-entry.ts index 04774547b..24a55fdef 100644 --- a/libs/red-domain/src/lib/redaction-log/redaction-log-entry.ts +++ b/libs/red-domain/src/lib/redaction-log/redaction-log-entry.ts @@ -34,4 +34,5 @@ export interface IRedactionLogEntry { textBefore?: string; type?: string; value?: string; + sourceId?: string; } From 56f3b9571bdf2bb1c75c3dd97c7cc18ae1db132f Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Mon, 25 Apr 2022 11:04:22 +0300 Subject: [PATCH 02/24] RED-3834 - filter value mapping to undefined --- .../src/app/modules/dossier-overview/config.service.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/modules/dossier-overview/config.service.ts b/apps/red-ui/src/app/modules/dossier-overview/config.service.ts index 1e1f189f4..3361e3ab4 100644 --- a/apps/red-ui/src/app/modules/dossier-overview/config.service.ts +++ b/apps/red-ui/src/app/modules/dossier-overview/config.service.ts @@ -215,7 +215,11 @@ export class ConfigService { filters = dynamicFilters.get(filterKey); } const filterValue = file.fileAttributes?.attributeIdToValue[config.id]; - filters.add(filterValue); + if (filterValue === undefined || filterValue === null) { + filters.add(undefined); + } else { + filters.add(filterValue); + } } }); }); From 90cf58ca7e659ec3f46d0d4bdf4dbcace9519e5c Mon Sep 17 00:00:00 2001 From: Atlassian Bamboo Date: Mon, 25 Apr 2022 08:27:13 +0000 Subject: [PATCH 03/24] chore(release) --- package.json | 2 +- paligo-theme.tar.gz | Bin 3290 -> 3290 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 36afd87dc..3381f3e3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redaction", - "version": "3.440.0", + "version": "3.441.0", "private": true, "license": "MIT", "scripts": { diff --git a/paligo-theme.tar.gz b/paligo-theme.tar.gz index 425b102c59b04b077d0bbec04cc5b26327829427..abec29795ad65fd3b03455deb41a8aa0ae84479e 100644 GIT binary patch delta 2303 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 Date: Mon, 25 Apr 2022 14:28:54 +0300 Subject: [PATCH 04/24] RED-3343 - mandatory reason in backend --- .../modules/file-preview/services/annotation-actions.service.ts | 2 +- .../modules/file-preview/services/manual-redaction.service.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/modules/file-preview/services/annotation-actions.service.ts b/apps/red-ui/src/app/modules/file-preview/services/annotation-actions.service.ts index ecfa0dd0d..e69136f35 100644 --- a/apps/red-ui/src/app/modules/file-preview/services/annotation-actions.service.ts +++ b/apps/red-ui/src/app/modules/file-preview/services/annotation-actions.service.ts @@ -451,7 +451,7 @@ export class AnnotationActionsService { type: annotation.type, positions: annotation.positions, addToDictionary: true, - comment: { text: 'False Positive' }, + reason: 'False Positive', dictionaryEntryType: annotation.isRecommendation ? DictionaryEntryTypes.FALSE_RECOMMENDATION : DictionaryEntryTypes.FALSE_POSITIVE, diff --git a/apps/red-ui/src/app/modules/file-preview/services/manual-redaction.service.ts b/apps/red-ui/src/app/modules/file-preview/services/manual-redaction.service.ts index db02425c3..d4421c017 100644 --- a/apps/red-ui/src/app/modules/file-preview/services/manual-redaction.service.ts +++ b/apps/red-ui/src/app/modules/file-preview/services/manual-redaction.service.ts @@ -67,6 +67,7 @@ export class ManualRedactionService extends GenericService { const recommendations: List = annotations.map(annotation => ({ addToDictionary: true, sourceId: annotation.annotationId, + reason: 'False Positive', value: annotation.value, positions: annotation.positions, type: annotation.recommendationType, From a485c5eeec48e4d72148160f4511a8861dc889f0 Mon Sep 17 00:00:00 2001 From: Atlassian Bamboo Date: Mon, 25 Apr 2022 11:34:03 +0000 Subject: [PATCH 05/24] chore(release) --- package.json | 2 +- paligo-theme.tar.gz | Bin 3290 -> 3289 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3381f3e3d..e6249c99f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redaction", - "version": "3.441.0", + "version": "3.442.0", "private": true, "license": "MIT", "scripts": { diff --git a/paligo-theme.tar.gz b/paligo-theme.tar.gz index abec29795ad65fd3b03455deb41a8aa0ae84479e..e6d855a47ec9b2f3e371ab3d2f04ce86302bf54f 100644 GIT binary patch delta 3113 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 D=qv_p delta 3113 zcmV+^4A%468QK|;PXbsHkx?9fI)l%yy>filbNnE10{4~e*n#c6LctG0&7d_k!xch5 z#!^4WHrMqpf7I+TBlY)X4X5khbC=7r{(p>iQ2!N)am3`h(E^ja1&|O(n3^i4Mc6FIDR@R%F zo21BDJ>M3^HY2#C^*kzeH((I%Zxg(u+2f~wE=m5IuW(*(D8t$8ew(s4_RO>GTYKh< zzk&F>5Pz5A?+X4pVvZx`IAV??<~U-G!{_`urgfR&$4~2fTwY$^Ud%atII~iMV^X1i zT_E(%qIpanHpsb!Un!w~u>J=5fn7e_UOWvTHk*(nMMVT;h@-o0RWx~QMMYLr8}yO8 z@?75;!=cm>AY2$$P2Z6XTKIec*>x|Mz?{j?HF zvRJGnS8;6nV~#W|DlSLlln8e_PiiDl+(Q|b=llo#6Z0{0RBxkoq{-dU=jUQsic9(qpmT-rzH z_=J9X0d6ZA^A7%LF|vbRMmS;34q_E@l8XP=&)8xh!5y$ZSWOEba!k{dA{C9zexvaP zq?cIp;gVSD5cWb2r;zsfpu@dgmUCgf}_;mTQH+6 zBeRK#;MOA1!-}Y#IgF+5>d08?E%Z=lpFkeMClH8@j{bzTTK9Fzii*PR!fy;KKr)$zdLHifu3x2##?Y1GmxT zo;)1he1blwc}6H}@-6!0=3)-WERX=nEXU|cFaME1`F|<61?ayQ)m@Sm_XAjW3f7LC z9`jN}b_N2(pk-+#vyjI6RM5}FN=`IGe6OBET8 z(uzhYqgxY6!6cT%>#=;*L}}9GcOnSu@QZ0G+#de(kmRs3%@I$2ItGi7R7v*!+bAW_ zU!yNY@&6~B<1MM`!8*%H&H1Z-oiB?lgLSxn%swL(nPhr3N%YF^k^R1?YYOB7EsXSd zVQ=2!jEzvPCs8gV1?61>YGnk4ka31!qFgFF^m$BKQ4MX?p0t)A8c_+kc9dq6y#KEx zG$mETli~~#&LOeRP2V^axa62QM@3nu|MQcOEv zCL>xOF=Q5baGgF1u52FM_&)*BWO9vmZmlH86It46nV23LJ+~!vv}(s_3ZW|F;Y!Ju z`0*T%3Dpi~g652B&|t|sJ?zVMdWw2~L7DjJCBuQxs*~h!1?b2igMoC%xc0LZ0Vv5^*jC%fbGFT>(cn0{g=00#7b9c++E zH+LQt<)b+6Fyq>fs|Q^HueU&Nn+hh20n4J_)S#iVqQE<3WMWT-StHI<2BTKB4S_q? zo*~y0e|*y{cY`27frzLM;wTc%a)`R^Z!tTrCy>sN<2dRh$QN;#kr=FR?X6eXRtNKf z^%E?{KP&K7qs9iIZsT-Qz0f192GJ8UgnythYhp zL&KGUtKb~NhuWXDRx+Aj6L2D!@l6Kez*nxj0CBi0E)x)pJzrm|)4yqGbZ0@z#)RW* z9l3H~+0ENlglM=8n5T@jPLTN2Wj zQHp!Jn#Lr=lSim~Q-@*_@^zTnjlIRy)qyQ^txae*$hD40I#ZU?oDV<(`E>;(@MKZ^ z`Xf}X5Z~eF(}3D}R%{Eyp&8^cZL;>O_Ld6E(@hn4vw^H2yrU3*c{)n8I}At0oM&Jx zCTP{=wlOn(47L>VgM-*iG9D{Zz5m(AzkMV%&Ha(@bDkyPh-;i@am+qwofll%94FXb zB};yn;&rKWj^A3N?WpBp3%Sf_<{ZXp1hFu`(@LEd%xOs;)jy7sBR|WXlCnyzKSRjj zYnd*T7?I$J-$6ou3OD5IgAwV6f3on>iUWS3Y((;!pYe4VIvHjpQB%_?pe8#6-j#Jn zfFDNW_k}DgA~fG-k7e55wFnyspuYUlEdL?w5qgn zi0xA~qkT(v(M0jmo;w_P1wX#kI+pY=*$d7b_Un3)`)HNWp zmH2cqhdc!`z_*m#i)SY4#P;0yX*7rKw&UWwn+$ayKcO6%lV`q1?79bnkx1HYIMaTL zD=@Q;4YoK~HoKvHuG@*iKE#PgQdB@#Qs&T6^+CF#gxvcV$p}} z_k`yG>LCa(41p_H7D`cmQ`jeQGk$v5@O9uDqvcqeu34MzK%2reg!PJVlQ9ZZf483S z_NOGe{lPVpdZV)!eIrczU*qA=NTn-XzNqY|D>dRug|rw_I#0F$=B`@BJ#A1&nxgKYc{aLNJB`m^! z0+Z9XvFfDG#~wPd?%a`*A3#CIfA<;}3K&*<9OK(FNCjqS5%9AZ$G;ve2AV51;Ts&O z*|^p7Z~oGdMg#Ihh{?GP3`GEr4PqtEI;2fr6Sj|}MK)`{3~$V}=%rlQ|192gDD<50 zltbmh^nybj|G^(_93(~r<7dd3Ox>Qr+y}wu@W13yhKl=$w;1a5$tM{4f28AHUJPK4 zd~h)!=f&?VhWK8RLF?M>UR4bEJouR66hZa{`bmQ9{c%|p5sAV2M2R-987ZH6hCGqt zIi?h4EIVEN{W-)p4XOJ_gT@M}pYa;8coZDPg`h3s3^L3gNwBMB<$KfKjVAPg??YL1 z$|9x>(P+b9F~WMxho9StfB0zLnFlVCCG+j$^$oh@&({%uzJ57FHGEh#si^R~Kk>1s zU@vuMNPL;YH`(R(U2fOq^<7@q<@a5F*A?_#LD#kDyB4ym>^>_pc3H=XuBH9R!`O+b zr=7u0BKhE>*OByxq3^`^|4(D(4Ka4_j-SOCXc!gU4>5YjV)Q)~ETdvNFAVrkW6K*Q zeWw)-65}{`JQREch&h6FgGZOYlL(R`YNlQR{M7%i&y%kV9uB$va@zj^59t}b08jt` DTdxC~ From 7441d55b86e97f57bd0b1c750f3d79717de2929a Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Mon, 25 Apr 2022 22:14:11 +0300 Subject: [PATCH 06/24] RED-3401 - added/updated more keys --- .../annotation-actions.component.ts | 10 +++- apps/red-ui/src/assets/help-mode/links.json | 58 ++++++++++++++++++- libs/common-ui | 2 +- 3 files changed, 66 insertions(+), 4 deletions(-) diff --git a/apps/red-ui/src/app/modules/file-preview/components/annotation-actions/annotation-actions.component.ts b/apps/red-ui/src/app/modules/file-preview/components/annotation-actions/annotation-actions.component.ts index 706020c4b..dd1db7c9c 100644 --- a/apps/red-ui/src/app/modules/file-preview/components/annotation-actions/annotation-actions.component.ts +++ b/apps/red-ui/src/app/modules/file-preview/components/annotation-actions/annotation-actions.component.ts @@ -83,7 +83,15 @@ export class AnnotationActionsComponent implements OnChanges { } get helpModeKey() { - return this.annotations[0]?.typeLabel?.split('.')[1]; + const type = this.annotations[0]?.typeLabel?.split('.')[1]; + const typeValue = this.annotations[0]?.typeValue; + if (type === 'hint' && (typeValue === 'formula' || typeValue === 'image')) { + return 'image'; + } + if (type === 'redaction' || type === 'manual-redaction') { + return 'redaction'; + } + return type; } ngOnChanges(): void { diff --git a/apps/red-ui/src/assets/help-mode/links.json b/apps/red-ui/src/assets/help-mode/links.json index beba01977..6cd868047 100644 --- a/apps/red-ui/src/assets/help-mode/links.json +++ b/apps/red-ui/src/assets/help-mode/links.json @@ -150,7 +150,7 @@ "fr": "" }, "hint_remove_from_dictionary": { - "en": "/en/index-en.html?contextId=hints_remove_from_dictionary", + "en": "/en/index-en.html?contextId=hint_remove_from_dictionary", "de": "", "it": "", "fr": "" @@ -252,7 +252,7 @@ "fr": "" }, "redaction_resize": { - "en": "/en/index-en.html?contextId=redaction_resize_redaction", + "en": "/en/index-en.html?contextId=redaction_resize", "de": "", "it": "", "fr": "" @@ -263,6 +263,12 @@ "it": "", "fr": "" }, + "hint_resize": { + "en": "/en/index-en.html?contextId=hint_resize", + "de": "", + "it": "", + "fr": "" + }, "skipped_force_redaction": { "en": "/en/index-en.html?contextId=skipped_force_redaction", "de": "", @@ -358,5 +364,53 @@ "de": "", "it": "", "fr": "" + }, + "image_resize": { + "en": "/en/index-en.html?contextId=image_resize", + "de": "", + "it": "", + "fr": "" + }, + "image_recategorize": { + "en": "/en/index-en.html?contextId=image_recategorize", + "de": "", + "it": "", + "fr": "" + }, + "image_hide": { + "en": "/en/index-en.html?contextId=image_hide", + "de": "", + "it": "", + "fr": "" + }, + "image_remove_only_here": { + "en": "/en/index-en.html?contextId=image_remove_only_here", + "de": "", + "it": "", + "fr": "" + }, + "redaction_remove_from_dictionary": { + "en": "/en/index-en.html?contextId=redaction_remove_from_dictionary", + "de": "", + "it": "", + "fr": "" + }, + "skipped_resize": { + "en": "/en/index-en.html?contextId=skipped_resize_redaction", + "de": "", + "it": "", + "fr": "" + }, + "skipped_recategorize": { + "en": "/en/index-en.html?contextId=skipped_recategorize_redaction", + "de": "", + "it": "", + "fr": "" + }, + "skipped_hide": { + "en": "/en/index-en.html?contextId=skipped_hide", + "de": "", + "it": "", + "fr": "" } } diff --git a/libs/common-ui b/libs/common-ui index d8c2a342b..fd9d62241 160000 --- a/libs/common-ui +++ b/libs/common-ui @@ -1 +1 @@ -Subproject commit d8c2a342baa6acb330132c44000562bdd823f620 +Subproject commit fd9d622413547de842439e8d91ee4316f2facff1 From 35eaea00288aaadddbde1454d5b6ce9014f22d8f Mon Sep 17 00:00:00 2001 From: Atlassian Bamboo Date: Mon, 25 Apr 2022 19:18:49 +0000 Subject: [PATCH 07/24] chore(release) --- package.json | 2 +- paligo-theme.tar.gz | Bin 3289 -> 3290 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e6249c99f..7fdf923f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redaction", - "version": "3.442.0", + "version": "3.443.0", "private": true, "license": "MIT", "scripts": { diff --git a/paligo-theme.tar.gz b/paligo-theme.tar.gz index e6d855a47ec9b2f3e371ab3d2f04ce86302bf54f..260d54669d63d814bcccf5f299a16bfed9af5ddc 100644 GIT binary patch delta 3066 zcmVfilbAqMgd(JD{u>;$Eg@PZ1nn7!7hAV`A zjHP~#ZLaHI{;1hwM(Xd&8cx^0=Pnm#{r?#4p#Cco$T*dXT?ex-ze!ulKJ2X^^zd+{`Y*la?Q6crJWA&&00Rng?J6%|=gZO}*V z%5!~Z42M!jfN)`0HGM}mXyNk(WY@i1mU9Gs8O@2+k+NF06L+}U(%fQ23BW6@FDw`< zc0jd}Xw?0z39h145VFG$);*0`3b<@rMYch>VFmwP7BywGfS!tfWSG&n#TIB)4P$T>-p6KUCOzz`ym z7FnnGqQntpj~isqmnR~dy=>*7wP<$XNW0K%z*!xm*s<_S9LF@@0skmzDH3+NN6*#iOzMkOu)RxMk(}Kc`Hz~a=3Qk$b4DtIE!f-|#DDg2 zENs%^t(3RHfa2JX1A*z{&5pzrqax29Q5{u;B~tlJB=`fy=zFH4XZ1D+lx5 z9%wd@yZebVl@QDt2%SJChyh?T9Fk0|AU)XzlWfNvJ!d$Tv z!qK$#bO`=6!YvM6SH5m$2Ee)U!=lk7DXN}2bduXz`mw!JbaY47dqvG)dgwXLb7>!) z;}iPn1-Pwf%scp}#mEkN8R3LAJBU@tNhNdsY|hyrU{*|` zqQb392i=p3%VwIYCL8aL-VhH+E~6TpzxUbZ*&{=LQa810A22}%R995z zZuE$}Fhpec(AE%$4f@!l{}6qoKH__7$|gV-s(Tp+f)5LHCWm>*DYn5(AUMWp4BSSS zd-8C2^9lN#<{6=^$+zf}n~OOhvp@nQvmB!*z5GYwE|-^rTY&z1QQak3aX)}{r(o^K z>0$qW2AXMVC~w}u;vgv`PNtI;pzl~A? z{Wbbh6#sw1Io^`09;~yR)SSQS*ZH!@GFXRy%j`2!kx8aklSHrl9@+1Ux~4!b(85TM z7xv~o&e#a$dJ^R_Qc&JCpjJju2pMMxCd#FrVy$!9CfY7nF&gUNRgAtvX2#SAdQTG8jmAjB7tzK@N+< z@haa>o;Xh6^i}GdmL*}Dz<9dQCQH-M(wMBUf-*9ynq62M69vTzlcHcEA%vow$X{yl z)s{d9b)pqQErvtb^|7gPYlus;&J_5*umZcd|P^|1vBNh3O||0$@OY-@yi% zbaUrXQ9g>}4l}O(xO&hP@OlgMwy9vU7_cn*O${0O z?HO`C@y9pKayJMP6o`oGAdVv8EQhGu{uZ<2dIISTIgX=Ff_xE&8HvIA*4}!BZFMj& zSUJvDuoj8fc-aW2zJ`jhotr2ja!g?Dd zJ~UhzxC+iOe5n0dYbB%kH327r8Q)|e4t(Xh3lN99;xYlj*z@(ZI{ll5Mt2sZY)m-5 z){!d*mfgH;lHhA}RzAR@t9W1uy60hlB!+tC<* zguJe}mxJNT3k`#=(XixTyXyil0cW+IA#Dn;${nqGQ%3|^XW=Y--7cG!R)4h|2u=*S zVklZ0hPXil;d&W|qakj85Z=;{R?cXM8$=Yu9?_smn%}ijaoix*bd-{;+!Zm|yCorg z8Kt^F2v>|ovPK@?m<>y$3wh%pOoZ3gCEgPGRV(XcubI4O51AI%#y?AD#PHfMOpGI@&ZaXf{yU9@Z@e|6CIeF%L#IAcF7>T6ahBNJ_ zxB@fl*kFr)W3wCD=enIJ>_eQ0Bt->;HDyVv2-jpt-O(p0``v0fS6*3a4zwvuLs+l)ws6&qRA?(DX|37li%f(h)qj<`b8&m0Hy5YbhBr8qb}`(FPaTf-1DK2-2P^J# zwk~CVFhXoV23PXptw=2PSd!~;7TKTGid(`W{3kFueH*Jz>U`{>6YI_$Dfs~uWPGo2 zp@3nv$1%P=gH&LK76Cttas2DiVxYNF6TZQbnvGjM|K=|ZX*3{DgqWP$z)%F>*dSKo ztV7!5HDUWmT4b~K%kairi(bl={m^&p-(#Q<;4Kz$Ojh#a$fw-VuG7-$9(v?orsU-oq6CQ zSu)=~Uf-Zg{(K$r=j)d*QolS~YS2()Vz ILjX_!0B<_;?f?J) delta 3065 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 H08jt`0=Db0 From 42a1440608f806ec65f0975371bffe9326284386 Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Wed, 27 Apr 2022 02:08:05 +0300 Subject: [PATCH 08/24] RED-3745 - added new modal for template cloning --- .../src/app/modules/admin/admin.module.ts | 6 +- ...it-dossier-template-dialog.component.html} | 18 ++--- ...it-dossier-template-dialog.component.scss} | 0 ...edit-dossier-template-dialog.component.ts} | 73 +++---------------- ...one-dossier-template-dialog.component.html | 23 ++++++ ...one-dossier-template-dialog.component.scss | 0 ...clone-dossier-template-dialog.component.ts | 61 ++++++++++++++++ ...sier-templates-listing-screen.component.ts | 2 +- .../dossier-template-info-screen.component.ts | 2 +- .../admin/services/admin-dialog.service.ts | 14 +++- .../dossier-template-actions.component.html | 4 +- .../dossier-template-actions.component.ts | 7 +- .../dossier-templates.service.ts | 4 +- apps/red-ui/src/assets/i18n/de.json | 45 ++++++++---- apps/red-ui/src/assets/i18n/en.json | 45 ++++++++---- 15 files changed, 188 insertions(+), 116 deletions(-) rename apps/red-ui/src/app/modules/admin/dialogs/{add-edit-clone-dossier-template-dialog/add-edit-clone-dossier-template-dialog.component.html => add-edit-dossier-template-dialog/add-edit-dossier-template-dialog.component.html} (81%) rename apps/red-ui/src/app/modules/admin/dialogs/{add-edit-clone-dossier-template-dialog/add-edit-clone-dossier-template-dialog.component.scss => add-edit-dossier-template-dialog/add-edit-dossier-template-dialog.component.scss} (100%) rename apps/red-ui/src/app/modules/admin/dialogs/{add-edit-clone-dossier-template-dialog/add-edit-clone-dossier-template-dialog.component.ts => add-edit-dossier-template-dialog/add-edit-dossier-template-dialog.component.ts} (64%) create mode 100644 apps/red-ui/src/app/modules/admin/dialogs/clone-dossier-template-dialog/clone-dossier-template-dialog.component.html create mode 100644 apps/red-ui/src/app/modules/admin/dialogs/clone-dossier-template-dialog/clone-dossier-template-dialog.component.scss create mode 100644 apps/red-ui/src/app/modules/admin/dialogs/clone-dossier-template-dialog/clone-dossier-template-dialog.component.ts diff --git a/apps/red-ui/src/app/modules/admin/admin.module.ts b/apps/red-ui/src/app/modules/admin/admin.module.ts index 891f59285..b13bdebea 100644 --- a/apps/red-ui/src/app/modules/admin/admin.module.ts +++ b/apps/red-ui/src/app/modules/admin/admin.module.ts @@ -12,7 +12,7 @@ import { UserListingScreenComponent } from './screens/user-listing/user-listing- import { DossierTemplateBreadcrumbsComponent } from './components/dossier-template-breadcrumbs/dossier-template-breadcrumbs.component'; import { ColorPickerModule } from 'ngx-color-picker'; import { AddEditFileAttributeDialogComponent } from './dialogs/add-edit-file-attribute-dialog/add-edit-file-attribute-dialog.component'; -import { AddEditCloneDossierTemplateDialogComponent } from './dialogs/add-edit-clone-dossier-template-dialog/add-edit-clone-dossier-template-dialog.component'; +import { AddEditDossierTemplateDialogComponent } from './dialogs/add-edit-dossier-template-dialog/add-edit-dossier-template-dialog.component'; import { AddEntityDialogComponent } from './dialogs/add-entity-dialog/add-entity-dialog.component'; import { EditColorDialogComponent } from './dialogs/edit-color-dialog/edit-color-dialog.component'; import { ComboChartComponent, ComboSeriesVerticalComponent } from './components/combo-chart'; @@ -48,11 +48,13 @@ import { A11yModule } from '@angular/cdk/a11y'; import { ConfirmDeleteDossierStateDialogComponent } from './dialogs/confirm-delete-dossier-state-dialog/confirm-delete-dossier-state-dialog.component'; import { TrashTableItemComponent } from './screens/trash/trash-table-item/trash-table-item.component'; import { BaseEntityScreenComponent } from './base-entity-screen/base-entity-screen.component'; +import { CloneDossierTemplateDialogComponent } from './dialogs/clone-dossier-template-dialog/clone-dossier-template-dialog.component'; const dialogs = [ - AddEditCloneDossierTemplateDialogComponent, + AddEditDossierTemplateDialogComponent, AddEntityDialogComponent, AddEditFileAttributeDialogComponent, + CloneDossierTemplateDialogComponent, EditColorDialogComponent, SmtpAuthDialogComponent, AddEditUserDialogComponent, diff --git a/apps/red-ui/src/app/modules/admin/dialogs/add-edit-clone-dossier-template-dialog/add-edit-clone-dossier-template-dialog.component.html b/apps/red-ui/src/app/modules/admin/dialogs/add-edit-dossier-template-dialog/add-edit-dossier-template-dialog.component.html similarity index 81% rename from apps/red-ui/src/app/modules/admin/dialogs/add-edit-clone-dossier-template-dialog/add-edit-clone-dossier-template-dialog.component.html rename to apps/red-ui/src/app/modules/admin/dialogs/add-edit-dossier-template-dialog/add-edit-dossier-template-dialog.component.html index 149a08ad1..a5d11d920 100644 --- a/apps/red-ui/src/app/modules/admin/dialogs/add-edit-clone-dossier-template-dialog/add-edit-clone-dossier-template-dialog.component.html +++ b/apps/red-ui/src/app/modules/admin/dialogs/add-edit-dossier-template-dialog/add-edit-dossier-template-dialog.component.html @@ -1,19 +1,19 @@
- +
- +