GithubHelp home page GithubHelp logo

pocuston / uugle Goto Github PK

View Code? Open in Web Editor NEW
9.0 2.0 1.0 525 KB

uuGle Chrome extension for fast and user friendly search in Unicorn bookkit and dockit books.

License: MIT License

JavaScript 99.11% HTML 0.73% CSS 0.16%
chrome-extension unicorn-bookkit dockit-books

uugle's Introduction

uuGle

uuGle Chrome extension for fast and user-friendly search in Unicorn uuBookKit books.

demo

Usage

  1. Install uuGle from uuGle Chrome Web Store page
  2. uuGle automatically indexes every Unicorn bookkit book you open. Just open any single page of any book, and a list of all the pages in that book will be indexed and for search.
    • uuGle is not fulltext search - it indexes only page title and book name, not a whole page content.
    • It does not matter which page of book you open (home page is quite enough), all pages of that book are indexed.
  3. Click extension icon or use keyboard shortcut Ctrl+Shift+U on Windows, Ctrl+U on Linux, Command+U on Mac.
    • Type a keyword to start search in indexed content.
    • You don't need to type whole word, search words are automatically expanded. E.g. type "trans" and search results containing word "transaction" will be suggested. This can be used to quickly find uuCommand designs: e.g. type "trans list" to search for transaction/list CMD.
    • Search results are sorted by relevance in descending order
    • When too many results across many books are found, try adding the tile of the product, application or component to the search query.
  4. For each page found, there is a link to that page. By default, the link opens in currently selected tab. You can Ctrl+Click to open it in new browser tab.
    • Color of page link corresponds to book type (i.e. user guide, application model, business model etc.)
    • Breadcrumb navigation is available to better differentiate pages with a similar or identical name. Each link to page ancestor in menu hierarchy can be clicked to open in currently selected tab or in new tab (Ctrl+Click).
    • There is a w icon next to page title to indicate "work in progress" status of that page.
  5. You can use and keys to navigate in search results. To open page link you can use Enter to open it in the currently selected tab, or Ctrl+Enter to open it in new browser tab.
  6. Every indexed book is being re-indexed after some time once you open it again to keep your uuGle page index up-to-date.

How it works

  • Book pages index is permanently stored in the browser's IndexedDB database.
  • For searching uuGle uses Elasticlunr.js.

Constraints

  1. Only english language fulltext search is supported.

Road map

  1. GUI to control book indexing - delete index, reindex single book etc.
  2. Automatic pre-indexing of books from some online catalogue, so you don't need to open every book first individually to index it.

Development guide

Use the following lines for extension development only, you don't need to read it for regular extension usage.

Chrome Extension Boilerplate with React 16.13 and Webpack 4

npm npm-download npm

dependencies Status devDependencies Status

Features

This is a basic Chrome Extensions boilerplate to help you write modular and modern Javascript code, load CSS easily and automatic reload the browser on code changes.

This boilerplate is updated with:

This boilerplate is heavily inspired by and adapted from https://github.com/samuelsimoes/chrome-extension-webpack-boilerplate, with additional support for React 16.13 features and Webpack 4.

Please open up an issue to nudge me to keep the npm packages up-to-date. FYI, it takes time to make different packages with different versions work together nicely.

Installing and Running

Procedures:

  1. Check if your Node.js version is >= 10.13.
  2. Clone this repository.
  3. Change the package's name, description, and repository fields in package.json.
  4. Change the name of your extension on src/manifest.json.
  5. Run npm install to install the dependencies.
  6. Run npm start
  7. Load your extension on Chrome following:
    1. Access chrome://extensions/
    2. Check Developer mode
    3. Click on Load unpacked extension
    4. Select the build folder.
  8. Happy hacking.

Structure

All your extension's code must be placed in the src folder.

The boilerplate is already prepared to have a popup, an options page, a background page, and a new tab page (which replaces the new tab page of your browser). But feel free to customize these.

Webpack auto-reload and HRM

To make your workflow much more efficient this boilerplate uses the webpack server to development (started with npm start) with auto reload feature that reloads the browser automatically every time that you save some file in your editor.

You can run the dev mode on other port if you want. Just specify the env var port like this:

$ PORT=6002 npm run start

Content Scripts

Although this boilerplate uses the webpack dev server, it's also prepared to write all your bundles files on the disk at every code change, so you can point, on your extension manifest, to your bundles that you want to use as content scripts, but you need to exclude these entry points from hot reloading (why?). To do so you need to expose which entry points are content scripts on the webpack.config.js using the chromeExtensionBoilerplate -> notHotReload config. Look the example below.

Let's say that you want use the myContentScript entry point as content script, so on your webpack.config.js you will configure the entry point and exclude it from hot reloading, like this:

{
  
  entry: {
    myContentScript: "./src/js/myContentScript.js"
  },
  chromeExtensionBoilerplate: {
    notHotReload: ["myContentScript"]
  }
  
}

and on your src/manifest.json:

{
  "content_scripts": [
    {
      "matches": ["https://www.google.com/*"],
      "js": ["myContentScript.bundle.js"]
    }
  ]
}

Intelligent Code Completion

Thanks to @hudidit's kind suggestions, this boilerplate supports chrome-specific intelligent code completion using @types/chrome. For example:

intellisense

Packing

After the development of your extension run the command

$ NODE_ENV=production npm run build

Now, the content of build folder will be the extension ready to be submitted to the Chrome Web Store. Just take a look at the official guide to more infos about publishing.

Secrets

If you are developing an extension that talks with some API you probably are using different keys for testing and production. Is a good practice you not commit your secret keys and expose to anyone that have access to the repository.

To this task this boilerplate import the file ./secrets.<THE-NODE_ENV>.js on your modules through the module named as secrets, so you can do things like this:

./secrets.development.js

export default { key: '123' };

./src/popup.js

import secrets from 'secrets';
ApiCall({ key: secrets.key });

👉 The files with name secrets.*.js already are ignored on the repository.

Resources:


Michael Xieyang Liu | Website

uugle's People

Contributors

lxieyang avatar pocuston avatar dependabot[bot] avatar jiridudekusy avatar

Stargazers

 avatar Jiří Černík avatar Daniel Jílek avatar  avatar  avatar Bui An Dyk avatar Petr Filip avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

jiridudekusy

uugle's Issues

Feature request: One site is displayed twice

Books indexed by uuGle can be accessed via two different domains. When searching for some page using common term (expecting many results), some pages are displayed twice.

Example of duplicit urls:

These two results could be merged using awid and page code :)

Plugin breaks RichText icons

Hi this plugin break loading of icons in UU5.RichText. When you have turned on uuGle plugin and you try to open dialog with icons, RichText catch an error and you cannot add icon. RichText tries to load new icon library uuGds icons. Code throw an error, in line, where it tries to check if it is loadBook command.

n.includes("loadBook") && this.addEventListener("load"

You can simulate this bug in any BookKit.

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.