Compare commits

..

No commits in common. "3c6d950bbc3dd4a281404e6384b460468c8d6197" and "b0f4e985138b1fab2cfc364f9f3a8cb504653cc5" have entirely different histories.

11 changed files with 22 additions and 151 deletions

View File

@ -28,8 +28,4 @@ class RegistrationForm(FlaskForm):
def validate_email(self, email): def validate_email(self, email):
user = User.query.filter_by(email=email.data).first() user = User.query.filter_by(email=email.data).first()
if user is not None: if user is not None:
raise ValidationError('Please use a different email address.') raise ValidationError('Please use a different email address.')
class DeviceForm(FlaskForm):
deviceId=StringField('New Device ID', validators=[DataRequired()])
submit = SubmitField('Add New Device')

View File

@ -104,7 +104,7 @@ def calendarsFromDb():
calendars = dbCalendar.getCalendars(dbCalendar, current_user.id) calendars = dbCalendar.getCalendars(dbCalendar, current_user.id)
pyCalendars = [] pyCalendars = []
for calendar in calendars: for calendar in calendars:
name = (calendar.name[:16] + '..') if len(calendar.name)> 18 else calendar.name name = calendar.name
calendarId = calendar.calendar_id calendarId = calendar.calendar_id
toggle = calendar.toggle toggle = calendar.toggle
color = calendar.color color = calendar.color

View File

@ -88,7 +88,3 @@ class Calendar(db.Model):
db.session.add(newcal) db.session.add(newcal)
db.session.commit() db.session.commit()
class Device(db.Model):
id = db.Column(db.Integer, primary_key=True)
deviceId = db.Column(db.String(128), index=True)

View File

@ -19,8 +19,8 @@ import requests
import server.googleHandler as google import server.googleHandler as google
from server import login_manager, app, db from server import login_manager, app, db
from server.forms import LoginForm, RegistrationForm, DeviceForm from server.forms import LoginForm, RegistrationForm
from server.models import User, Calendar, Device from server.models import User, Calendar
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1' os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1'
@ -39,29 +39,6 @@ def index():
else: else:
return flask.render_template('login.html') return flask.render_template('login.html')
@app.route("/view")
def view():
if not current_user.is_authenticated:
return flask.render_template('login.html')
else:
return (flask.render_template('view.html'))
@app.route("/devices", methods=['GET', 'POST'])
def devices():
if not current_user.is_authenticated:
return flask.render_template('login.html')
device = Device()
device.deviceId="Anthon-Mouse-Car"
devices = [device]
form = DeviceForm()
if form.validate_on_submit():
print(form.deviceId.data, flush=True)
# TODO add device to database here
return flask.render_template('devices.html', devices=devices, form=form)
@app.route("/calendar") @app.route("/calendar")
@login_required @login_required
def calendar(): def calendar():
@ -83,7 +60,6 @@ def emaillogin():
return redirect(url_for('account')) return redirect(url_for('account'))
return render_template('emaillogin.html', title='Sign In', form=form) return render_template('emaillogin.html', title='Sign In', form=form)
@app.route('/register', methods=['GET', 'POST']) @app.route('/register', methods=['GET', 'POST'])
def register(): def register():
if current_user.is_authenticated: if current_user.is_authenticated:
@ -98,7 +74,7 @@ def register():
db.session.commit() db.session.commit()
flash('Congratulations, you are now a registered user!') flash('Congratulations, you are now a registered user!')
return redirect(url_for('emaillogin')) return redirect(url_for('emaillogin'))
return flask.render_template('register.html', title='Register', form=form) return render_template('register.html', title='Register', form=form)
@app.route("/test") @app.route("/test")
def testAPI(): def testAPI():

Binary file not shown.

View File

