This is a blazingly fast static site built upon stable modern technologies like React and Firebase with a goal to simplify the trade show management process.
Specifically, it helps marketers/sales people consolidate their efforts and collaborate in real time with speed.
Rather than track everything by paper, you can use this web app to keep track of all booths you are managing and color code them according to who is managing the booth.
- Features
- Prerequisites:
- Setup
- Available Scripts - Development Mode - Production Mode
- Changing Booth Layouts in Firebase
- How To Deploy Firebase Functions And App To Firebase Hosting
- Firebase Authentication:
- Firebase Database Rules:
- Firebase Storage Rules:
- Firebase Functions:
- Setting Up The Emailing Feature
- How On-demand Backups Work
- License
- ๐
Gatsby
Static Site Generator for Blazingly Fast Performance & SEO. - ๐ฉ
Socket.io
for live updating between users. - ๐
react
as the view. - ๐
react-router
as the router. - ๐ช
redux
as the central store for state management. - ๐
Styled Components
as the styling library. - ๐ฅ
Firebase DB
as the database. - ๐ฅ
Firebase Auth
for secure user authentication. - ๐
Firebase Functions
to provide serverless architecture. - ๐
Firebase Storage
for on-demand backups. - ๐ Fast development hot reloading with
react-hot-loader
. - ๐ฎ Security with
Snyk
andreact-helmet
. - ๐ฆ All source is bundled using
Webpack
andGatsby
. - ๐ผ
ESlint
Airbnb configuration for code quality. - ๐
Prettier
for beautiful auto code formatting. - ๐ญ
Jest
as the testing framework to ensure reliability. - โค๏ธ Continuous integration with
Travis-CI
. - ๐ฏ ES6 Javascript for terse readable code.
- Scripts are available in the
package.json
file at the root level under the "scripts" property
npm run dev
npm run build
npm run deploy
- Booth locations are computed based on row, column and size which defaults to 1x1
- Accepts an image url as the
image
key which will center & resize the custom image over the booth - Accepts a custom
size
key which can be specified as3x2
or whatever - Firebase is NoSQL so if a key is not required, you don't have to specify it
Option | Usage | Type |
---|---|---|
_id |
Required | String |
col |
Required | Number |
row |
Required | Number |
company |
Optional | String |
description |
Optional | String |
image |
Optional | Url |
num |
Optional | Number |
owner |
Optional | String |
size |
Optional | String |
status |
Optional | String |
Example:
"yourroute": {
"630": {
"_id":"5910ae25529a13a5bf988a5e",
"num":630,
"row":1,
"col":13,
"owner":"Ryan",
"status":"holding",
"company":"Cool Company",
"description":"The most ultra cool co in existence!"
},
"531": {
"_id":"5910b02a529a13a5bf988af7",
"num":531,
"row":-1,
"col":12,
"owner":"None",
"status":"good",
"company":"Another cool co",
"size":"2x1",
"image":"urlToImage.com"
},
"randomthing": {
"_id":"5910b02a529a13a5bf988af7",
"row":10,
"col":14,
"size":"5x10",
"image":"urlToImage.com"
}
}
- The second key under "yourroute" must be unique
- One of the main reasons for it is convenience when trying to find a booth in the firebase console
- To Set up Firebase head to: https://console.firebase.google.com
- Proceed through the instructions to set up a new project.
- Once you have completed those steps successfully, you can set up each of these sections below:
- Make sure
.firebaserc
in the root of this project has your project id. - With
firebase-tools
installed you can run firebase from the command line
firebase login
- To get all your credentials
firebase setup:web
- Create a new file called
config.js
in the root of this repo with the file below- Add the credentials the
firebase setup:web
command prints out under the keyFIREBASE_CONFIG
- This file is in
.gitignore
so will not be committed because it contains secrets - Make sure the first letter of the owner names are captalized in both firebase db and the
config.js
USER_MAP
- Add the credentials the
const AUTHENTICATED_USER_EMAILS = [
'email1@gmail.com',
'email2@yahoo.com',
...
]
const BOOTH_LAYOUT = {
borderWidth: 2,
columns: 18,
dimension: 60,
rows: 26,
}
// Click around your console.firebase.google to gather these values
const FIREBASE_CONFIG = {
apiKey: 'your api key',
authDomain: 'tradeshow-floorplan.firebaseapp.com',
databaseURL: 'https://tradeshow-floorplan.firebaseio.com/ ',
projectId: 'tradeshow-floorplan',
storageBucket: 'gs://tradeshow-floorplan.appspot.com',
}
/**
* Allows you to create programmatic routes
* You can pass a custom BOOTH_LAYOUT object for each page if you would like
* https://www.gatsbyjs.org/docs/bound-action-creators/#createPage
*/
const FLOORPLAN_PAGES = [
{
name: 'Los Angeles',
path: '/la',
context: BOOTH_LAYOUT,
},
{
name: 'Long Beach',
path: '/lb',
context: Object.assign({}, BOOTH_LAYOUT, { columns: 15, rows: 27 }),
},
]
const USER_MAP = {
Jin: {
color: '#ff00aa',
email: 'email1@gmail.com',
},
Richard: {
color: '#0800FF',
email: 'email2@yahoo.com',
},
Todd: {
color: '#00B20E',
email: 'email3@gmail.com',
},
}
module.exports = {
AUTHENTICATED_USER_EMAILS,
FIREBASE_CONFIG,
FLOORPLAN_PAGES,
USER_MAP,
}
{
"rules": {
".read": true,
".write": "auth.token.email == 'email1@gmail.com' || auth.token.email == 'email2@yahoo.com'"
}
}
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read: if false;
allow write: if request.auth.token.email == 'email1@gmail.com' || request.auth.token.email == 'email2@yahoo.com';
}
}
}
- The only part of this app that would require a server is sending emails
- However, thanks to Firebase Functions, we can still have a serverless web app that is blazingly fast
- To run a local firebase shell:
npm run shell
- You can then call the email function directly from there if you would like to test it out
emailTeam()
- To only deploy functions rather than hosting run:
npm run deploy:functions
- In the
functions
directory create a new file calledemailConfig.js
that has the content below- This file is in
.gitignore
- This file is in
// functions/emailConfig.js
const GMAIL_SETTINGS = {
email: 'theEmailThatWillSendEmails@gmail.com',
pass: 'password',
}
const RECIPIENT_EMAILS = [
'email1@gmail.com',
'email2@yahoo.com',
...
]
module.exports = {
GMAIL_SETTINGS,
RECIPIENT_EMAILS,
}
- If you need further help setting up your gmail to send emails, we use Nodemailer so check out their docs
- This project just uses a Gmail account to send emails
- On-demand backups store the firebase db in json format in firebase storage for easy retrieval
- The backups are launched when user visits site
- On-demand client side db backup max 1 backup per day
The MIT License (MIT)
Copyright (c) 2017 Ryan Garant
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.