Category: BBH
-
Blazor Browser History-part–04-problems solved
01 Deploy to github pages – that are not root enabled To display to Githbub pages ( i.e. https://ignatandrei.github.io/BlazorBrowserHistory/ ) the base href must be overwritten To do so I have been doing in index.html with a powershell script found in src\BBH\modifyPostData.ps1 Write-Host “modify index.html” $indexFilePath = “Release/UIBlazor/wwwroot/index.html” $Content = Get-Content -Path $indexFilePath -Raw $updatedContent…
-
Blazor Browser History–part 03–implementation
01 Introduction Because I said that I have 2 implementations for same sqlite database (SqliteWasmBlazor and BitBeSql), there will be interfaces . The first one is to save data and retrieve data – a CRUD 02 Interface IBrowserUserHistoryRepositoryDatabase Description: Base interface defining database operations for browser history. This is the core abstraction for data persistence.…
-
Blazor Browser History – part 02 – Database
To store data where the user have been it is not so complicated. However, the part of making querys – I do prefer old SQL . So the choice will be a database that runs into the browser- and Sqlite seems the choice – see https://sqlite.org/wasm/doc/trunk/index.md Now the only thing is to find a provide…
-
Blazor Browser History – part 1 – idea
Working with UI , I remember the old times where there was a MRU . So , why not do one for Blazor ? Especially for Blazor WASM . What should do: 1. See what URL’s have the user have been accessed . Retrieve URL and Page Title . 2. Store this into a browser…