Source: PleesTracker/engine.js

  1. /*
  2. * Copyright 2020-2022 Sleepdiary Developers <sleepdiary@pileofstuff.org>
  3. *
  4. * Permission is hereby granted, free of charge, to any person
  5. * obtaining a copy of this software and associated documentation
  6. * files (the "Software"), to deal in the Software without
  7. * restriction, including without limitation the rights to use, copy,
  8. * modify, merge, publish, distribute, sublicense, and/or sell copies
  9. * of the Software, and to permit persons to whom the Software is
  10. * furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be
  13. * included in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  16. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  19. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  20. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  22. * SOFTWARE.
  23. */
  24. "use strict";
  25. /**
  26. * @public
  27. * @unrestricted
  28. * @augments DiaryBase
  29. *
  30. * @example
  31. * let diary = new_sleep_diary(contents_of_my_file));
  32. *
  33. * console.log(diary.records);
  34. * -> [
  35. * {
  36. * "sid" : 1,
  37. * "start" : 12345678,
  38. * "stop" : 23456789,
  39. * "rating": 5,
  40. * },
  41. * ...
  42. * ]
  43. *
  44. */
  45. class DiaryPleesTracker extends DiaryBase {
  46. /**
  47. * @param {Object} file - file contents
  48. * @param {Function=} serialiser - function to serialise output
  49. */
  50. constructor(file,serialiser) {
  51. super(file,serialiser); // call the SleepDiary constructor
  52. /**
  53. * Spreadsheet manager
  54. * @protected
  55. * @type {Spreadsheet}
  56. */
  57. this["spreadsheet"] = new Spreadsheet(this,[
  58. {
  59. "sheet" : "Records",
  60. "member" : "records",
  61. "cells": [
  62. {
  63. "member": "sid",
  64. "regexp": /^[1-9][0-9]*$/,
  65. "type": "number",
  66. },
  67. {
  68. "member": "start",
  69. "type": "time",
  70. },
  71. {
  72. "member": "stop",
  73. "type": "time",
  74. },
  75. {
  76. "member": "rating",
  77. "regexp": /^[0-5]$/,
  78. "type": "number",
  79. },
  80. ]
  81. }
  82. ]);
  83. if ( !this.initialise_from_common_formats(file) ) {
  84. /**
  85. * Individual records from the sleep diary
  86. * @type {Array}
  87. */
  88. this["records"] = (
  89. file["to"]("Standard")["records"]
  90. .filter( r => r["status"] == "asleep" )
  91. .map( (r,n) => ({
  92. "start" : r["start"],
  93. "stop" : r["end" ],
  94. "sid" : n+1,
  95. "rating" : 0,
  96. }))
  97. );
  98. }
  99. }
  100. ["to"](to_format) {
  101. switch ( to_format ) {
  102. case "output":
  103. return this.serialise({
  104. "file_format": () => "string",
  105. "contents": (
  106. // can't use output_csv() here, because PleesTracker requires numeric times
  107. "sid,start,stop,rating\n" +
  108. this["records"]
  109. .map(
  110. r => [
  111. r["sid" ],
  112. r["start" ],
  113. r["stop" ],
  114. r["rating"],
  115. ].join(',') + "\n"
  116. ).join("")
  117. ),
  118. });
  119. case "Standard":
  120. return new DiaryStandard({
  121. "records": this["records"].map(
  122. r => ({
  123. "status" : "asleep",
  124. "start" : r["start"],
  125. "end" : r["stop" ],
  126. })
  127. ),
  128. }, this.serialiser);
  129. default:
  130. return super["to"](to_format);
  131. }
  132. }
  133. ["merge"](other) {
  134. other = other["to"](this["file_format"]());
  135. this["records"] = this["records"].concat(
  136. DiaryBase.unique(
  137. this["records"],
  138. other["records"],
  139. ["start","stop"]
  140. )
  141. );
  142. this["records"].forEach( (record,n) => record["sid"]=n+1 );
  143. return this;
  144. }
  145. ["file_format"]() { return "PleesTracker"; }
  146. ["format_info"]() {
  147. return {
  148. "name": "PleesTracker",
  149. "title": "Plees Tracker",
  150. "url": "/src/PleesTracker",
  151. "statuses": [ "asleep" ],
  152. "extension": ".csv",
  153. "logo": "https://raw.githubusercontent.com/vmiklos/plees-tracker/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png",
  154. "timezone": "UTC",
  155. }
  156. }
  157. }
  158. DiaryBase.register(DiaryPleesTracker);