Jump to content

Masterwishx

Members
  • Posts

    824
  • Joined

  • Last visited

Posts posted by Masterwishx

  1. 1 hour ago, scolcipitato said:

    I left the webui open for a couple of days now, and I don't have this problem.

    What I think is happening is that the web socket is stopping sending data, this means my code won't get triggered and consequently won't update the values in the webui.

    You can check on that by opening the dev tools and going to the network section and searching for dockerload clicking on the only row you see and going to the Messages section, here you can see the messages that the socket receives.

    Either way I don't know how to proceed, if the socket stops receiving data the problem is on the server, if the socket continues receiving data, but you don't see it updating the webui then the problem is on the client, but again, I used standard JS event listener

    so if it doesn't work, I don't even know where to begin.

    The problem is fixed:

    Removed value of 60s time frame in first folder, then apply. 

    Now all working fine. 

    What is mean time frame by the way? 

  2. 30 minutes ago, scolcipitato said:

    I left the webui open for a couple of days now, and I don't have this problem.

    What I think is happening is that the web socket is stopping sending data, this means my code won't get triggered and consequently won't update the values in the webui.

    You can check on that by opening the dev tools and going to the network section and searching for dockerload clicking on the only row you see and going to the Messages section, here you can see the messages that the socket receives.

    Either way I don't know how to proceed, if the socket stops receiving data the problem is on the server, if the socket continues receiving data, but you don't see it updating the webui then the problem is on the client, but again, I used standard JS event listener

    so if it doesn't work, I don't even know where to begin.

     

    i will send your in pm ...

  3. @hernandito i hope you successfully restored your data and its OK,

    if i dont mistake, in past in docker folder :

    if container have autostart on and its stopped now ,then color of folder is changed , is anyway we can add it to docker-custom.css ?

     

    PS : Also orange folder color when update available for container and its orange color

  4. 1 hour ago, Mattaton said:

    @hernandito

    Okay. Sorry to blow things up with css code. Last tweak, I hope. 🙂

    I realized that the left: 0 and right: 0 only worked on folders with enough container children to fill the width of the pane. Othwerwise it dropped back into flow with the unexpanded folders. That's fixed and I used a calc() to add 10px to the 100% width.

     

    I also refactored some code and cleaned things up. This should work pretty solid. I don't have any folders on my VMs, but this should style that area to match the docker pane with a few tweaks.

     

    /* Apply border-box to all elements inside the docker and vm panes */
    #docker_view *,
    #vm_view * {
      box-sizing: border-box;
    }
    
    /* Add a padding left to the entire docker and vm icon area */
    #docker_view tr:nth-child(2) td,
    #vm_view tr:nth-child(2) td {
      padding-left: 20px;
    }
    
    /* Expanded folder outer wrapper styles */
    .folder-showcase-outer[expanded="true"] {
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 20px;
      margin-left: -10px; /* Overcome 20px container padding-left by giving
                          expanded folder a negative left margin */
    }
    
    /* Push expanded folder and its children to full width
    and break them out of flow with non-expanded icons */
    .folder-showcase-outer[expanded="true"],
    .folder-showcase-outer[expanded="true"] .folder-showcase {
      float: left;
      display: block;
      width: calc(
        100% + 10px 
      ); /* Add 10px to the width to overcome negative margin */
    }
    
    /* Expanded folder header styles */
    .folder-showcase-outer[expanded="true"] .folder-docker {
      position: relative; /* Needed for absolute positioning of expanded arrow icon */
      display: block;
      float: none;
      padding: 8px;
      border: 1px solid rgba(255, 255, 255, 0); /* transparent border for size */
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }
    
    /* Increase the size of the expanded folder's icon */
    .folder-showcase-outer[expanded="true"] .folder-img-docker {
      width: 48px;
      height: 48px;
    }
    
    /* Increase the font size for the expanded folder */
    .folder-showcase-outer[expanded="true"] .folder-appname-docker {
      font-size: 2rem;
    }
    
    /* Down arrow icon for the expanded folder header */
    .folder-showcase-outer[expanded="true"] .folder-docker::after {
      position: absolute;
      content: "\f0d7";
      display: block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 3rem;
      right: 1rem;
      bottom: 0;
    }
    
    /* Child docker container icons "drawer" styles */
    .folder-showcase-outer[expanded="true"] .folder-showcase {
      padding: 0 20px;
    }
    
    /* Hide the "started" and "stopped" text so that only
    the green arrow or red square shows on containers */
    #docker_view .folder-element-docker .state {
      display: none;
    }

     

     

    Thanks, its really cool looking in dashboard

    • Like 1
  5. 13 hours ago, Mattaton said:

    Unfortunately, I'm still missing those globe icons after the update.

    i have also missing globe icon for urBackup,Krusader

     

    Mostly webui now link ip:port is working but still have piAlert,Home-Assistant-Core ... no link (about:blank#blocked)

     

    image.png.f244a4dea5f6ea3430f5041bb14e8c47.png

     

    Moslty i dont have lines of CPU/MEM but after refresh i have it for couple sec then it stuck /stop :

     

    image.thumb.png.ad6a13deaea3de0a1682432d1b5be954.png

     

     

     

    image.thumb.png.c9d9c581feb49a77a65da7b358e677b6.png

     

     

     

     

  6. After Update:

    1. Click on Globe open about:blank#blocked page in docker page for all containers. also in advanced context.

    Advanced menu:

    not shown cpu/mem lines update (blank ) , no ports , only volume mapping is shows.

    image.thumb.png.b224ab2dc3025e8ebda81141507a88ce.png

     

    image.thumb.png.fc7aa3b5fbee7d6b87b84501abc99da3.png

     

    image.thumb.png.6f53b39bc9d2d870529eaad838e04584.png

  7. 3 hours ago, scolcipitato said:

    This is the day.

    The newest version of the plugin is here, 2023.09.15.

    As said in the posts above, I have added:

    • The advanced docker context menu.
    • Support for more languages.
    • Button to open the console in the preview. Thanks to @Kloudz
    • Now you can add docker containers to a folder with labels, the label to do this is folder.view The value should be the name of the folder. Thanks to @jbb
    • Added a small button to verify that the order of the autostart match the order you see. immagine.png.2073bbf64b0cfd9323c635db43d99d19.png
      This icon will turn red if the autostart order is different from what you see.
    • Fixed the error when rebooting the server without internet connectivity.

    EXPECT A LOT OF BUGS!

     

     

    Strange but i have same context menu as was befor :

     

    image.png.70e0f179f25cba816dba7c9b0b0585bc.png

  8. 54 minutes ago, Mattaton said:

    Depending on how complex your folder setup is, it's not bad redoing it for Folder View. 

     

    Like was posted here befor by @scolcipitato

    I migrated 100 containers in 21 folders

    Not too hard: Make new folders in Gui, then edit json file and copy containers from old json, set the order in Gui. 

    Check tutorial for more info

    • Like 1
  9. how i can setup check parity in Unraid - '0 0 1 */3 *' every 3 month on 1 day  0:00?

    if i set custom i can select months , but no day of month select , only weeks :

    i can manually add (0 0 1 */3 *) to parity-check.cron , but not shure it will work it not shown right in webGUI ...

     

    image.thumb.png.440e1cf88d42bfe6c07f2fb27a335533.png

     

     

  10. 3 hours ago, scolcipitato said:

    Just visual, you have to reorder again to make the change happen on unraid side.

     

    all changes of start order of containers is saved to userprefs.cfg in DockerMan, like in Dockerfolder was ?

  11. 10 hours ago, Rysz said:

    I just updated my post, I found out what is happening with the VA value - I'll update this with the next version, but this should've been the same in Simon's version because that code wasn't changed.

     

    Is there anything regarding the connection in the logs? I can't read the WinNUT logs so no clue what's happening there. Did this also happen with Simon's version before? If not, probably best to switch back if your UPS plays more nicely with the older NUT backend.

     

     

    OK, Thanks a lot,  im not sure about lasted version of Simon's but some version befor i checked and think they was the same values.

    about WinNUT maybe its my bad and its tryed to connect when server was not ready, i will check it again also with 2.8.0 version.

    Thanks for you help

     

     

    • Upvote 1
×
×
  • Create New...