Add datetime field

pull/4474/head
Oliver Günther 9 years ago
parent 427f91dcd8
commit 949c1feb1d
  1. 39
      frontend/app/components/wp-display/field-types/wp-display-datetime-field.module.ts
  2. 2
      frontend/app/components/wp-display/wp-display-field/wp-display-field.config.ts

@ -0,0 +1,39 @@
// -- copyright
// OpenProject is a project management system.
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License version 3.
//
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
// Copyright (C) 2006-2013 Jean-Philippe Lang
// Copyright (C) 2010-2013 the ChiliProject Team
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// See doc/COPYRIGHT.rdoc for more details.
// ++
import {DisplayField} from "../wp-display-field/wp-display-field.module";
export class DateTimeDisplayField extends DisplayField {
public template:string = '/components/wp-display/field-types/wp-display-default-field.directive.html';
public get valueString() {
const WorkPackagesHelper:any = this.$injector.get('WorkPackagesHelper');
return WorkPackagesHelper.formatValue(this.value, 'DateTime');
}
}

@ -34,6 +34,7 @@ import {StringObjectDisplayField} from "../field-types/wp-display-string-object-
import {FormattableDisplayField} from "../field-types/wp-display-formattable-field.module"; import {FormattableDisplayField} from "../field-types/wp-display-formattable-field.module";
import {DurationDisplayField} from "../field-types/wp-display-duration-field.module"; import {DurationDisplayField} from "../field-types/wp-display-duration-field.module";
import {DateDisplayField} from "../field-types/wp-display-date-field.module"; import {DateDisplayField} from "../field-types/wp-display-date-field.module";
import {DateTimeDisplayField} from "../field-types/wp-display-datetime-field.module.ts";
import {IdDisplayField} from "../field-types/wp-display-id-field.module"; import {IdDisplayField} from "../field-types/wp-display-id-field.module";
import {BooleanDisplayField} from "../field-types/wp-display-boolean-field.module"; import {BooleanDisplayField} from "../field-types/wp-display-boolean-field.module";
import {ProgressDisplayField} from "../field-types/wp-display-progress-field.module"; import {ProgressDisplayField} from "../field-types/wp-display-progress-field.module";
@ -55,6 +56,7 @@ openprojectModule
.addFieldType(FormattableDisplayField, 'formattable', ['Formattable']) .addFieldType(FormattableDisplayField, 'formattable', ['Formattable'])
.addFieldType(DurationDisplayField, 'duration', ['Duration']) .addFieldType(DurationDisplayField, 'duration', ['Duration'])
.addFieldType(DateDisplayField, 'date', ['Date']) .addFieldType(DateDisplayField, 'date', ['Date'])
.addFieldType(DateTimeDisplayField, 'datetime', ['DateTime'])
.addFieldType(BooleanDisplayField, 'boolean', ['Boolean']) .addFieldType(BooleanDisplayField, 'boolean', ['Boolean'])
.addFieldType(ProgressDisplayField, 'progress', ['percentageDone']) .addFieldType(ProgressDisplayField, 'progress', ['percentageDone'])
.addFieldType(IdDisplayField, 'id', ['id']); .addFieldType(IdDisplayField, 'id', ['id']);

Loading…
Cancel
Save