1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 15:04:25 +02:00

Massive JavaScript cleanup

- Use JSX for templates
- Docblock/comment everything
- Mostly passes ESLint (still some work to do)
- Lots of renaming, refactoring, etc.

CSS hasn't been updated yet.
This commit is contained in:
Toby Zerner
2015-07-15 14:00:11 +09:30
parent 4480e0a83f
commit ab6c03c0cc
220 changed files with 9785 additions and 5919 deletions

View File

@@ -0,0 +1,32 @@
/**
* The `SearchSource` interface defines a section of search results in the
* search dropdown.
*
* Search sources should be registered with the `Search` component instance
* (app.search) by extending the `sourceItems` method. When the user types a
* query, each search source will be prompted to load search results via the
* `search` method. When the dropdown is redrawn, it will be constructed by
* putting together the output from the `view` method of each source.
*
* @interface
*/
export default class SearchSource {
/**
* Make a request to get results for the given query.
*
* @param {String} query
* @return {Promise}
*/
search() {
}
/**
* Get an array of virtual <li>s that list the search results for the given
* query.
*
* @param {String} query
* @return {Object}
*/
view() {
}
}