diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-21 21:57:28 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-21 21:57:28 +0000 |
commit | e493dca870fdabbf29e611dc12921afcdb9bf085 (patch) | |
tree | 78ec87f1906cd5dfafbe77076a9a28c9f214182b /Frontend/scripts | |
parent | 97e1644b888e1aab43bd6784b83c11aaf7ee5c48 (diff) | |
download | newsaggregator-e493dca870fdabbf29e611dc12921afcdb9bf085.tar.gz newsaggregator-e493dca870fdabbf29e611dc12921afcdb9bf085.tar.bz2 newsaggregator-e493dca870fdabbf29e611dc12921afcdb9bf085.zip |
Moved to outside directory - redoing seperation of concerns
Diffstat (limited to 'Frontend/scripts')
-rw-r--r-- | Frontend/scripts/main.ts | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/Frontend/scripts/main.ts b/Frontend/scripts/main.ts new file mode 100644 index 0000000..e68bc97 --- /dev/null +++ b/Frontend/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<Article> = [ + 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)); |