summaryrefslogtreecommitdiff
path: root/src/match_up/__init__.py
blob: 95f767e6af54db8e6c2d26fa3cb8cd03c1257b55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from dash import Dash
from pathlib import PurePath
from importlib.resources import files
from match_up.model import PlaySession
from match_up.view import MainLayout
from match_up.tests import (
    TEST_DATABASE_LOCATION,
)
from dash_bootstrap_components.themes import ZEPHYR
from flask import Flask, render_template

DATABASE_LOCATION = "storage.json"


# class Application:
#     def __init__(self, debug=False):
#         self._debug = debug
#         if debug:
#             database_location = TEST_DATABASE_LOCATION
#         else:
#             database_location = DATABASE_LOCATION
#         self._session = PlaySession(PurePath(database_location))
#         self._dashboard = Dash("Match Up!", external_stylesheets=[ZEPHYR])
#         self._layout = MainLayout(
#             self._session.data.get_players(), self._session.get_matches()
#         )
#         self._dashboard.layout = self._layout.get()

#     def run(self):
#         self._dashboard.run(debug=self._debug)


# def main():
#     a = Application(debug=True)
#     a.run()


app = Flask("Match Up", template_folder="templates")
session = PlaySession(PurePath("test_storage.json"))
base_template_path = "match_up.templates"


@app.route("/")
def home():
    print(files(base_template_path).joinpath("index.html").name)
    # return render_template(
    #     files(base_template_path).joinpath("index.html").name,
    #     title="My Generated Page",
    #     people=session.data.get_players(),
    # )
    return render_template(
        "index.html",
        title="My Generated Page",
        people=session.data.get_players(),
    )


if __name__ == "__main__":
    print("Starting app")
    app.run(host="localhost", debug=True, port=80)