discourse/app/assets/javascripts/admin/models
Tarek Khalil f8480ed911
FEATURE: Exposing a way to add a generic report filter (#6816)
* FEATURE: Exposing a way to add a generic report filter

## Why do we need this change?

Part of the work discussed [here](https://meta.discourse.org/t/gain-understanding-of-file-uploads-usage/104994), and implemented a first spike [here](https://github.com/discourse/discourse/pull/6809), I am trying to expose a single generic filter selector per report.

## How does this work?

We basically expose a simple, single generic filter that is computed and displayed based on backend values passed into the report.

This would be a simple contract between the frontend and the backend.

**Backend changes:** we simply need to return a list of dropdown / select options, and enable the report's newly introduced `custom_filtering` property.

For example, for our [Top Uploads](https://github.com/discourse/discourse/pull/6809/files#diff-3f97cbb8726f3310e0b0c386dbe89e22R1423) report, it can look like this on the backend:

```ruby
report.custom_filtering = true
report.custom_filter_options = [{ id: "any", name: "Any" }, { id: "jpg", name: "JPEG" } ]
```

In our javascript report HTTP call, it will look like:

```js
{
  "custom_filtering": true,
  "custom_filter_options": [
    {
      "id": "any",
      "name": "Any"
    },
    {
      "id": "jpg",
      "name": "JPG"
    }
  ]
}
```

**Frontend changes:** We introduced a generic `filter` param and a `combo-box` which hooks up into the existing framework for fetching a report.

This works alright, with the limitation of being a single custom filter per report. If we wanted to add, for an instance a `filesize filter`, this will not work for us. _I went through with this approach because it is hard to predict and build abstractions for requirements or problems we don't have yet, or might not have._

## How does it look like?

![a1ktg1odde](https://user-images.githubusercontent.com/45508821/50485875-f17edb80-09ee-11e9-92dd-1454ab041fbb.gif)

## More on the bigger picture

The major concern here I have is the solution I introduced might serve the `think small` version of the reporting work, but I don't think it serves the `think big`, I will try to shed some light into why.

Within the current design, It is hard to maintain QueryParams for dynamically generated params (based on the idea of introducing more than one custom filter per report).

To allow ourselves to have more than one generic filter, we will need to:

a. Use the Route's model to retrieve the report's payload (we are now dependent on changes of the QueryParams via computed properties)
b. After retrieving the payload, we can use the `setupController` to define our dynamic QueryParams based on the custom filters definitions we received from the backend
c. Load a custom filter specific Ember component based on the definitions we received from the backend
2019-03-15 12:15:38 +00:00
..
admin-dashboard-next.js.es6
admin-dashboard.js.es6
admin-user.js.es6 FIX: removes legacy browsers-refresh button (#7028) 2019-02-19 16:38:21 +01:00
api-key.js.es6 DEV: refactoring api-keys (#6931) 2019-01-23 17:40:05 +01:00
backup-status.js.es6
backup.js.es6 FEATURE: Improve handling of backup storage errors 2019-02-20 15:16:49 +01:00
color-scheme-color.js.es6 REFACTOR: color-scheme-color model (#7019) 2019-02-19 09:31:26 +01:00
color-scheme.js.es6
email-log.js.es6
email-preview.js.es6
email-settings.js.es6
email-template.js.es6
flag-type.js.es6
flagged-post.js.es6 FEATURE: defer flags when deleting child replies (#7111) 2019-03-06 14:32:25 +05:30
incoming-email.js.es6
permalink.js.es6
report.js.es6 FEATURE: Exposing a way to add a generic report filter (#6816) 2019-03-15 12:15:38 +00:00
screened-email.js.es6
screened-ip-address.js.es6
screened-url.js.es6
site-setting.js.es6
site-text.js.es6
staff-action-log.js.es6
theme-settings.js.es6
theme.js.es6 FIX: Should be possible to save an empty theme_field in the editor 2019-02-19 21:49:31 +00:00
tl3-requirements.js.es6
user-field.js.es6
version-check.js.es6
watched-word.js.es6
web-hook.js.es6