blob: 9e280198cb9a986d534439a88e2fbac31fe3ba52 [file] [log] [blame]
// 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.
define([
'app',
'api',
'addons/documents/designdocinfo/actiontypes',
'addons/documents/designdocinfo/stores'
],
function (app, FauxtonAPI, ActionTypes, Stores) {
var store = Stores.designDocInfoStore;
return {
fetchDesignDocInfo: function (options) {
var designDocInfo = options.designDocInfo;
FauxtonAPI.dispatch({
type: ActionTypes.DESIGN_FETCHING
});
designDocInfo.fetch().then(function () {
this.monitorDesignDoc({
ddocName: options.ddocName,
designDocInfo: designDocInfo
});
}.bind(this));
},
monitorDesignDoc: function (options) {
options.intervalId = window.setInterval(_.bind(this.refresh, this), 5000);
FauxtonAPI.dispatch({
type: ActionTypes.DESIGN_DOC_MONITOR,
options: options
});
},
refresh: function () {
store.getDesignDocInfo().fetch().then(function () {
FauxtonAPI.dispatch({
type: ActionTypes.DESIGN_REFRESH
});
});
},
stopRefresh: function () {
window.clearInterval(store.getIntervalId());
}
};
});