mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
ffe0f84700
closes https://github.com/TryGhost/Ghost/issues/12421 - added `emailOpenRate` property to member model - added open-rate column to the members list - hidden when email analytics is disabled - added `{{feature "flag"}}` helper so feature flags can be checked in templates without injecting the feature service into the backing class - added `order` query param to the members controller/route and wired it into the data fetching routine - added order dropdown to the filter bar with "Newest" (default) and "Open rate" as the two options - whole dropdown is hidden if email analytics is disabled Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
37 lines
925 B
JavaScript
37 lines
925 B
JavaScript
import {helper} from '@ember/component/helper';
|
|
|
|
export const DEFAULT_QUERY_PARAMS = {
|
|
posts: {
|
|
type: null,
|
|
visibility: null,
|
|
author: null,
|
|
tag: null,
|
|
order: null
|
|
},
|
|
pages: {
|
|
type: null,
|
|
visibility: null,
|
|
author: null,
|
|
tag: null,
|
|
order: null
|
|
},
|
|
'members.index': {
|
|
label: null,
|
|
paid: null,
|
|
search: '',
|
|
order: null
|
|
}
|
|
};
|
|
|
|
// in order to reset query params to their defaults when using <LinkTo> or
|
|
// `transitionTo` it's necessary to explicitly set each param. This helper makes
|
|
// it easier to provide a "resetting" link, especially when used with custom views
|
|
|
|
export function resetQueryParams(routeName, newParams) {
|
|
return Object.assign({}, DEFAULT_QUERY_PARAMS[routeName], newParams);
|
|
}
|
|
|
|
export default helper(function (params/*, hash*/) {
|
|
return resetQueryParams(...params);
|
|
});
|