2018-02-26 17:41:04 +01:00
|
|
|
// (C) Copyright 2015 Martin Dougiamas
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2018-03-14 10:32:05 +01:00
|
|
|
import { Injectable } from '@angular/core';
|
2018-02-26 17:41:04 +01:00
|
|
|
import { AddonMessagesProvider } from './messages';
|
|
|
|
import { CoreSettingsHandler, CoreSettingsHandlerData } from '@core/settings/providers/delegate';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Message settings handler.
|
|
|
|
*/
|
|
|
|
@Injectable()
|
|
|
|
export class AddonMessagesSettingsHandler implements CoreSettingsHandler {
|
|
|
|
name = 'AddonMessages';
|
|
|
|
priority = 600;
|
|
|
|
|
2018-03-14 10:32:05 +01:00
|
|
|
constructor(private messagesProvider: AddonMessagesProvider) {
|
2018-02-26 17:41:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the handler is enabled on a site level.
|
|
|
|
*
|
2018-03-08 13:25:20 +01:00
|
|
|
* @return {boolean | Promise<boolean>} Whether or not the handler is enabled on a site level.
|
2018-02-26 17:41:04 +01:00
|
|
|
*/
|
|
|
|
isEnabled(): boolean | Promise<boolean> {
|
|
|
|
return this.messagesProvider.isMessagePreferencesEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the data needed to render the handler.
|
|
|
|
*
|
|
|
|
* @return {CoreSettingsHandlerData} Data needed to render the handler.
|
|
|
|
*/
|
|
|
|
getDisplayData(): CoreSettingsHandlerData {
|
|
|
|
return {
|
|
|
|
icon: 'chatbubbles',
|
|
|
|
title: 'addon.messages.messagepreferences',
|
|
|
|
page: 'AddonMessagesSettingsPage',
|
|
|
|
class: 'addon-messages-settings-handler'
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|