Add project files.
This commit is contained in:
12
BlazorSyncfusionCrm/Client/App.razor
Normal file
12
BlazorSyncfusionCrm/Client/App.razor
Normal file
@ -0,0 +1,12 @@
|
||||
<Router AppAssembly="@typeof(App).Assembly">
|
||||
<Found Context="routeData">
|
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
||||
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
||||
</Found>
|
||||
<NotFound>
|
||||
<PageTitle>Not found</PageTitle>
|
||||
<LayoutView Layout="@typeof(MainLayout)">
|
||||
<p role="alert">Sorry, there's nothing at this address.</p>
|
||||
</LayoutView>
|
||||
</NotFound>
|
||||
</Router>
|
||||
20
BlazorSyncfusionCrm/Client/BlazorSyncfusionCrm.Client.csproj
Normal file
20
BlazorSyncfusionCrm/Client/BlazorSyncfusionCrm.Client.csproj
Normal file
@ -0,0 +1,20 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.5" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.5" PrivateAssets="all" />
|
||||
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
|
||||
<PackageReference Include="Syncfusion.Blazor" Version="21.1.39" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Shared\BlazorSyncfusionCrm.Shared.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
7
BlazorSyncfusionCrm/Client/MainLayout.razor
Normal file
7
BlazorSyncfusionCrm/Client/MainLayout.razor
Normal file
@ -0,0 +1,7 @@
|
||||
@inherits LayoutComponentBase
|
||||
|
||||
<NavBar />
|
||||
|
||||
<main>
|
||||
@Body
|
||||
</main>
|
||||
65
BlazorSyncfusionCrm/Client/Pages/Contacts.razor
Normal file
65
BlazorSyncfusionCrm/Client/Pages/Contacts.razor
Normal file
@ -0,0 +1,65 @@
|
||||
@page "/contacts"
|
||||
@inject NavigationManager NavigationManager
|
||||
<h3>Contacts</h3>
|
||||
|
||||
<SfGrid DataSource="GridData" AllowFiltering="true" Toolbar="@(new List<string>() {"Search"})">
|
||||
<GridFilterSettings Type="Syncfusion.Blazor.Grids.FilterType.CheckBox"></GridFilterSettings>
|
||||
<GridColumns>
|
||||
<GridColumn Width="60">
|
||||
<Template>
|
||||
@{
|
||||
var contact = context as Contact;
|
||||
<SfButton CssClass="e-inherit" IconCss="e-icons e-edit"
|
||||
OnClick="@(() => EditContact(contact!.Id))"></SfButton>
|
||||
}
|
||||
</Template>
|
||||
</GridColumn>
|
||||
<GridColumn Field="FirstName" HeaderText="First Name"></GridColumn>
|
||||
<GridColumn Field="LastName" HeaderText="Last Name"></GridColumn>
|
||||
<GridColumn Field="NickName" HeaderText="Nick Name"></GridColumn>
|
||||
<GridColumn Field="Place" HeaderText="Place"></GridColumn>
|
||||
<GridColumn Field="DateOfBirth" HeaderText="Date Of Birth" Format="yyyy-MM-dd"></GridColumn>
|
||||
</GridColumns>
|
||||
|
||||
</SfGrid>
|
||||
|
||||
@code {
|
||||
public List<Contact> GridData { get; set; } = new List<Contact>
|
||||
{
|
||||
new Contact
|
||||
{
|
||||
Id = 1,
|
||||
FirstName = "Peter",
|
||||
LastName = "Parker",
|
||||
NickName = "Spider-Man",
|
||||
Place = "New York City",
|
||||
DateOfBirth = new DateTime(2001, 8, 1),
|
||||
DateCreated = DateTime.Now
|
||||
},
|
||||
new Contact
|
||||
{
|
||||
Id = 1,
|
||||
FirstName = "Tony",
|
||||
LastName = "Stark",
|
||||
NickName = "Iron Man",
|
||||
Place = "Malibu",
|
||||
DateOfBirth = new DateTime(1970, 5, 29),
|
||||
DateCreated = DateTime.Now
|
||||
},
|
||||
new Contact
|
||||
{
|
||||
Id = 1,
|
||||
FirstName = "Bruce",
|
||||
LastName = "Wayne",
|
||||
NickName = "Batman",
|
||||
Place = "Gotham City",
|
||||
DateOfBirth = new DateTime(1915, 4, 7),
|
||||
DateCreated = DateTime.Now
|
||||
}
|
||||
};
|
||||
|
||||
void EditContact(int Id)
|
||||
{
|
||||
NavigationManager.NavigateTo($"contacts/edit/{Id}");
|
||||
}
|
||||
}
|
||||
3
BlazorSyncfusionCrm/Client/Pages/Index.razor
Normal file
3
BlazorSyncfusionCrm/Client/Pages/Index.razor
Normal file
@ -0,0 +1,3 @@
|
||||
@page "/"
|
||||
|
||||
<h1>Wellcome to Blazing CRM!</h1>
|
||||
18
BlazorSyncfusionCrm/Client/Program.cs
Normal file
18
BlazorSyncfusionCrm/Client/Program.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using BlazorSyncfusionCrm.Client;
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||
using Syncfusion.Blazor;
|
||||
|
||||
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||||
builder.RootComponents.Add<App>("#app");
|
||||
builder.RootComponents.Add<HeadOutlet>("head::after");
|
||||
|
||||
builder.Services.AddHttpClient("BlazorSyncfusionCrm.ServerAPI", client => client.BaseAddress = new Uri(builder.HostEnvironment.BaseAddress));
|
||||
|
||||
// Supply HttpClient instances that include access tokens when making requests to the server project
|
||||
builder.Services.AddScoped(sp => sp.GetRequiredService<IHttpClientFactory>().CreateClient("BlazorSyncfusionCrm.ServerAPI"));
|
||||
builder.Services.AddSyncfusionBlazor();
|
||||
|
||||
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("MTcyMTQ0NkAzMjMxMmUzMTJlMzMzNVNvVmlFLy9zUk5TTTlURGZIeTRCelpRR2FTQ1NXTXRrSGpNcVJKMzRES1E9");
|
||||
|
||||
await builder.Build().RunAsync();
|
||||
38
BlazorSyncfusionCrm/Client/Properties/launchSettings.json
Normal file
38
BlazorSyncfusionCrm/Client/Properties/launchSettings.json
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"iisSettings": {
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:57610",
|
||||
"sslPort": 44334
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"applicationUrl": "http://localhost:5229",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"applicationUrl": "https://localhost:7031;http://localhost:5229",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
22
BlazorSyncfusionCrm/Client/Shared/NavBar.razor
Normal file
22
BlazorSyncfusionCrm/Client/Shared/NavBar.razor
Normal file
@ -0,0 +1,22 @@
|
||||
@inject NavigationManager NavigationManager
|
||||
|
||||
<SfAppBar ColorMode="AppBarColor.Primary">
|
||||
<SfButton CssClass="e-inherit" IconCss="e-icons e-home" Content="Home"
|
||||
OnClick="@(()=> NavigateToPage("/"))" />
|
||||
<SfButton CssClass="e-inherit" IconCss="e-icons e-user" Content="Contacts"
|
||||
OnClick="@(()=> NavigateToPage("/contacts"))" />
|
||||
<SfButton CssClass="e-inherit" IconCss="e-icons e-location" Content="Map"
|
||||
OnClick="@(()=> NavigateToPage("/map"))" />
|
||||
<SfButton CssClass="e-inherit" IconCss="e-icons e-notes" Content="Notes"
|
||||
OnClick="@(()=> NavigateToPage("/notes"))" />
|
||||
<AppBarSpacer></AppBarSpacer>
|
||||
<SfButton CssClass="e-inherit" IconCss="e-icons e-plus" Content="New Contact" />
|
||||
|
||||
</SfAppBar>
|
||||
|
||||
@code {
|
||||
void NavigateToPage(string page)
|
||||
{
|
||||
NavigationManager.NavigateTo(page);
|
||||
}
|
||||
}
|
||||
14
BlazorSyncfusionCrm/Client/_Imports.razor
Normal file
14
BlazorSyncfusionCrm/Client/_Imports.razor
Normal file
@ -0,0 +1,14 @@
|
||||
@using System.Net.Http
|
||||
@using System.Net.Http.Json
|
||||
@using Microsoft.AspNetCore.Components.Routing
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using Microsoft.AspNetCore.Components.WebAssembly.Http
|
||||
@using Microsoft.JSInterop
|
||||
@using BlazorSyncfusionCrm.Client.Shared
|
||||
@using BlazorSyncfusionCrm.Client
|
||||
@using BlazorSyncfusionCrm.Shared;
|
||||
@using Syncfusion.Blazor
|
||||
@using Syncfusion.Blazor.Navigations
|
||||
@using Syncfusion.Blazor.Buttons
|
||||
@using Syncfusion.Blazor.Grids
|
||||
|
||||
42
BlazorSyncfusionCrm/Client/wwwroot/css/app.css
Normal file
42
BlazorSyncfusionCrm/Client/wwwroot/css/app.css
Normal file
@ -0,0 +1,42 @@
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: Roboto, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
main {
|
||||
margin: 12px;
|
||||
}
|
||||
|
||||
h1:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#blazor-error-ui {
|
||||
background: lightyellow;
|
||||
bottom: 0;
|
||||
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
|
||||
display: none;
|
||||
left: 0;
|
||||
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
#blazor-error-ui .dismiss {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
right: 0.75rem;
|
||||
top: 0.5rem;
|
||||
}
|
||||
|
||||
.blazor-error-boundary {
|
||||
background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
|
||||
padding: 1rem 1rem 1rem 3.7rem;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.blazor-error-boundary::after {
|
||||
content: "An error has occurred."
|
||||
}
|
||||
26
BlazorSyncfusionCrm/Client/wwwroot/index.html
Normal file
26
BlazorSyncfusionCrm/Client/wwwroot/index.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>BlazorSyncfusionCrm</title>
|
||||
<base href="/" />
|
||||
<link href="css/app.css" rel="stylesheet" />
|
||||
<link href="_content/Syncfusion.Blazor/styles/bootstrap5.css" rel="stylesheet" />
|
||||
<!-- If you add any scoped CSS files, uncomment the following to load them
|
||||
<link href="BlazorSyncfusionCrm.Client.styles.css" rel="stylesheet" /> -->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app">Loading...</div>
|
||||
|
||||
<div id="blazor-error-ui">
|
||||
An unhandled error has occurred.
|
||||
<a href="" class="reload">Reload</a>
|
||||
<a class="dismiss">🗙</a>
|
||||
</div>
|
||||
<script src="_framework/blazor.webassembly.js"></script>
|
||||
<script src="_content/Syncfusion.Blazor/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user