-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #217 from qccoders/develop
Initial Scanner implementation
- Loading branch information
Showing
19 changed files
with
390 additions
and
188 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
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,7 +1,18 @@ | ||
# QCVOC | ||
# Quad Cities Veteran Outreach Center | ||
|
||
[![Build Status](https://travis-ci.org/qccoders/QCVOC.svg?branch=master)](https://travis-ci.org/qccoders/QCVOC/branches) | ||
![license](https://img.shields.io/github/license/qccoders/QCVOC.svg) | ||
|
||
Quad Cities Veteran Outreach Center | ||
An event management application for the Quad Cities Veteran's Outreach Center. | ||
|
||
Written in .NET Core, React, and Java, and hosted on AWS with RDS (PostgreSQL), Lambda, API Gateway, and S3. | ||
|
||
## About Us | ||
|
||
This project is developed and maintained by [QC Coders](http://www.qccoders.org/), a group of software enthusiasts from the [Quad Cities](https://en.wikipedia.org/wiki/Quad_Cities), a region on the border of Iowa and Illinois. | ||
|
||
We get together for networking, presentations, and group projects several times a month; have a look at [our website]((http://www.qccoders.org/)) for a calendar of events, or find us on [Meetup](https://www.meetup.com/QCCoders/) or [Facebook](https://www.facebook.com/qccoders). We can also be found on Slack, which you can join via the invite link near the bottom of our site. | ||
|
||
## Contributing | ||
|
||
If you'd like to help with this project, join us on Slack and have a look at [CONTRIBUTING.md](https://github.com/qccoders/QCVOC/blob/develop/CONTRIBUTING.md) for some important notes about the nature of your contribution and an overview of our workflow and environment. |
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
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
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
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
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
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
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,22 @@ | ||
/* | ||
Copyright (c) QC Coders. All rights reserved. Licensed under the GPLv3 license. See LICENSE file | ||
in the project root for full license information. | ||
*/ | ||
|
||
export const isMobileAttached = () => { | ||
return isAndroidAttached(); | ||
} | ||
|
||
export const isAndroidAttached = () => { | ||
return window["Android"] !== undefined; | ||
} | ||
|
||
export const initiateMobileScan = () => { | ||
if (isAndroidAttached()) { | ||
initiateAndroidScan(); | ||
} | ||
} | ||
|
||
export const initiateAndroidScan = () => { | ||
window["Android"]["scanBarcode"](); | ||
} |
Oops, something went wrong.