mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 23:21:03 +00:00
Changed the sugestions
This commit is contained in:
parent
fd4d4a1dc6
commit
63b1d871c5
3 changed files with 12 additions and 44 deletions
|
|
@ -53,9 +53,7 @@ oS:
|
|||
openCommand: open {{filename}}
|
||||
openLinkCommand: open {{link}}
|
||||
update:
|
||||
refreshProjectTime: 100ms
|
||||
refreshContainersAndServicesTime: 100ms
|
||||
refreshVolumesTime: 100ms
|
||||
dockerRefreshInterval: 100ms
|
||||
method: never
|
||||
stats:
|
||||
graphs:
|
||||
|
|
|
|||
|
|
@ -191,20 +191,12 @@ type OSConfig struct {
|
|||
}
|
||||
|
||||
// UpdateConfig determines what the default settings are for updating the ui
|
||||
//
|
||||
// For the RefreshProjectTime, RefreshContainersAndServicesTime and RefreshVolumesTime
|
||||
// the application expects a valid duration like: 100ms, 2s, 200ns
|
||||
// for docs see: https://golang.org/pkg/time/#ParseDuration
|
||||
type UpdateConfig struct {
|
||||
// RefreshProjectTime determines the time betweens updates of the project panel
|
||||
RefreshProjectTime string `yaml:"refreshProjectTime,omitempty"`
|
||||
|
||||
// RefreshContainersAndServicesTime determines the time betweens updates of the containers and services panel
|
||||
RefreshContainersAndServicesTime string `yaml:"refreshContainersAndServicesTime,omitempty"`
|
||||
|
||||
// RefreshVolumesTime determines the time betweens updates of the volumes panel
|
||||
RefreshVolumesTime string `yaml:"refreshVolumesTime,omitempty"`
|
||||
Method string `yaml:"method,omitempty"`
|
||||
// RefreshProjectTime determines the time betweens updates of all continues docker commands like docker ps, docker images, etc.
|
||||
// It expects a valid duration like: 100ms, 2s, 200ns
|
||||
// for docs see: https://golang.org/pkg/time/#ParseDuration
|
||||
DockerRefreshInterval time.Duration `yaml:"dockerRefreshInterval,omitempty"`
|
||||
Method string `yaml:"method,omitempty"`
|
||||
}
|
||||
|
||||
// GraphConfig specifies how to make a graph of recorded container stats
|
||||
|
|
@ -356,10 +348,8 @@ func GetDefaultConfig() UserConfig {
|
|||
},
|
||||
OS: GetPlatformDefaultConfig(),
|
||||
Update: UpdateConfig{
|
||||
RefreshProjectTime: "100ms",
|
||||
RefreshContainersAndServicesTime: "100ms",
|
||||
RefreshVolumesTime: "100ms",
|
||||
Method: "never",
|
||||
DockerRefreshInterval: time.Millisecond * 100,
|
||||
Method: "never",
|
||||
},
|
||||
Stats: StatsConfig{
|
||||
MaxDuration: duration,
|
||||
|
|
|
|||
|
|
@ -267,34 +267,14 @@ func (gui *Gui) Run() error {
|
|||
gui.waitForIntro.Add(1)
|
||||
}
|
||||
|
||||
updates := gui.Config.UserConfig.Update
|
||||
projectDuration := time.Millisecond * 100
|
||||
containersAndServicesDuration := time.Millisecond * 100
|
||||
volumesDuration := time.Millisecond * 100
|
||||
toBind := []struct {
|
||||
BindTo *time.Duration
|
||||
Value string
|
||||
}{
|
||||
{&projectDuration, updates.RefreshProjectTime},
|
||||
{&containersAndServicesDuration, updates.RefreshContainersAndServicesTime},
|
||||
{&volumesDuration, updates.RefreshVolumesTime},
|
||||
}
|
||||
for _, item := range toBind {
|
||||
duration, err := time.ParseDuration(item.Value)
|
||||
if err == nil {
|
||||
*item.BindTo = duration
|
||||
continue
|
||||
}
|
||||
gui.Log.Error("Can't parse duration:", err)
|
||||
}
|
||||
|
||||
dockerRefreshInterval := gui.Config.UserConfig.Update.DockerRefreshInterval
|
||||
go func() {
|
||||
gui.waitForIntro.Wait()
|
||||
gui.goEvery(time.Millisecond*50, gui.renderAppStatus)
|
||||
gui.goEvery(time.Millisecond*30, gui.reRenderMain)
|
||||
gui.goEvery(projectDuration, gui.refreshProject)
|
||||
gui.goEvery(containersAndServicesDuration, gui.refreshContainersAndServices)
|
||||
gui.goEvery(volumesDuration, gui.refreshVolumes)
|
||||
gui.goEvery(dockerRefreshInterval, gui.refreshProject)
|
||||
gui.goEvery(dockerRefreshInterval, gui.refreshContainersAndServices)
|
||||
gui.goEvery(dockerRefreshInterval, gui.refreshVolumes)
|
||||
gui.goEvery(time.Millisecond*1000, gui.DockerCommand.UpdateContainerDetails)
|
||||
gui.goEvery(time.Millisecond*1000, gui.checkForContextChange)
|
||||
}()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue