From 0c1eafe2c8d55c76a9756d722ef8c6cce065cc10 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 21 Feb 2019 15:48:41 +0000 Subject: Moved website frontend to wwwroot - a problem for another day --- Main/Startup.cs | 11 +++------- Main/wwwroot/css/main.css | 32 +++++++++++++++++++++++++++++ Main/wwwroot/index.html | 19 ++++++++++++++--- Main/wwwroot/scripts/main.ts | 49 ++++++++++++++++++++++++++++++++++++++++++++ Main/wwwroot/tsconfig.json | 8 ++++++++ 5 files changed, 108 insertions(+), 11 deletions(-) create mode 100644 Main/wwwroot/css/main.css create mode 100644 Main/wwwroot/scripts/main.ts create mode 100644 Main/wwwroot/tsconfig.json (limited to 'Main') diff --git a/Main/Startup.cs b/Main/Startup.cs index 24f2a74..804c4f7 100644 --- a/Main/Startup.cs +++ b/Main/Startup.cs @@ -31,6 +31,7 @@ namespace Server { }); services.AddHangfire(options => options.UseStorage(new MySqlStorage(Configuration.GetConnectionString("Storage")))); + services.AddDirectoryBrowser(); } public void Configure(IApplicationBuilder app, IHostingEnvironment env) { @@ -42,14 +43,8 @@ namespace Server { app.UseHsts(); } - // app.UseDefaultFiles(); - string website_path = Path.Combine( - Directory.GetParent(Directory.GetCurrentDirectory()).ToString(), - "Website/"); - app.UseStaticFiles(new StaticFileOptions { - FileProvider = new PhysicalFileProvider(website_path), - RequestPath = "/test" - }); + app.UseDefaultFiles(); + app.UseStaticFiles(); app.UseHangfireDashboard(); app.UseHangfireServer(); diff --git a/Main/wwwroot/css/main.css b/Main/wwwroot/css/main.css new file mode 100644 index 0000000..ca052da --- /dev/null +++ b/Main/wwwroot/css/main.css @@ -0,0 +1,32 @@ +* { + --size: 20em; + /*Image size*/ +} + +#root { + display: grid; + grid-template-columns: repeat(3, 1fr); + grid-template-rows: repeat(20, 1fr); + grid-gap: 2em; +} + +.Frame { + outline: grey 0.5em auto; +} + +.Frame h1 { + display: inline; + align-content: center; + font-family: 'Poppins', sans-serif; +} + +.Frame a:link, +.Frame a:visited { + color: black; +} + +.Frame img { + display: block; + background-size: cover; + width: 38em; +} \ No newline at end of file diff --git a/Main/wwwroot/index.html b/Main/wwwroot/index.html index bed39c1..d2721dc 100644 --- a/Main/wwwroot/index.html +++ b/Main/wwwroot/index.html @@ -1,5 +1,18 @@ + - - Hello world - + + + + + Page Title + + + + + + +
+ + + \ No newline at end of file diff --git a/Main/wwwroot/scripts/main.ts b/Main/wwwroot/scripts/main.ts new file mode 100644 index 0000000..e68bc97 --- /dev/null +++ b/Main/wwwroot/scripts/main.ts @@ -0,0 +1,49 @@ +class Article { + Container: HTMLElement; + Title: HTMLElement; + Image: HTMLElement; + + constructor(title: string, description: string, article_link: string, image_link: string) { + // object initialisation + this.Container = document.createElement('div'); + this.Title = document.createElement('h1'); + this.Image = new Image(); + let link = document.createElement('a'); + + // attributes + link.innerText = title; + link.setAttribute('href', article_link); + this.Image.setAttribute('src', image_link); + this.Image.setAttribute('title', description); + this.Container.className = "Frame"; + + // make unit + this.Title.appendChild(link); + this.Container.appendChild(this.Title); + this.Container.appendChild(this.Image); + } + + visualise(root: HTMLElement): void { + // visualise the article for document + root.appendChild(this.Container); + } +} + +let root = document.getElementById('root'); + +let title = "Amazon reconsiders building new headquarters in New York City: WaPo"; +let description = "Description"; +let article = "https://www.wikipedia.org/"; +let image = "https://s.abcnews.com/images/Business/long-island-city-gty-jc-181112_hpMain_4x3t_384.jpg"; + +let articles: Array
= [ + new Article(title, description, article, image), + new Article(title, description, article, image), + new Article(title, description, article, image), + new Article(title, description, article, image), + new Article(title, description, article, image), + new Article(title, description, article, image), + new Article(title, description, article, image) +]; + +articles.forEach(article => article.visualise(root)); diff --git a/Main/wwwroot/tsconfig.json b/Main/wwwroot/tsconfig.json new file mode 100644 index 0000000..89d01c4 --- /dev/null +++ b/Main/wwwroot/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "esnext", + "sourceMap": true, + "outDir": "js/" + } +} \ No newline at end of file -- cgit v1.2.3-13-gbd6f