Plan stuff. Log stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
456 B

4 years ago
  1. <script>
  2. import auth from "./stores/auth";
  3. import stufflog from "./stores/stufflog";
  4. import modal from "./stores/modal";
  5. export let url = "";
  6. let initialLoadDone = false;
  7. auth.check();
  8. $: {
  9. if ($auth.user !== null && !initialLoadDone) {
  10. initialLoadDone = true;
  11. stufflog.listActivities();
  12. stufflog.listPeriods();
  13. } else if ($auth.user === null && $auth.checked) {
  14. initialLoadDone = false;
  15. modal.open("login");
  16. }
  17. }
  18. </script>