Skip to content
Snippets Groups Projects
This project is mirrored from https://*****@github.com/iqb-berlin/verona-modules-aspect.git. Pull mirroring updated .
  1. Sep 24, 2024
    • jojohoch's avatar
      Fix chromium bug when calculating dynamic rows for text areas · d4bb9e18
      jojohoch authored
      #691
      
      - Due to the width of the scrollbar, text areas change their inner width
      under Chromium when the scrollbar is displayed. The use of offsetWidth
      instead of contentRect ignores the presence of the scrollbar. The
      calculation is therefore less accurate, but sufficient for estimating
      the number of rows
      d4bb9e18
  2. Jun 27, 2024
  3. Jun 17, 2024
  4. Sep 12, 2023
    • rhenck's avatar
      Fix text-field element background color · e27b230b
      rhenck authored
      The CSS selector for what the element to color changed (most likely with 
      the Angular Material update). Also a lower z-index is needed to not 
      cover the text.
      
      #534
      e27b230b
  5. Jun 30, 2023
    • rhenck's avatar
      Refactor PositionProperties · 7f571ddf
      rhenck authored
      - Remove dynamicPositioning from PositionProperties. This is not 
      knowledge that the element needs to know. In the few places it was used, 
      it was fixed or solved by asking the containing section about which 
      positioning is active.
      
      - Fix and improve cloze child sizing. All can now have dynamic width and 
      height.
      
      - Fix empty lines in ClozeDocument rendering
      
      - Editor SelectionService now knows if a cloze child is selected. This 
      way the PropertiesPanel can show valid dimension inputs regardless of 
      the underlying section.
      7f571ddf
  6. Jun 15, 2023
  7. Jun 05, 2023
  8. May 22, 2023
  9. Apr 25, 2023
  10. Apr 21, 2023
    • jojohoch's avatar
      [player] Fix ExpressionChangedAfterItHasBeenCheckedError in TextArea · 9dc8dbbd
      jojohoch authored
      - Replace UpdateTextareaPipe with DynamicRowsDirective
      
      The dynamic height of the textarea is calculated based on the available
      width. However, accessing the width of the textarea often results in an
      error.
      For this reason, the calculation is now done using resize and change
      events in conjunction with a timeout to wait for the textarea to render.
      9dc8dbbd
  11. Nov 21, 2022
  12. Nov 08, 2022
  13. Oct 18, 2022
  14. Sep 21, 2022
  15. Sep 01, 2022
  16. Aug 10, 2022
  17. May 20, 2022
  18. May 17, 2022
    • rhenck's avatar
      Refactor model interfaces to classes · 2e9be6e9
      rhenck authored
      This way elements can handle their logic themselves without having to
      rely on outside utility classes.
      
      Also restructure files in common in a more logical way.
      2e9be6e9
  19. Apr 28, 2022
  20. Apr 19, 2022
  21. Apr 04, 2022
    • rhenck's avatar
      Add rich text for radio group options · 201f69c0
      rhenck authored
      - A new new editor component has been created for this, which has a
      reduced interface and produces span-elements instead of paragraphs.
      - Since the created HTML (span with CSS) is regarded as potentially
      harmful it needs to be sanitized. For element components the sanitizer
      is put in the abstract parent element-component-directive.
      201f69c0
  22. Apr 01, 2022
  23. Mar 31, 2022
  24. Mar 07, 2022
  25. Mar 03, 2022
    • jojohoch's avatar
      [player] Refactor MediaPlayerService · a9348b39
      jojohoch authored
      Replace the direct method calls in media player components with events.
      For this purpose, expand the inputs of the media player components that
      are defined in the ElementMediaPlayerGroupComponent.
      a9348b39
  26. Feb 28, 2022
  27. Feb 17, 2022
    • rhenck's avatar
      Rework models from classes to interfaces · f416ce14
      rhenck authored
      This removes all the classes and goes back to simple interfaces for
      unit, pages etc and all elements. This makes creating them easier and
      cleaner.
      Things like specific needs when setting element properties and most
      importantly compatibility handling is done by a special service module,
      that knows all the elements and how to repair old their potentially
      outdated definitions.
      f416ce14
  28. Feb 09, 2022
    • rhenck's avatar
      Change all selector prefixes from "app" to "aspect" · a6bdf445
      rhenck authored
      This is done according to the Angular best practices and minimizes
      namespace collisions when using other packages which might use the same
      selectors.
      
      Technically the selectors are not even becessary since we use an Angular
      component factory to create element components but it is still useful
      for the DOM element naming, for debugging purposes for example.
      a6bdf445
  29. Jan 22, 2022
  30. Jan 21, 2022
  31. Jan 20, 2022
    • rhenck's avatar
      Make cloze element children not directly clickable · 0493fd04
      rhenck authored
      Only the overlay can be clicked. This way the statre of the elements can 
      not be changed which might be confused for actual value changes. Those 
      can still only be done via properties panel.
      
      Unfortunately we need another variable so the cloze elements knows when 
      it runs in the editor or not.
      0493fd04
  32. Jan 19, 2022
    • rhenck's avatar
      Rework compound child components · 87effdf7
      rhenck authored
      Compound elements are now supposed to use overlays for their child
      elements. This overlay makes selecting child components (by clicking on
      them) and marking them as selected (done by the selection service)
      possible.
      The SelectionService no longer needs special logic to handle compound
      children selection, as they now also have an overlay with the same
      interface as normal (canvas) elements.
      
      A few modifications in connected directives are necessary. The now
      handle children components in a proper array instead of QueryList.
      
      Likert elements do not have clickable children yet and work a little
      differently. This should probably be unitized in the future.
      87effdf7
Loading