blob: fd6bf9c95d9944d86a7238fdbe878826b3427281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
from flask import Blueprint, g, jsonify
from ..stitch_plan import patches_to_stitch_plan
stitch_plan = Blueprint('stitch_plan', __name__)
@stitch_plan.route('')
def get_stitch_plan():
if not g.extension.get_elements():
return dict(colors=[], stitch_blocks=[], commands=[])
patches = g.extension.elements_to_patches(g.extension.elements)
stitch_plan = patches_to_stitch_plan(patches)
return jsonify(stitch_plan)
|