blob: 2c47476681df6166d2f1d48f3445d16c7999ba59 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
// Application bootstrapper
module.exports = Em.Application.create({
name: 'Ambari Web',
rootElement: '#wrapper',
store: DS.Store.create({
revision: 4,
adapter: require('data_adapter')
// adapter: DS.FixtureAdapter.create()
})
});
/**
* Ambari overrides the default date transformer.
* This is done because of the non-standard data
* sent. For example Nagios sends date as "12345678".
* The problem is that it is a String and is represented
* only in seconds whereas Javascript's Date needs
* milliseconds representation.
*/
DS.attr.transforms.date = {
from: function (serialized) {
var type = typeof serialized;
if (type === "string") {
serialized = parseInt(serialized);
type = typeof serialized;
}
if (type === "number") {
// The number could be seconds or milliseconds.
// If seconds, then multiplying with 1000 should still
// keep it below the current time.
if (serialized * 1000 < new Date().getTime()) {
serialized = serialized * 1000;
}
return new Date(serialized);
} else if (serialized === null || serialized === undefined) {
// if the value is not present in the data,
// return undefined, not null.
return serialized;
} else {
return null;
}
},
to: function (deserialized) {
if (deserialized instanceof Date) {
return deserialized.getTime();
} else if (date === undefined) {
return undefined;
} else {
return null;
}
}
}