Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC
Open Closed

Angular VErsion Upgrade - Clear Web Browser cache on deploy - V12 - to V13.4 #12207


User avatar
0
pliaspzero created

Hi,

When there is a new release deployed the users always have to press CTRL + F5 to clear the cache and reload the Javascript and CSS files correctly.

I wonder if there is a way to automatically reload or clear the cache when there is a new version deployed.

Is that the Maianentane feature ? How dsoes it work if so?

Kind regards, Oliver


19 Answer(s)
  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi pliaspzero

    "Send New Release Notification" button in Maintenance will reload CSS and Javascript files along with sending notifications to users.

  • User Avatar
    0
    pliaspzero created

    Hi, thanks - we tried that - but Push Notification wasnt sent. Also we would expect that user after next login get something like PopUp "New Version pls press OK" or something like that? Any further hints for me? Thx in advance.

  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi pliaspzero

    When the Send New Version Notification button is pressed, when other users log in, they are greeted with a modal as shown in the screenshot. It will not close unless you click either Cancel or Yes.

  • User Avatar
    0
    pliaspzero created

    Hi, I don't see the "Send New Version Notification button" - where is it?

  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi pliaspzero

    You must have "Pages.Administration.NewVersion.Create" permission. Related section

  • User Avatar
    0
    pliaspzero created

    We use latest version. - seems that you forgot to create the NewVersion_Create permission in the provider for Angular.

  • User Avatar
    0
    pliaspzero created

    one more thing - notifcation is created - but PopUp is not showing up for refresh - any idea?

  • User Avatar
    0
    pliaspzero created

    maybe because we use 2 instances? on Azure? just read this https://docs.aspnetzero.com/aspnet-core-angular/latest/Clustered-Environment

    Scaling SignalR

    ASPNET Zero has a built-in chat system and real-time notification system. They both use signalR. Before using multiple instances of your project, you should check signalR's scaling documentation and choose SignalR backplane providers or AzureSignalR.

  • User Avatar
    0
    pliaspzero created

    we detected this error - when tenant is deleted - it is not working

  • User Avatar
    0
    pliaspzero created

    We get the popup now - but nothing happens - in Edge - old / temp CSS still destroyes whole page

  • User Avatar
    0
    pliaspzero created

    this is what BOT is propoding:

    Your code looks good for clearing cache data by adding the Clear-Site-Data header. To ensure the CSS and HTML are also cleared, you might need a more comprehensive approach. Here’s a refined version:

    csharp

    Kopieren public class BrowserCacheCleanerController : WFMOneControllerBase { private readonly INotificationAppService _notificationAppService;

    public BrowserCacheCleanerController(INotificationAppService notificationAppService)
    {
        _notificationAppService = notificationAppService;
    }
    
    public async Task<IActionResult> Clear()
    {
        var result = await _notificationAppService.SetAllAvailableVersionNotificationAsRead();
        
        HttpContext.Response.Headers.Append("Clear-Site-Data", "\"cache\", \"cookies\", \"storage\", \"executionContexts\"");
        
        return Json(new { Result = result });
    }
    

    }

  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi pliaspzero

    Here, you can create an event that will be triggered when the new version notification reaches the user, so it makes sense to create a Clear method. However, if you only want to reload CSS and Javascript files, it would be more logical to use only the "cache" parameter. This is up to you depending on your scenario. In the event received function, you can call the Clear method when the notification with the NotificationName NewVersionAvailable arrives.

    _Header.js

    abp.event.on('abp.notifications.received', function (userNotification) {
      _appUserNotificationHelper.show(userNotification);
      loadNotifications();
      //In this section you can call the Clear method
    });
    
  • User Avatar
    0
    pliaspzero created

    we use the the "cache" parameter - but it do not work

  • User Avatar
    0
    pliaspzero created

    "destroyed" UI :

  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi

    In which browser are you experiencing this issue? Can you share the console and error output with us? Did you use the "yarn create-bundles" command when making changes to the bundle files?

  • User Avatar
    0
    pliaspzero created

    this is Edge Browser Hardcopy

  • User Avatar
    0
    pliaspzero created

    Sent you also a video to your info@ and support@ - here a screenshot:

  • User Avatar
    0
    m.aliozkaya created
    Support Team

    Hi @pliaspzero,

    Thanks we will test it for Edge browser

  • User Avatar
    0
    pliaspzero created

    any idea?