@ -106,14 +106,11 @@ body *
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
background-color: #ddd; background-color: #2196F3;
-webkit-transition: .4s; -webkit-transition: .4s;
transition: .4s; transition: .4s;
} }
.slider.on {
background-color: #2196F3;
}
.slider:before { .slider:before {
position: absolute; position: absolute;
content: ""; content: "";
@ -126,15 +123,15 @@ body *
transition: .4s; transition: .4s;
} }
input:checked + .slider.on{ input:checked + .slider {
background-color: #ccc; background-color: #ccc;
} }
input:focus + .slider.on { input:focus + .slider {
box-shadow: 0 0 1px #ccc; box-shadow: 0 0 1px #ccc;
} }
input:checked + .slider.on:before { input:checked + .slider:before {
-webkit-transform: translateX(-13px); -webkit-transform: translateX(-13px);
-ms-transform: translateX(-13px); -ms-transform: translateX(-13px);
transform: translateX(-13px); transform: translateX(-13px);
@ -165,12 +162,6 @@ body *
text-decoration: none; text-decoration: none;
} }
.container .preview {
width: 20rem;
height: 20rem;
margin: 1rem 3rem 4rem 3rem;
}
.container .button.logout { .container .button.logout {
background-color: #ddd; background-color: #ddd;
} }
@ -179,15 +170,6 @@ body *
background-color: #b51409; background-color: #b51409;
} }
.container .button.adddevice {
background-color: #ddd;
color: white;
}
.container .button.addcalendar {
background-color: #ddd;
color: white;
}
.sub.container { .sub.container {
width: 20rem; width: 20rem;
justify-content: left; justify-content: left;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

View File

@ -1,28 +1,29 @@
{% extends "sidebar.html" %} {% extends "sidebar.html" %}
{% block body%} {% block body%}
<div class="container"> <div style="height: 50px">
<div style="width: 15rem; margin: 1rem">Calendar</div> <div style="width: 30%; float: left; margin-left: 10%">Calendar</div>
<div style="width: 10rem; margin: 1rem; padding-right: 5rem">Show on device</div> <div style="width: 30%; float: left">Show on device</div>
<div style="width: 2rem; margin: 1rem">Color</div> <div style="width: 30%; float: left">Color</div>
</div> </div>
<div>
{% for item in calendars %} {% for item in calendars %}
<div class="container"> <div style="height: 30px">
<!--Name--> <!--Name-->
<div style="width: 15rem; margin: 1rem;">{{ item.name }}</div> <div style="width: 30%; float: left; font-size: 10px; text-align: left; margin-left: 10%">{{ item.name }}</div>
<!--Toggle--> <!--Toggle-->
<div style="width: 10rem; margin: 1rem; padding-right: 5rem"> <div style="width: 30%; float: left">
<!-- Rounded switch --> <!-- Rounded switch -->
<label class="switch"> <label class="switch">
<input class="toggle" id={{item.calendarId}} type="checkbox" toggled={{item.toggle}} onclick="toggleReaction(this)"> <input class="toggle" id={{item.calendarId}} type="checkbox" toggled={{item.toggle}} onclick="toggleReaction(this)">
<span class="slider on round"></span> <span class="slider round"></span>
</label> </label>
</div> </div>
<!--Color Selector--> <!--Color Selector-->
<div style="width: 2rem; margin: 1rem;"> <div style="width: 30%; float: left">
<div class="colorPickSelector" id={{item.calendarId}} defaultColor={{item.color}}></div> <div class="colorPickSelector" id={{item.calendarId}} defaultColor={{item.color}}></div>
<!--svg height="20" width="20"> <!--svg height="20" width="20">
<circle cx="10" cy="10" r="10" stroke="black" stroke-width="0" fill={{ item.color }} /> <circle cx="10" cy="10" r="10" stroke="black" stroke-width="0" fill={{ item.color }} />
@ -31,9 +32,8 @@
</div> </div>
{% endfor %} {% endfor %}
<div class="container">
<div class="button addcalendar" style="width: auto; margin: 4rem">Add Calendar</div> </div>
</div>
<script type="text/javascript"> <script type="text/javascript">

View File

@ -1,36 +0,0 @@
{% extends "sidebar.html" %}
{% block body%}
<div class="container">
<div style="width: 15rem; margin: 1rem">Device ID</div>
<div style="width: 10rem; margin: 1rem; padding-right: 5rem">Link Status</div>
<div style="width: 2rem; margin: 1rem">Action</div>
</div>
{% for item in devices %}
<div class="container">
<!--Name-->
<div style="width: 15rem; margin: 1rem;">{{ item.deviceId }}</div>
<!--Toggle-->
<div style="width: 10rem; margin: 1rem; padding-right: 5rem">
Connected
</div>
<!--Color Selector-->
<div style="width: 2rem; margin: 1rem;">
<button type="button">Unlink</button>
</div>
</div>
{% endfor %}
<form action="" method="post">
<div class="container">
{{ form.hidden_tag() }}
{{ form.deviceId.label }}
{{ form.deviceId(size=32) }}
{{ form.submit() }}
</div>
</form>
{% endblock %}

View File

@ -1,43 +0,0 @@
{% extends "sidebar.html" %}
{% block body%}
<div class="container profile">
<p class="name">Sun View</p>
</div>
<div class="container">
<i class="fa fa-arrow-left" style="font-size: 4rem; color: #ddd; margin-bottom: 3rem"></i>
<img class="preview" src="/static/res/sunview.png" alt="Profile Picture"></img>
<i class="fa fa-arrow-right" style="font-size: 4rem; color: #ddd; margin-bottom: 3rem"></i>
</div>
<div class="sub container">
<p class=name>Sun</p>
<div style="flex-grow: 1"></div>
<label class="switch">
<input class="toggle" id=Sun type="checkbox" toggled="True" >
<span class="slider round"></span>
</label>
</div>
<div class="sub container">
<p class=name>Planet</p>
<div style="flex-grow: 1"></div>
<label class="switch">
<input class="toggle" id=Sun type="checkbox" toggled="True" >
<span class="slider round"></span>
</label>
</div>
<div class="sub container">
<p class=name>Dwarf</p>
<div style="flex-grow: 1"></div>
<label class="switch">
<input class="toggle" id=Sun type="checkbox" toggled="True" >
<span class="slider round"></span>
</label>
</div>
<div class="sub container">
<p class=name>Calendar</p>
<div style="flex-grow: 1"></div>
<label class="switch">
<input class="toggle" id=Sun type="checkbox" toggled="True" >
<span class="slider round"></span>
</label>
</div>
{% endblock %}