Merge pull request #4439 from MaximilianKrambach/cssState
consolidate state css colors
This commit is contained in:
commit
b576d2c396
@ -52,15 +52,7 @@
|
|||||||
<ng-container matColumnDef="state">
|
<ng-container matColumnDef="state">
|
||||||
<mat-header-cell *matHeaderCellDef> <span translate>State</span> </mat-header-cell>
|
<mat-header-cell *matHeaderCellDef> <span translate>State</span> </mat-header-cell>
|
||||||
<mat-cell class="chip-container" *matCellDef="let motion">
|
<mat-cell class="chip-container" *matCellDef="let motion">
|
||||||
<mat-basic-chip
|
<mat-basic-chip disableRipple [ngClass]="motion.stateCssColor">
|
||||||
disableRipple
|
|
||||||
[ngClass]="{
|
|
||||||
green: motion.state.css_class === 'success',
|
|
||||||
red: motion.state.css_class === 'danger',
|
|
||||||
grey: motion.state.css_class === 'default',
|
|
||||||
lightblue: motion.state.css_class === 'primary'
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
{{ getStateLabel(motion) }}
|
{{ getStateLabel(motion) }}
|
||||||
</mat-basic-chip>
|
</mat-basic-chip>
|
||||||
</mat-cell>
|
</mat-cell>
|
||||||
|
@ -231,7 +231,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</mat-menu>
|
</mat-menu>
|
||||||
<div *ngIf="perms.isAllowed('change_state', motion)">
|
<div *ngIf="perms.isAllowed('change_state', motion)">
|
||||||
<mat-basic-chip [matMenuTriggerFor]="stateMenu" [ngClass]="getStateCssColor()">
|
<mat-basic-chip [matMenuTriggerFor]="stateMenu" [ngClass]="motion.stateCssColor">
|
||||||
{{ stateLabel }}
|
{{ stateLabel }}
|
||||||
</mat-basic-chip>
|
</mat-basic-chip>
|
||||||
<div *ngIf="motion.state && motion.state.show_state_extension_field" class="spacer-top-10">
|
<div *ngIf="motion.state && motion.state.show_state_extension_field" class="spacer-top-10">
|
||||||
@ -242,7 +242,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="!perms.isAllowed('change_state', motion)">
|
<div *ngIf="!perms.isAllowed('change_state', motion)">
|
||||||
<mat-basic-chip [ngClass]="getStateCssColor()"> {{ stateLabel }} </mat-basic-chip>
|
<mat-basic-chip [ngClass]="motion.stateCssColor"> {{ stateLabel }} </mat-basic-chip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ import { StatuteParagraphRepositoryService } from 'app/core/repositories/motions
|
|||||||
import { Tag } from 'app/shared/models/core/tag';
|
import { Tag } from 'app/shared/models/core/tag';
|
||||||
import { UserRepositoryService } from 'app/core/repositories/users/user-repository.service';
|
import { UserRepositoryService } from 'app/core/repositories/users/user-repository.service';
|
||||||
import { ViewMotionBlock } from '../../models/view-motion-block';
|
import { ViewMotionBlock } from '../../models/view-motion-block';
|
||||||
import { ViewWorkflow, StateCssClassMapping } from '../../models/view-workflow';
|
import { ViewWorkflow } from '../../models/view-workflow';
|
||||||
import { ViewUser } from 'app/site/users/models/view-user';
|
import { ViewUser } from 'app/site/users/models/view-user';
|
||||||
import { ViewCategory } from '../../models/view-category';
|
import { ViewCategory } from '../../models/view-category';
|
||||||
import { ViewCreateMotion } from '../../models/view-create-motion';
|
import { ViewCreateMotion } from '../../models/view-create-motion';
|
||||||
@ -1448,19 +1448,6 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Translate the state's css class into a color
|
|
||||||
*
|
|
||||||
* @returns a string representing a color
|
|
||||||
*/
|
|
||||||
public getStateCssColor(): string {
|
|
||||||
if (!this.motion.state) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
return StateCssClassMapping[this.motion.state.css_class] || '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public swipe(e: TouchEvent, when: string): void {
|
public swipe(e: TouchEvent, when: string): void {
|
||||||
const coord: [number, number] = [e.changedTouches[0].pageX, e.changedTouches[0].pageY];
|
const coord: [number, number] = [e.changedTouches[0].pageX, e.changedTouches[0].pageY];
|
||||||
const time = new Date().getTime();
|
const time = new Date().getTime();
|
||||||
|
@ -78,16 +78,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- state line-->
|
<!-- state line-->
|
||||||
<div class="ellipsis-overflow white">
|
<div class="ellipsis-overflow white">
|
||||||
<mat-basic-chip
|
<mat-basic-chip *ngIf="motion.state" [ngClass]="motion.stateCssColor" [disabled]="true">
|
||||||
*ngIf="motion.state"
|
|
||||||
[ngClass]="{
|
|
||||||
green: motion.state.css_class === 'success',
|
|
||||||
red: motion.state.css_class === 'danger',
|
|
||||||
grey: motion.state.css_class === 'default',
|
|
||||||
lightblue: motion.state.css_class === 'primary'
|
|
||||||
}"
|
|
||||||
[disabled]="true"
|
|
||||||
>
|
|
||||||
{{ getStateLabel(motion) }}
|
{{ getStateLabel(motion) }}
|
||||||
</mat-basic-chip>
|
</mat-basic-chip>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,7 +7,7 @@ import { Title } from '@angular/platform-browser';
|
|||||||
import { TranslateService } from '@ngx-translate/core';
|
import { TranslateService } from '@ngx-translate/core';
|
||||||
|
|
||||||
import { BaseViewComponent } from 'app/site/base/base-view';
|
import { BaseViewComponent } from 'app/site/base/base-view';
|
||||||
import { ViewWorkflow } from '../../models/view-workflow';
|
import { ViewWorkflow, StateCssClassMapping } from '../../models/view-workflow';
|
||||||
import { WorkflowRepositoryService } from 'app/core/repositories/motions/workflow-repository.service';
|
import { WorkflowRepositoryService } from 'app/core/repositories/motions/workflow-repository.service';
|
||||||
import { WorkflowState, MergeAmendment } from 'app/shared/models/motions/workflow-state';
|
import { WorkflowState, MergeAmendment } from 'app/shared/models/motions/workflow-state';
|
||||||
import { PromptService } from 'app/core/ui-services/prompt.service';
|
import { PromptService } from 'app/core/ui-services/prompt.service';
|
||||||
@ -90,7 +90,7 @@ export class WorkflowDetailComponent extends BaseViewComponent implements OnInit
|
|||||||
/**
|
/**
|
||||||
* Determine label colors. Where they should come from is currently now know
|
* Determine label colors. Where they should come from is currently now know
|
||||||
*/
|
*/
|
||||||
public labelColors = ['default', 'primary', 'success', 'danger'];
|
public labelColors = ['default', 'primary', 'success', 'danger', 'warning'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds state permissions
|
* Holds state permissions
|
||||||
@ -385,17 +385,6 @@ export class WorkflowDetailComponent extends BaseViewComponent implements OnInit
|
|||||||
* @returns a string representing a color
|
* @returns a string representing a color
|
||||||
*/
|
*/
|
||||||
public getStateCssColor(colorLabel: string): string {
|
public getStateCssColor(colorLabel: string): string {
|
||||||
switch (colorLabel) {
|
return StateCssClassMapping[colorLabel] || '';
|
||||||
case 'success':
|
|
||||||
return 'green';
|
|
||||||
case 'danger':
|
|
||||||
return 'red';
|
|
||||||
case 'default':
|
|
||||||
return 'grey';
|
|
||||||
case 'primary':
|
|
||||||
return 'lightblue';
|
|
||||||
default:
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ import { ViewUser } from 'app/site/users/models/view-user';
|
|||||||
import { ViewTag } from 'app/site/tags/models/view-tag';
|
import { ViewTag } from 'app/site/tags/models/view-tag';
|
||||||
import { ViewMediafile } from 'app/site/mediafiles/models/view-mediafile';
|
import { ViewMediafile } from 'app/site/mediafiles/models/view-mediafile';
|
||||||
import { ViewItem } from 'app/site/agenda/models/view-item';
|
import { ViewItem } from 'app/site/agenda/models/view-item';
|
||||||
import { ViewWorkflow } from './view-workflow';
|
import { ViewWorkflow, StateCssClassMapping } from './view-workflow';
|
||||||
import { ViewCategory } from './view-category';
|
import { ViewCategory } from './view-category';
|
||||||
import { ViewMotionBlock } from './view-motion-block';
|
import { ViewMotionBlock } from './view-motion-block';
|
||||||
import { BaseViewModel } from 'app/site/base/base-view-model';
|
import { BaseViewModel } from 'app/site/base/base-view-model';
|
||||||
@ -327,6 +327,15 @@ export class ViewMotion extends BaseAgendaViewModel implements Searchable {
|
|||||||
return this.personalNote && this.personalNote.note ? true : false;
|
return this.personalNote && this.personalNote.note ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Translate the state's css class into a color
|
||||||
|
*
|
||||||
|
* @returns a string representing a color
|
||||||
|
*/
|
||||||
|
public get stateCssColor(): string {
|
||||||
|
return StateCssClassMapping[this.state.css_class] || '';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is set by the repository
|
* This is set by the repository
|
||||||
*/
|
*/
|
||||||
|
@ -6,7 +6,8 @@ export const StateCssClassMapping = {
|
|||||||
success: 'green',
|
success: 'green',
|
||||||
danger: 'red',
|
danger: 'red',
|
||||||
default: 'grey',
|
default: 'grey',
|
||||||
primary: 'lightblue'
|
primary: 'lightblue',
|
||||||
|
warning: 'yellow'
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user