GithubHelp home page GithubHelp logo

teovoinea / podium Goto Github PK

View Code? Open in Web Editor NEW
29.0 5.0 3.0 27.52 MB

Searches your files faster and smarter

License: MIT License

Rust 75.44% JavaScript 5.32% TypeScript 17.68% CSS 0.26% SCSS 1.30%
filesystem indexing search podium rust

podium's People

Contributors

aldenhou avatar dependabot-preview[bot] avatar dependabot[bot] avatar devzbysiu avatar matteoauger avatar pgunasekara avatar teovoinea avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

podium's Issues

Update UI

Task

Update the UI to match the Figma designs.

Requirements

  • match the colour scheme, layout, and font styles of the redesigned UI

Read files as tokio stream

Right now, we're using WalkDir to recurse through files to process. We can get a better processing pipeline going to moving to streams with async/await.

Add light mode

Broken out from #73 . That one will be focused on matching the figma design. This one will be focused on adding light mode colours.

Add keyboard functionality

Task

Give the user the ability to navigate using the up and down arrow keys

Requirements

  • The first item in the results list defaults to selected
  • The user is always able to type in the text box
  • When the user pushes the down key, the item below the currently selected one is chosen
  • When the user pushes the up key, the item above the currently selected one is chosen

Store file location when indexing files

Today, most indexers don't capture file locations. It's an expectation that users can search based on file name.

In most indexers you will see code like this:

Ok(DocumentSchema {
name: String::new(),
body: strings,
})

We want to capture the file path in DocumentSchema.name. You can find the file path in file_to_process.path.

This can be done like this

 Ok(DocumentSchema { 
     name: file_to_process.path.file_name().unwrap().to_string_lossy().to_string(), 
     body: strings, 
 })

List of indexers to update:

  • csv_indexer #76
  • exif_indexer #77
  • mobile_net_v2_indexer #78
  • pdf_indexer #79
  • spreadsheet_indexer #80

How to build it?

Interesting project but there's no instructions on how to build it . For Windows in particular.Any chance of releasing an .exe?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.