Welches ist das Äquivalent von PHP Drupal Format_Intervall für Javascript?

8

Ich möchte mit JavaScript und Drupal.t()dem Äquivalent von verwenden format_interval().

Mit PHP würde ich den folgenden Code verwenden.

print t("!date ago", array("!date" => format_interval(time() - $lastActivity, 1)));

Was wäre das Äquivalent in JavaScript?

Iulian Boiculese
quelle
Die tMethode ist ein Drupal-Text, der die t()PHP-Funktion aus dem Drupal-Kern bereinigt und übersetzt .
AyeshK

Antworten:

4

Drupal implementiert keine JS-Version von format_interval(); Dies ist ein rauer (minimal getesteter) Port:

Drupal.formatInterval = function(interval, granularity, langcode) {
  granularity = typeof granularity !== 'undefined' ? granularity : 2;
  langcode = typeof langcode !== 'undefined' ? langcode : null;

  var units = {
    '1 year|@count years': 31536000,
    '1 month|@count months': 2592000,
    '1 week|@count weeks': 604800,
    '1 day|@count days': 86400,
    '1 hour|@count hours': 3600,
    '1 min|@count min': 60,
    '1 sec|@count sec': 1
  },
  output = '';

  for (var key in units) {
    var keys = key.split('|'); 
    var value = units[key];
    if (interval >= value) {
      output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), keys[0], keys[1], {}, { langcode: langcode });
      interval %= value;
      granularity--;
    }

    if (granularity == 0) {
      break;
    }
  }

  return output.length ? output : Drupal.t('0 sec', {}, { langcode: langcode });
}

Einige zufällige Ergebnisse unter Verwendung der oben genannten (sie scheinen wie erwartet mit der PHP-Funktion übereinzustimmen):

  • 3643 => 1 Stunde 43 Sek
  • 92900 => 1 Tag 1 Stunde
  • 2592000 => 1 Monat
  • 9331200 => 3 Monate 2 Wochen
  • 297605232 => 9 Jahre 5 Monate
Clive
quelle
1

Die Implementierung von Clives läuft gut. Der Javascript-Aggregator von Drupals muss jedoch alle Javascript-Dateien auf übersetzbare Zeichenfolgen analysieren. Da Clive dynamische Werte für Drupal.formatPlural verwendet, funktioniert dies hier nicht.

Hier ist eine weitere Implementierung mit funktionierender Übersetzung:

Drupal.formatInterval = function(interval, granularity) {
  granularity = typeof granularity !== 'undefined' ? granularity : 2;    
  output = '';

  while (granularity > 0) {
    var value = 0;
    if (interval >= 31536000) {
      value = 31536000;
      output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 year', '@count years');
    }
    else if (interval >= 2592000) {
      value = 2592000;
      output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 month', '@count months');
    }
    else if (interval >= 604800) {
      value = 604800;
      output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 week', '@count weeks');
    }
    else if (interval >= 86400) {
      value = 86400;
      output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 day', '@count days');
    }
    else if (interval >= 3600) {
      value = 3600;
      output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 hour', '@count hours');
    }
    else if (interval >= 60) {
      value = 60;
      output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 min', '@count min');
    }
    else if (interval >= 1) {
      value = 1;
      output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 sec', '@count sec');
    }

    interval %= value;
    granularity--;
  }

  return output.length ? output : Drupal.t('0 sec');
}
Haggis
quelle