mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* feat(stack): backport changes to CE EE-1189 * feat(stack): front end backport changes to CE EE-1199 (#5455) * feat(stack): front end backport changes to CE EE-1199 * fix k8s deploy logic * fixed web editor confirmation message typo. EE-1501 * fix(stack): fixed issue auth detail not remembered EE-1502 (#5459) * show status in buttons * removed onChangeRef function. * moved buttons in git form to its own component * removed unused variable. Co-authored-by: ArrisLee <arris_li@hotmail.com> * moved formvalue to kube app component * fix(stack): failed to pull and redeploy compose format k8s stack * fixed form value * fix(k8s): file content overridden when deployment failed with compose format EE-1548 * updated API response to get IsComposeFormat and show appropriate text. * error message updates for different file type * not display creation source for external application * added confirmation modal to advanced app created by web editor * stop showing confirmation modal when updating application * disable rollback button when application type is not applicatiom form * added analytics-on directive to pull and redeploy button * fix(kube): don't valide resource control access for kube (#5568) * added question marks to k8s app confirmation modal * fix(k8s): Git authentication info not persisted * removed unused function. Co-authored-by: Hui <arris_li@hotmail.com> Co-authored-by: fhanportainer <79428273+fhanportainer@users.noreply.github.com> Co-authored-by: Felix Han <felix.han@portainer.io>
60 lines
1.8 KiB
JavaScript
60 lines
1.8 KiB
JavaScript
import { ResourceControlViewModel } from 'Portainer/models/resourceControl/resourceControl';
|
|
|
|
export function StackViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Type = data.Type;
|
|
this.Name = data.Name;
|
|
this.EndpointId = data.EndpointId;
|
|
this.SwarmId = data.SwarmId;
|
|
this.Env = data.Env ? data.Env : [];
|
|
this.IsComposeFormat = data.IsComposeFormat;
|
|
if (data.ResourceControl && data.ResourceControl.Id !== 0) {
|
|
this.ResourceControl = new ResourceControlViewModel(data.ResourceControl);
|
|
}
|
|
this.Status = data.Status;
|
|
this.CreationDate = data.CreationDate;
|
|
this.CreatedBy = data.CreatedBy;
|
|
this.UpdateDate = data.UpdateDate;
|
|
this.UpdatedBy = data.UpdatedBy;
|
|
this.Regular = true;
|
|
this.External = false;
|
|
this.Orphaned = false;
|
|
this.Checked = false;
|
|
this.GitConfig = data.GitConfig;
|
|
this.AdditionalFiles = data.AdditionalFiles;
|
|
this.AutoUpdate = data.AutoUpdate;
|
|
}
|
|
|
|
export function ExternalStackViewModel(name, type, creationDate) {
|
|
this.Name = name;
|
|
this.Type = type;
|
|
this.CreationDate = creationDate;
|
|
|
|
this.Regular = false;
|
|
this.External = true;
|
|
this.Orphaned = false;
|
|
this.Checked = false;
|
|
}
|
|
|
|
export function OrphanedStackViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Type = data.Type;
|
|
this.Name = data.Name;
|
|
this.EndpointId = data.EndpointId;
|
|
this.SwarmId = data.SwarmId;
|
|
this.Env = data.Env ? data.Env : [];
|
|
if (data.ResourceControl && data.ResourceControl.Id !== 0) {
|
|
this.ResourceControl = new ResourceControlViewModel(data.ResourceControl);
|
|
}
|
|
this.Status = data.Status;
|
|
this.CreationDate = data.CreationDate;
|
|
this.CreatedBy = data.CreatedBy;
|
|
this.UpdateDate = data.UpdateDate;
|
|
this.UpdatedBy = data.UpdatedBy;
|
|
|
|
this.Regular = false;
|
|
this.External = false;
|
|
this.Orphaned = true;
|
|
this.OrphanedRunning = false;
|
|
this.Checked = false;
|
|
}
|