Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 37 additions & 5 deletions server/Components/App.razor
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@

@inject NavigationManager Urihelper
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blazor Document Explorer Showcase example | Syncfusion Demos</title>
<meta name="description" content="The showcase for Blazor Document Explorer, allows users to manage the file system, perform common file operations, and opens Word, RTF & Power Point documents." />
<!-- Google Tag Manager -->
<!-- Google Tag Manager -->
<!-- Load GTM-P3WXFWCW immediately on page load -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
Expand All @@ -15,14 +16,38 @@
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-WLQL39J');</script>
<!-- End Google Tag Manager -->
})(window, document, 'script', 'dataLayer', 'GTM-P3WXFWCW');
</script>
<!-- Load GTM-W8WD8WN on user interaction -->
<script>
document.addEventListener("DOMContentLoaded", function () {
const events = ["mousemove", "scroll", "keydown", "touchstart"];
function loadGTM() {
events.forEach(event => document.removeEventListener(event, loadGTM));
(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-W8WD8WN');
}
events.forEach(event => document.addEventListener(event, loadGTM, { once: true }));
});
</script>
<base href="/" />
<link href=@Urihelper.Uri rel="canonical" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
@{#if Release}
<link href="css/site.min.css" rel="stylesheet" />
<script src="./Script/JsInteropHelper.min.js"></script>
@{#else}
<link href="css/site.css" rel="stylesheet" />
<script src="./Script/JsInteropHelper.js"></script>
@{#endif}
<link href="_content/Syncfusion.Blazor.Themes/bootstrap4.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
<script src="_content/Syncfusion.Blazor.SfPdfViewer/scripts/syncfusion-blazor-sfpdfviewer.min.js" type="text/javascript"></script>
Expand All @@ -33,7 +58,14 @@
<body>
<Routes @rendermode="@InteractiveServer" />
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src=https://www.googletagmanager.com/ns.html?id=GTM-WLQL39J height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!--Page Load-->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P3WXFWCW" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!--Interaction-->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W8WD8WN" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div hidden id="sync-analytics" data-queue="EJ2 - Showcase - Blazor - DocumentExplorer"></div>
@*<app>*@
Expand Down
26 changes: 13 additions & 13 deletions server/DocumentExplorer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Syncfusion.Blazor.ImageEditor" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.Navigations" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.Inputs" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.FileManager" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.Buttons" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.Popups" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.WordProcessor" Version="31.1.17" />
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="31.1.17" />
<PackageReference Include="Syncfusion.Licensing" Version="31.1.17" />
<PackageReference Include="Syncfusion.PresentationRenderer.Net.Core" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.ImageEditor" Version="32.1.19" />
<PackageReference Include="Syncfusion.Blazor.Navigations" Version="32.1.19" />
<PackageReference Include="Syncfusion.Blazor.Inputs" Version="32.1.19" />
<PackageReference Include="Syncfusion.Blazor.FileManager" Version="32.1.19" />
<PackageReference Include="Syncfusion.Blazor.Buttons" Version="32.1.19" />
<PackageReference Include="Syncfusion.Blazor.Popups" Version="32.1.19" />
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="32.1.19" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="32.1.19" />
<PackageReference Include="Syncfusion.Blazor.WordProcessor" Version="32.1.19" />
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="32.1.19" />
<PackageReference Include="Syncfusion.Licensing" Version="32.1.19" />
<PackageReference Include="Syncfusion.PresentationRenderer.Net.Core" Version="32.1.19" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.116.1" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading