This project is mirrored from https://gitee.com/cowcomic/pixie.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 14 Jul, 2020 6 commits
  2. 13 Jul, 2020 1 commit
  3. 14 Jul, 2020 16 commits
  4. 09 Jul, 2020 1 commit
  5. 13 Jul, 2020 8 commits
    • Michelle Nguyen's avatar
      PC-453 Fix data table column alignment · 2dffb3ad
      Michelle Nguyen authored
      Summary:
      the column alignments in our data tables looked off because of two things:
      - when the rows have a scrollbar, the width of the rows shrinks while the header width stays the same because of no scrollbar. turns out react-virtualized automatically adds padding to the header when there is a scrollbar, but we were overriding it with !important
      - the resizing icon is included in the width of each cell, so right-aligned or overflowing items will be right underneath the resizing icon, which looks weird. we should add padding to the cells so that nothing goes underneath the resizing icon. there was also a bug with overflowing text, so this fixes that as well.
      
      Test Plan:
      screenshot:
      {F87250}
      
      Reviewers: zasgar, nserrino, #engineering
      
      Reviewed By: nserrino, #engineering
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5560
      
      GitOrigin-RevId: de318eb147b916b63e2d32154a67c8cda54ae0d6
      2dffb3ad
    • Michelle Nguyen's avatar
      PC-439 move script errors from datadrawer to canvas · b6f365fa
      Michelle Nguyen authored
      Summary:
      we want move script execution/compilation errors out of the data drawer.
      for now, we are just using the default MUI styling. we can tweak it as necessary.
      the mock shows a button in the alert where we can close the alert, but given that there is no other way to see the error for now, i have left that out.
      
      Test Plan:
      screenshot:
      {F87109}
      
      Reviewers: zasgar, nserrino, #engineering
      
      Reviewed By: nserrino, #engineering
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5541
      
      GitOrigin-RevId: a162c531851dbc9f4ec7276d7c532f52c836f7b8
      b6f365fa
    • Omid Azizi's avatar
      Upgrade BCC · 8ed72ec7
      Omid Azizi authored
      Summary: This is required for Linux kernel 5.4+ support
      
      Test Plan: Jenkins (for 4.14) + manual (for 5.4)
      
      Reviewers: yzhao, #engineering
      
      Reviewed By: yzhao, #engineering
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5558
      
      GitOrigin-RevId: 254287d76e3e88a5919edbee39e6942e316de126
      8ed72ec7
    • Michelle Nguyen's avatar
      PC-452, PC-448 fix colors of data tables/titles · 8818f94e
      Michelle Nguyen authored
      Summary:
      fix the colors of data tables/widget borders to match what they originally were.
      also update titles to be white, to match the color on figma. the sizing on figma indicates 20px, which is what typography.subtitle1 in figma should be, so the font size remains the same
      
      Test Plan:
      screenshots:
      {F87217}
      
      {F87218}
      
      Reviewers: zasgar, nserrino, #engineering
      
      Reviewed By: zasgar, #engineering
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5557
      
      GitOrigin-RevId: a1b60780ab27625afd41880b98c26f07b336ae4f
      8818f94e
    • Michelle Nguyen's avatar
      PC-449 sidebar icon/profile updates · c3e67ea3
      Michelle Nguyen authored
      Summary:
      - updated clusters icon size so that both namespaces and clusters are 24x24
      - put profile icon in a ListItem, with name + email, so that styling matches other nav items in the sidebar. the listItem also adds padding. this is viewable with localStorage.setItem('px-profile-sidebar, true)
      - move profile icon back in top bar. this is viewable with localStorage.setItem('px-profile-sidebar', false)
      
      Test Plan:
      screenshots
      {F87207}
      
      {F87208}
      
      {F87209}
      
      Reviewers: zasgar, nserrino, #engineering
      
      Reviewed By: zasgar, #engineering
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5556
      
      GitOrigin-RevId: 49d420a8ba31781957ec3fa113544e938787c230
      c3e67ea3
    • Phillip Kuznetsov's avatar
      [PC-450] prefetch monaco instead of loading it with the rest of the chunks · a51da8a4
      Phillip Kuznetsov authored
      Summary: Monaco was slow to load and we don't need it immediately, so we prefetch for now.
      
      Test Plan: Tested locally with throttling and the page loads w/o loading monaco. Need some feedback on whether I'm actually not loading monaco as part of the chunk though.
      
      Reviewers: michelle, jamesbartlett, zasgar, nserrino, #engineering
      
      Reviewed By: michelle, #engineering
      
      JIRA Issues: PC-450
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5554
      
      GitOrigin-RevId: be252de9b8a5726c6cd23ba5426408910e020d36
      a51da8a4
    • Zain Asgar's avatar
      PC-444 - Implementation of new login flow · e39bf949
      Zain Asgar authored
      Summary: This is the implementation of the new login flow as designed in figma. It also deprecates all of the old login code and significantly simplifies the login.
      
      Test Plan: Tested on login with CLI/UI, etc. Still needs more testing around signup.
      
      Reviewers: michelle, philkuz, nserrino, #engineering
      
      Reviewed By: michelle, #engineering
      
      JIRA Issues: PC-444
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5552
      
      GitOrigin-RevId: 104444d0a4b32c4c711c0e91f9eb8ed36ecf8f65
      e39bf949
    • Zain Asgar's avatar
      PC-451 - Adjust top nav bar styling, make the gradient configurable in theme · 8b13f379
      Zain Asgar authored
      Summary: Adjusted the styling a bit based on feedback. The gradient is not configurable so we can easily tweak it if necessary.
      
      Test Plan: Checked on webpack.
      
      Reviewers: michelle, #engineering
      
      Reviewed By: michelle, #engineering
      
      JIRA Issues: PC-451
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5553
      
      GitOrigin-RevId: 222face047ed33c8489f38873391b0d520c059ab
      8b13f379
  6. 10 Jul, 2020 1 commit
    • Michelle Nguyen's avatar
      Move args editor to use breadcrumbs component · 49009d32
      Michelle Nguyen authored
      Summary:
      we want to use breadcrumbs to edit our script args.
      for now, we don't separate the entity/non-entity args, but this is something we can easily do later. we can also consider adding validations on different args.
      
      Test Plan:
      screenshot:
      {F87003}
      
      Reviewers: zasgar, nserrino, #engineering
      
      Reviewed By: nserrino, #engineering
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5540
      
      GitOrigin-RevId: 16a586469420cf5005d7a5fb52c69e5f18c1510e
      49009d32
  7. 13 Jul, 2020 4 commits
  8. 02 Jul, 2020 1 commit
  9. 13 Jul, 2020 1 commit
    • Zain Asgar's avatar
      PC-444 - Add new visual auth components · f8400872
      Zain Asgar authored
      Summary: This are the core components used on the new auth flow pages along with the related stories.
      
      Test Plan: We should add in tests after we fix the Jest testing framework.
      
      Reviewers: michelle, nserrino, #engineering
      
      Reviewed By: michelle, #engineering
      
      JIRA Issues: PC-444
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5548
      
      GitOrigin-RevId: 955711a66732cfdcebff394a2aba2681bf8c218e
      f8400872
  10. 12 Jul, 2020 1 commit
    • Zain Asgar's avatar
      Remove email from auth signup flow · b8fde323
      Zain Asgar authored
      Summary: We don't need to get the email from the API since we can just request it using the Auth0 token. In the current flow we actually request it using the Auth0 API and compare it to the provided value. This seems unnecessary and just overcomplicates the API.
      
      Test Plan: Existing tests updated.
      
      Reviewers: michelle, nserrino, #engineering
      
      Reviewed By: michelle, #engineering
      
      Differential Revision: https://phab.corp.pixielabs.ai/D5547
      
      GitOrigin-RevId: 62d23447111135c6a4caf2b72c66286eb1714ec0
      b8fde323