This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/js/directives/ui/manage-trigger-custom-git/manage-trigger-custom-git.component.ts
Charlton Austin faa6b0c3a6 fix(custom git trigger): fixed init
correctly added in default parameters for config

[TESTING -> locally with docker]

Issue: https://www.pivotaltracker.com/story/show/145071887

- [ ] It works!
- [ ] Comments provide sufficient explanations for the next contributor
- [ ] Tests cover changes and corner cases
- [ ] Follows Quay syntax patterns and format
2017-05-15 13:37:00 -05:00

35 lines
1.2 KiB
TypeScript

import {Component, EventEmitter, Input, OnChanges, Output, SimpleChanges} from "ng-metadata/core";
/**
* A component that lets the user set up a build trigger for a custom Git repository.
*/
@Component({
selector: 'manage-trigger-custom-git',
templateUrl: '/static/js/directives/ui/manage-trigger-custom-git/manage-trigger-custom-git.component.html'
})
export class ManageTriggerCustomGitComponent implements OnChanges {
// FIXME: Use one-way data binding
@Input('=') public trigger: {config: any};
@Output() public activateTrigger: EventEmitter<{config: any, pull_robot?: any}> = new EventEmitter();
private config: any = {"context": "/", "dockerfile_path": "/Dockerfile"};
private currentState: any | null;
public ngOnChanges(changes: SimpleChanges): void {
if (changes['trigger'] !== undefined) {
this.config = Object.assign({}, changes['trigger'].currentValue.config);
}
if (this.config.context === "") {
this.config.context = "/";
}
if (this.config.dockerfile_path === "") {
if (this.config.context.endsWith("/")) {
this.config.dockerfile_path = this.config.context + "Dockerfile";
} else {
this.config.dockerfile_path = this.config.context + "/Dockerfile";
}
}
}
}