-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
79 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
start cmd /c "npm start" | ||
start cmd /c "cd client && npm start" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
* { | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
mat-toolbar { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
min-height: 64px; | ||
} | ||
|
||
#content { | ||
overflow: auto; | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
top: 64px; | ||
margin-top: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,36 @@ | ||
<button (click)="makecall()">Authorize</button> | ||
<mat-toolbar color="primary"> | ||
<span>TwitterHashtagsCounter</span> | ||
</mat-toolbar> | ||
|
||
|
||
<div class="row"> | ||
<form class="col s4"> | ||
<div class="row"> | ||
<div class="input-field col s12"> | ||
<input id="hashtags" type="text" [(ngModel)]="searchquery" [ngModelOptions]="{standalone: true}"> | ||
<label for="hashtags">Search by hashtags</label> | ||
</div> | ||
</div> | ||
<button class="waves-effect waves-light btn" (click)="searchcall()">Search</button> | ||
<div *ngFor="let item of tweetsdata" class="col s12 m7"> | ||
<div class="card"> | ||
<div class="card-image"> | ||
<img style={width:10px,height:10px;} src={{item.user.profile_image_url}} /> | ||
<div id="content"> | ||
<button (click)="makecall()">Authorize</button> | ||
|
||
<div class="row"> | ||
<form class="col s4"> | ||
<div class="row"> | ||
<div class="input-field col s12"> | ||
<input id="hashtags" type="text" [(ngModel)]="searchquery" [ngModelOptions]="{standalone: true}"> | ||
<label for="hashtags">Search by hashtags</label> | ||
</div> | ||
<div class="right-content"> | ||
<span class="card-title">{{item.user.name}}</span> | ||
<div class="card-content"> | ||
<p>{{item.text}}</p> | ||
</div> | ||
<button class="waves-effect waves-light btn" (click)="searchcall()">Search</button> | ||
<div *ngFor="let item of tweetsdata" class="col s12 m7"> | ||
<div class="card"> | ||
<div class="card-image"> | ||
<img style={width:10px,height:10px;} src={{item.user.profile_image_url}} /> | ||
</div> | ||
<div class="card-action"> | ||
<a href="#">This is a link</a> | ||
<div class="right-content"> | ||
<span class="card-title">{{item.user.name}}</span> | ||
<div class="card-content"> | ||
<p>{{item.text}}</p> | ||
</div> | ||
<div class="card-action"> | ||
<a href="#">This is a link</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</form> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
<!doctype html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>TwitterHashtagsCounter</title> | ||
<base href="/"> | ||
<meta charset="utf-8"> | ||
<title>TwitterHashtagsCounter</title> | ||
<base href="/"> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico"> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<app-root></app-root> | ||
<app-root></app-root> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/* You can add global styles to this file, and also import other style files */ | ||
@import "~@angular/material/prebuilt-themes/indigo-pink.css"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters