Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_date.vue « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33531cc3278f8992ec7440e75bf9150f43bb27fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script>
import { formatDate } from '~/lib/utils/datetime_utility';
import { __ } from '~/locale';
import { SHORT_DATE_FORMAT, DATE_FORMATS } from '../constants';

export default {
  props: {
    date: {
      type: String,
      required: false,
      default: null,
    },
    dateFormat: {
      type: String,
      required: false,
      default: SHORT_DATE_FORMAT,
      validator: (dateFormat) => DATE_FORMATS.includes(dateFormat),
    },
  },
  computed: {
    formattedDate() {
      const { date } = this;
      if (date === null) {
        return __('Never');
      }
      return formatDate(new Date(date), this.dateFormat);
    },
  },
};
</script>
<template>
  <span>
    {{ formattedDate }}
  </span>
</template>