Skip to content

Commit

Permalink
substantial changes. working on integrating angular.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Rogers committed Dec 11, 2017
1 parent e510d5d commit b1b25cc
Show file tree
Hide file tree
Showing 82 changed files with 4,727 additions and 23,258 deletions.
237 changes: 237 additions & 0 deletions Exchange.Web/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,237 @@
/Properties/launchSettings.json

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
bin/
Bin/
obj/
Obj/

# Visual Studio 2015 cache/options directory
.vs/
/wwwroot/dist/
/ClientApp/dist/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# NUNIT
*.VisualState.xml
TestResult.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# JustCode is a .NET coding add-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj

# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config

# Microsoft Azure Build Output
csx/
*.build.csdef

# Microsoft Azure Emulator
ecf/
rcf/

# Microsoft Azure ApplicationInsights config file
ApplicationInsights.config

# Windows Store app package directory
AppPackages/
BundleArtifacts/

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
orleans.codegen.cs

/node_modules

/yarn.lock

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
*.mdf
*.ldf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe

# FAKE - F# Make
.fake/
21 changes: 21 additions & 0 deletions Exchange.Web/ClientApp/app/app.browser.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppModuleShared } from './app.shared.module';
import { AppComponent } from './components/app/app.component';

@NgModule({
bootstrap: [ AppComponent ],
imports: [
BrowserModule,
AppModuleShared
],
providers: [
{ provide: 'BASE_URL', useFactory: getBaseUrl }
]
})
export class AppModule {
}

export function getBaseUrl() {
return document.getElementsByTagName('base')[0].href;
}
14 changes: 14 additions & 0 deletions Exchange.Web/ClientApp/app/app.server.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { AppModuleShared } from './app.shared.module';
import { AppComponent } from './components/app/app.component';

@NgModule({
bootstrap: [ AppComponent ],
imports: [
ServerModule,
AppModuleShared
]
})
export class AppModule {
}
32 changes: 32 additions & 0 deletions Exchange.Web/ClientApp/app/app.shared.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { RouterModule } from '@angular/router';

import { AppComponent } from './components/app/app.component';
import { HomeComponent } from './components/home/home.component';
import { NavMenuComponent } from './components/navmenu/navmenu.component';
import { ArbitrageComponent } from './components/arbitrage/arbitrage.component';

@NgModule({
declarations: [
AppComponent,
HomeComponent,
NavMenuComponent,
ArbitrageComponent
],
imports: [
CommonModule,
HttpModule,
FormsModule,
RouterModule.forRoot([
{ path: '', redirectTo: 'arbitrage', pathMatch: 'full' },
{ path: 'home', component: HomeComponent },
{ path: 'arbitrage', component: ArbitrageComponent },
{ path: '**', redirectTo: 'arbitrage' }
])
]
})
export class AppModuleShared {
}
6 changes: 6 additions & 0 deletions Exchange.Web/ClientApp/app/components/app/app.component.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@media (max-width: 767px) {
/* On small screens, the nav menu spans the full width of the screen. Leave a space for it. */
.body-content {
padding-top: 50px;
}
}
10 changes: 10 additions & 0 deletions Exchange.Web/ClientApp/app/components/app/app.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<nav-menu></nav-menu>
<div class='container-fluid'>
<div class='row'>
<div class='col-sm-3'>
</div>
<div class='col-sm-9 body-content'>
<router-outlet></router-outlet>
</div>
</div>
</div>
9 changes: 9 additions & 0 deletions Exchange.Web/ClientApp/app/components/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { Component } from '@angular/core';

@Component({
selector: 'app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<h2>Potential Coins to Arbitrage</h2>

<p *ngIf="!arbitrages"><em>Loading...</em></p>

<table class='table table-striped table-dark' *ngIf="arbitrages">
<thead>
<tr>
<th>Market</th>
<th>Symbol</th>
<th>Higher Priced Exchange</th>
<th>HPE Price</th>
<th>Lower Priced Exchange</th>
<th>LPE Price</th>
<th>Percentage</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let arb of arbitrages">
<td>{{ arb.market }}</td>
<td>{{ arb.symbol }}</td>
<td>{{ arb.exchange1 }}</td>
<td>{{ arb.exchange1Price }}</td>
<td>{{ arb.exchange2 }}</td>
<td>{{ arb.exchange2Price }}</td>
<td>{{ arb.percentage }}</td>
</tr>
</tbody>
</table>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { Component, Inject } from '@angular/core';
import { Http } from '@angular/http';

@Component({
selector: 'arbitrage',
templateUrl: './arbitrage.component.html'
})
export class ArbitrageComponent {
public arbitrages: ArbitrageResult[];

constructor(http: Http, @Inject('BASE_URL') baseUrl: string) {
http.get(baseUrl + 'api/Arbitrage/Get').subscribe(result => {
this.arbitrages = result.json() as ArbitrageResult[];
}, error => console.error(error));
}
}

interface ArbitrageResult {
market: string;
symbol: string;
exchange1: string;
exchange1Price: number;
exchange2: string;
exchange2Price: number;
percentage: number;
exchange1Link: string;
exchange2Link: string;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>Hello, world!</h1>
Loading

0 comments on commit b1b25cc

Please sign in to comment.