Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(web): replace NetworkClient with queries #1519

Merged
merged 50 commits into from
Aug 16, 2024

Commits on Aug 1, 2024

  1. Configuration menu
    Copy the full SHA
    89a779c View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Configuration menu
    Copy the full SHA
    7d7041e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dd2f88a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1f97471 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ced72d2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6dfd01b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1c49e5d View commit details
    Browse the repository at this point in the history
  7. Fix undefined data case.

    teclator committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    9c03398 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. feature(web): add method to slugify strings

    Needed for building HTML ids without spaces from networks SSID since
    spaces into an `aria-labelledby` attr are used as ids separator.
    dgdavid committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    935cd93 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    12aa549 View commit details
    Browse the repository at this point in the history
  3. Some small fixes

    teclator committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    274e7a8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    35249de View commit details
    Browse the repository at this point in the history
  5. Killing network client

    teclator committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    509a647 View commit details
    Browse the repository at this point in the history
  6. fix(web): improve how select wifi networks

    Keeping only the ssid, if any, from previous data stored in the query
    since it's the unique data needed to allow the needsAuth update
    performed on a failed device event.
    dgdavid committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    7ddf4a1 View commit details
    Browse the repository at this point in the history
  7. fix(web): drop leftover .filter

    It's no longer needed after previous changes improving the filtering and
    mapping.
    dgdavid committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    574ddab View commit details
    Browse the repository at this point in the history
  8. chore(web): start testing WifiNetworksListPage components

    And include few code style changes done by prettier.
    dgdavid committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    320a372 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Configuration menu
    Copy the full SHA
    d681c48 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e506f3 View commit details
    Browse the repository at this point in the history
  3. fix(web): WifiConnectionForm improvements

    * Support for needsAuth flag.
    * Support for adding or updating a connection, depending on the network
      settings.
    * Fixed unit tests.
    dgdavid committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    1b2ec19 View commit details
    Browse the repository at this point in the history
  4. Remove network client

    teclator committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    bc49841 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    afead73 View commit details
    Browse the repository at this point in the history
  6. chore(web): drop orphan network client test

    Related to bc49841
    dgdavid committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    09dbfc8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    60b2728 View commit details
    Browse the repository at this point in the history
  8. chore(web): reactivate network/ConnectionsTable tests

    Migrating the file from jsx to tsx because the ConnectionsTable
    component was already migrated to TypeScript.
    dgdavid committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    a3d0c4d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6b5a0c5 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f4a4445 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    217b934 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    078c7f1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f404bc9 View commit details
    Browse the repository at this point in the history
  4. chore(web) add missing test

    Related to 60b2728
    dgdavid committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    d833469 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    539c23c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4889a91 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b28be07 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2024

  1. Configuration menu
    Copy the full SHA
    56df1f2 View commit details
    Browse the repository at this point in the history
  2. chore(web): add more network types

    Needed until the backend network code gets pending improvements
    dgdavid committed Aug 10, 2024
    Configuration menu
    Copy the full SHA
    7b74a34 View commit details
    Browse the repository at this point in the history
  3. chore(web): use axios for network too

    Related to 15c0d56
    dgdavid committed Aug 10, 2024
    Configuration menu
    Copy the full SHA
    a56665c View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Configuration menu
    Copy the full SHA
    019156b View commit details
    Browse the repository at this point in the history
  2. Some leftover fixes

    teclator committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    2b6fcd5 View commit details
    Browse the repository at this point in the history
  3. chore(web): migrate network components to TypeScript

    Fixing errors found during migration.
    dgdavid committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    32930e0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    96d2b9b View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Small fixes

    teclator committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    fb4ebb9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d090cde View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    29f4a73 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0352995 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fab8a0a View commit details
    Browse the repository at this point in the history
  6. fix(web): typo

    dgdavid committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    f52a5ad View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d588c38 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    02220c0 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    27e17bb View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. Configuration menu
    Copy the full SHA
    80d11dd View commit details
    Browse the repository at this point in the history