Skip to content

Commit

Permalink
wip refactor: yew -> vite migration (#527)
Browse files Browse the repository at this point in the history
* remove web code

* adding vite project for porting

* setup tailwindcss in client code

* wip: lens search now showing results

* styling selected lenses correctly

* adding KeyComponent and search status/metadata bar

* search results display now working

* prettier

* handle icons in search results correctlye

* fix descriptions not being treated as html

* getting the action list show up

* getting resize + escape working again

* bar hides after result is opened & handle focus events

* add empty dist folder so that automated builds work

* removing crates/client from build

* add lint/build step for frontend testing

* cleaning up unused icons/comments

* handle action menu tabbing & selection

* handle action execution

* linting + prettier

* fixing frontend build check

* fixing type errors
  • Loading branch information
a5huynh authored Nov 5, 2024
1 parent e6d3da7 commit c9aa421
Show file tree
Hide file tree
Showing 93 changed files with 5,748 additions and 9,955 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/frontend-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Frontend build check

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
frontend-check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/desktop-client
steps:
# Checkout source code
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 23
cache: 'npm'
cache-dependency-path: './apps/desktop-client/package-lock.json'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
data
dist
_notebooks
*.wasm
Makefile.dev
.env
.vscode

# Added by cargo
target
Expand Down
Loading

0 comments on commit c9aa421

Please sign in to comment.