mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
* feat(services): update services details view * feat(services): Add the ability to edit a service networks * feat(services): show ingress network * refactor(services): use lodash * feat(networks): disable sending when updating * feat(networks): limit size of select * feat(services): update networks only when network is new * feat(services): prevent submitting of empty networks * feat(services): show unique networks * fix(service): use empty array default for networks * feat(service): show only swarm networks * feat(services): show placeholder for network * feat(services): show spaced select box * feat(services): show macvlan ip * feat(service): fetch the network subnet * feat(services): show empty ip when network is not connected Co-authored-by: Chaim Lev-Ari <chiptus@gmail.com>
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
import { ResourceControlViewModel } from 'Portainer/models/resourceControl/resourceControl';
|
|
|
|
export function NetworkViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Name = data.Name;
|
|
this.Scope = data.Scope;
|
|
this.Driver = data.Driver;
|
|
this.Attachable = data.Attachable;
|
|
this.Internal = data.Internal;
|
|
this.IPAM = data.IPAM;
|
|
this.Containers = data.Containers;
|
|
this.Options = data.Options;
|
|
this.Ingress = data.Ingress;
|
|
|
|
this.Labels = data.Labels;
|
|
if (this.Labels && this.Labels['com.docker.compose.project']) {
|
|
this.StackName = this.Labels['com.docker.compose.project'];
|
|
} else if (this.Labels && this.Labels['com.docker.stack.namespace']) {
|
|
this.StackName = this.Labels['com.docker.stack.namespace'];
|
|
}
|
|
|
|
if (data.Portainer) {
|
|
if (data.Portainer.ResourceControl) {
|
|
this.ResourceControl = new ResourceControlViewModel(data.Portainer.ResourceControl);
|
|
}
|
|
if (data.Portainer.Agent && data.Portainer.Agent.NodeName) {
|
|
this.NodeName = data.Portainer.Agent.NodeName;
|
|
}
|
|
}
|
|
|
|
this.ConfigFrom = data.ConfigFrom;
|
|
this.ConfigOnly = data.ConfigOnly;
|
|
}
|