Übersicht.svelte 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <section class="section no-print">
  2. <div class="container no-print">
  3. <h1 class="title">Mein BK</h1>
  4. <div>
  5. <span class="tag is-success" on:click={()=>hole_lokale_schueler()} style="cursor: pointer;">
  6. {schueler_lokal.length} Schüler in der Datenbank
  7. </span>
  8. </div>
  9. <br>
  10. <div class="field">
  11. <div class="control">
  12. <input class="input" type="text" placeholder="Filter" bind:value={suche}>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="container no-print">
  17. <div class="tabs">
  18. <ul>
  19. <li class:is-active={active === Vouchers} on:click={() => active=Vouchers}>WLAN</li>
  20. <li class:is-active={active === ProjektwocheSchueler} on:click={() => active=ProjektwocheSchueler}>PW Schüler</li>
  21. <li class:is-active={active === ProjektwocheLehrer} on:click={() => active=ProjektwocheLehrer}>PW Projekte</li>
  22. <li class:is-active={active === ProjektwocheDrucksache} on:click={() => active=ProjektwocheDrucksache}>PW Drucksache</li>
  23. <li class:is-active={active === ProjektwocheTnListen} on:click={() => active=ProjektwocheTnListen}>PW Teilnehmerliste</li>
  24. <li class:is-active={active === SVWahl} on:click={() => active=SVWahl}>SV-Wahl</li>
  25. <li class:is-active={active === Einstellungen} on:click={() => active=Einstellungen}>Einstellungen</li>
  26. <li class:is-active={active === Infos} on:click={() => active=Infos}>Infos</li>
  27. </ul>
  28. </div>
  29. <svelte:component this={active} schueler={schueler_filter} {privat} {einstellungen} {knexConfig}/>
  30. </div>
  31. </section>
  32. <!-- <div class="container">
  33. </div> -->
  34. <style>
  35. @import 'node_modules/bulma/css/bulma.css';
  36. .tabs li.is-active {
  37. border-bottom-color: #3273dc;
  38. color: #3273dc;
  39. }
  40. .tabs li:hover {
  41. border-bottom-color: #3273dc;
  42. }
  43. .tabs li {
  44. align-items: center;
  45. border-bottom-color: #dbdbdb;
  46. border-bottom-style: solid;
  47. border-bottom-width: 1px;
  48. color: #4a4a4a;
  49. display: flex;
  50. justify-content: center;
  51. margin-bottom: -1px;
  52. padding: 0.5em 1em;
  53. vertical-align: top;
  54. cursor: pointer;
  55. text-decoration: none;
  56. }
  57. </style>
  58. <script>
  59. import Vouchers from './components/vouchers.svelte'
  60. import ProjektwocheSchueler from './components/projektwoche-schueler.svelte'
  61. import ProjektwocheLehrer from './components/projektwoche-lehrer.svelte'
  62. import ProjektwocheDrucksache from './components/projektwoche-drucksache.svelte'
  63. import ProjektwocheTnListen from './components/projektwoche-tn-listen.svelte'
  64. import SVWahl from './components/svwahl.svelte'
  65. import Einstellungen from './components/einstellungen.svelte'
  66. import Infos from './components/infos.svelte'
  67. export let schueler, knexConfig, privat
  68. let active = ProjektwocheDrucksache
  69. let suche = ''
  70. const { Pool } = R('pg')
  71. const mysql = R('mysql')
  72. let schueler_entfernt = [], schueler_lokal = []
  73. let einstellungen
  74. const postgres = new Pool({ connectionString: privat.mein_bk_db})
  75. postgres.query(`SELECT * FROM einstellungen`)
  76. .then(res => {
  77. einstellungen = res.rows[0]
  78. einstellungen || postgres.query(`INSERT INTO einstellungen DEFAULT VALUES RETURNING *`)
  79. .then(res => einstellungen = res.rows[0])
  80. })
  81. postgres.query(`SELECT schueler.*,
  82. wlan.voucher,
  83. wahlen.*
  84. FROM schueler
  85. LEFT JOIN wlan ON schueler.id = wlan.schueler_id
  86. LEFT JOIN wahlen ON schueler.id = wahlen.schueler_id`)
  87. .then(resp => {
  88. schueler_entfernt = resp.rows
  89. })
  90. const mysql_connection = mysql.createConnection(knexConfig.connection)
  91. mysql_connection.connect()
  92. function hole_lokale_schueler () {
  93. mysql_connection.query(`SELECT ID AS id, Name, Vorname, Klasse, Volljaehrig,
  94. CONCAT (LOWER (Vorname), ' ', LOWER (Name)) AS vollname
  95. FROM schueler
  96. WHERE Status = 2 AND Geloescht = "-" AND Gesperrt = "-"
  97. ORDER BY Klasse, Name ASC`,
  98. (e, res) => {
  99. schueler_lokal = res
  100. })
  101. }
  102. const groupBy = (arr, id) => arr.reduce(
  103. (entryMap, f) => {
  104. const fx = id.split('.').reduce((p,c)=>p&&p[c]||null, f)
  105. return entryMap.set(fx, [...entryMap.get(fx)||[], f])
  106. },
  107. new Map()
  108. )
  109. hole_lokale_schueler()
  110. $: merged = schueler_lokal.map(itm => ({
  111. ...schueler_entfernt.find((item) => (item.id === itm.id) && item),
  112. ...itm}))
  113. $: schueler_filter = Object.fromEntries(groupBy(merged.filter(s => s.vollname.includes(suche.toLowerCase())), 'Klasse'))
  114. </script>