@projectcaluma/ember-core 11.0.0-beta.3 → 11.0.0-beta.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,38 @@
1
+ # [@projectcaluma/ember-core-v11.0.0-beta.6](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-core-v11.0.0-beta.5...@projectcaluma/ember-core-v11.0.0-beta.6) (2022-03-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **embroider:** add missing dependency on @ember/string ([3a6e6bb](https://github.com/projectcaluma/ember-caluma/commit/3a6e6bb39a8c1a40a2ae00b3d4ea00606a755e25))
7
+
8
+ # [@projectcaluma/ember-core-v11.0.0-beta.5](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-core-v11.0.0-beta.4...@projectcaluma/ember-core-v11.0.0-beta.5) (2022-03-11)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **core:** ensure only language code of the locale is passed to slugify ([02e4506](https://github.com/projectcaluma/ember-caluma/commit/02e45064b9171de85af5b9e1a890d5207a6ec252))
14
+ * **core:** handle null values in raw dates ([9c73d0b](https://github.com/projectcaluma/ember-caluma/commit/9c73d0b3853b154b5edc84bcf2c1227ffb825116)), closes [#1826](https://github.com/projectcaluma/ember-caluma/issues/1826)
15
+ * **distribution:** fix sorting after group names in navigation ([2299d3b](https://github.com/projectcaluma/ember-caluma/commit/2299d3b0e265204ab6747dbdc6a8b64fc22f247f))
16
+
17
+
18
+ ### Features
19
+
20
+ * **form:** support passing component override classes ([9409c7c](https://github.com/projectcaluma/ember-caluma/commit/9409c7cb5901dcdffec1c0294046da64b74b9922))
21
+
22
+ # [@projectcaluma/ember-core-v11.0.0-beta.4](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-core-v11.0.0-beta.3...@projectcaluma/ember-core-v11.0.0-beta.4) (2022-02-07)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **core:** remove usage of moment and remove momentAttr for models ([92f3651](https://github.com/projectcaluma/ember-caluma/commit/92f365114900fe9f9ad5b49c9e9eed97b25991b5))
28
+
29
+
30
+ ### BREAKING CHANGES
31
+
32
+ * **core:** The `momentAttr` decorator for models was replaced with
33
+ a `dateAttr` that returns a plain JS date object. Predefined date
34
+ attributes on models are now JS dates instead of moment objects.
35
+
1
36
  # [@projectcaluma/ember-core-v11.0.0-beta.3](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-core-v11.0.0-beta.2...@projectcaluma/ember-core-v11.0.0-beta.3) (2022-02-03)
2
37
 
3
38
 
@@ -1,15 +1,15 @@
1
1
  import { inject as service } from "@ember/service";
2
2
 
3
3
  import CalumaQueryModel, {
4
- momentAttr,
4
+ dateAttr,
5
5
  } from "@projectcaluma/ember-core/caluma-query/models/index";
6
6
 
7
7
  export default class CaseModel extends CalumaQueryModel {
8
8
  @service intl;
9
9
 
10
- @momentAttr createdAt;
11
- @momentAttr modifiedAt;
12
- @momentAttr closedAt;
10
+ @dateAttr createdAt;
11
+ @dateAttr modifiedAt;
12
+ @dateAttr closedAt;
13
13
 
14
14
  get status() {
15
15
  return this.intl.t(`caluma.caluma-query.case.status.${this.raw.status}`);
@@ -1,5 +1,4 @@
1
1
  import cloneDeep from "lodash.clonedeep";
2
- import moment from "moment";
3
2
 
4
3
  import { decodeId } from "@projectcaluma/ember-core/helpers/decode-id";
5
4
 
@@ -11,15 +10,16 @@ export function uuidAttr(target, name) {
11
10
  };
12
11
  }
13
12
 
14
- export function momentAttr(target, name) {
13
+ export function dateAttr(target, name) {
15
14
  return {
16
15
  get() {
17
- const date = moment(this.raw[name]);
16
+ const raw = this.raw[name];
17
+ const date = raw ? new Date(raw) : null;
18
18
 
19
- return date.isValid() ? date : null;
19
+ return raw && !isNaN(date) ? date : null;
20
20
  },
21
21
  set(value) {
22
- if (value.isValid()) {
22
+ if (!isNaN(value)) {
23
23
  this.raw[name] = value.toISOString();
24
24
  }
25
25
  },
@@ -1,16 +1,16 @@
1
1
  import { inject as service } from "@ember/service";
2
2
 
3
3
  import CalumaQueryModel, {
4
- momentAttr,
4
+ dateAttr,
5
5
  } from "@projectcaluma/ember-core/caluma-query/models/index";
6
6
 
7
7
  export default class WorkItemModel extends CalumaQueryModel {
8
8
  @service intl;
9
9
 
10
- @momentAttr createdAt;
11
- @momentAttr modifiedAt;
12
- @momentAttr closedAt;
13
- @momentAttr deadline;
10
+ @dateAttr createdAt;
11
+ @dateAttr modifiedAt;
12
+ @dateAttr closedAt;
13
+ @dateAttr deadline;
14
14
 
15
15
  get status() {
16
16
  return this.intl.t(
@@ -2,6 +2,7 @@ import { assert } from "@ember/debug";
2
2
  import { once } from "@ember/runloop";
3
3
  import Service, { inject as service } from "@ember/service";
4
4
  import { camelize } from "@ember/string";
5
+ import { tracked } from "@glimmer/tracking";
5
6
  import { task } from "ember-concurrency";
6
7
  import { pluralize } from "ember-inflector";
7
8
 
@@ -14,25 +15,46 @@ import { pluralize } from "ember-inflector";
14
15
  */
15
16
  function typeResolver(type) {
16
17
  return task(function* () {
17
- const identifiers = [...this[type].identifiers];
18
- const callbacks = [...this[type].callbacks];
18
+ const identifiers = [...(this[type]?.identifiers ?? [])];
19
+ const callbacks = [...(this[type]?.callbacks ?? [])];
19
20
 
20
21
  this[type] = undefined;
21
22
 
22
23
  if (!identifiers.length) return;
23
24
 
25
+ const cached = this[`${type}Cache`];
26
+ const uncachedIdentifiers = identifiers.filter(
27
+ (identifier) =>
28
+ !cached
29
+ .map((resolved) =>
30
+ String(resolved[this.calumaOptions[`${type}IdentifierProperty`]])
31
+ )
32
+ .includes(String(identifier))
33
+ );
34
+
24
35
  const methodName = camelize(`resolve-${pluralize(type)}`);
25
- const result = yield this.calumaOptions[methodName]?.(identifiers);
36
+ const result = uncachedIdentifiers.length
37
+ ? yield this.calumaOptions[methodName]?.(uncachedIdentifiers)
38
+ : [];
39
+
40
+ const allResults = [...cached, ...(result?.toArray?.() ?? result ?? [])];
26
41
 
27
- yield Promise.all(callbacks.map((callback) => callback(result)));
42
+ if (result?.length) {
43
+ this[`${type}Cache`] = allResults;
44
+ }
45
+
46
+ yield Promise.all(callbacks.map((callback) => callback(allResults)));
28
47
 
29
- return result;
48
+ return allResults;
30
49
  }).enqueue();
31
50
  }
32
51
 
33
52
  export default class PrivateSchedulerService extends Service {
34
53
  @service calumaOptions;
35
54
 
55
+ @tracked groupCache = [];
56
+ @tracked userCache = [];
57
+
36
58
  @typeResolver("group") resolveGroup;
37
59
  @typeResolver("user") resolveUser;
38
60
 
@@ -18,33 +18,6 @@ export default class CalumaOptionsService extends Service {
18
18
 
19
19
  @tracked currentGroupId;
20
20
 
21
- constructor(...args) {
22
- super(...args);
23
-
24
- this.registerComponentOverride({
25
- label: this.intl.t(
26
- "caluma.form-builder.question.widgetOverrides.powerselect"
27
- ),
28
- component: "cf-field/input/powerselect",
29
- types: [
30
- "ChoiceQuestion",
31
- "MultipleChoiceQuestion",
32
- "DynamicChoiceQuestion",
33
- "DynamicMultipleChoiceQuestion",
34
- ],
35
- });
36
-
37
- this.registerComponentOverride({
38
- label: this.intl.t("caluma.form-builder.question.widgetOverrides.hidden"),
39
- component: "cf-field/input/hidden",
40
- });
41
-
42
- this.registerComponentOverride({
43
- component: "cfb-form-editor/question/default/table",
44
- types: [],
45
- });
46
- }
47
-
48
21
  _namespace = null;
49
22
  _overrides = {};
50
23
 
@@ -7,6 +7,6 @@ export default function (value, { locale = null } = {}) {
7
7
  return slugify(value, {
8
8
  lower: true,
9
9
  strict: true,
10
- locale,
10
+ locale: locale?.split("-")[0].toLowerCase(),
11
11
  }).substr(0, 127);
12
12
  }
@@ -10,6 +10,6 @@ module.exports = {
10
10
  { name: "ember-intl" },
11
11
  { name: "ember-uikit" },
12
12
  ],
13
- }).then(() => this.addPackagesToProject([{ name: "moment" }]));
13
+ });
14
14
  },
15
15
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projectcaluma/ember-core",
3
- "version": "11.0.0-beta.3",
3
+ "version": "11.0.0-beta.6",
4
4
  "description": "Ember core addon for working with Caluma.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -14,38 +14,39 @@
14
14
  "test:ember-compatibility": "ember try:each"
15
15
  },
16
16
  "dependencies": {
17
- "@apollo/client": "^3.5.8",
17
+ "@apollo/client": "^3.5.10",
18
+ "@ember/string": "^3.0.0",
18
19
  "@glimmer/tracking": "^1.0.4",
19
- "ember-apollo-client": "^3.2.0",
20
+ "ember-apollo-client": "^4.0.2",
20
21
  "ember-auto-import": "^2.4.0",
21
22
  "ember-cli-babel": "^7.26.11",
22
23
  "ember-cli-htmlbars": "^6.0.1",
23
- "ember-concurrency": "^2.2.0",
24
+ "ember-concurrency": "^2.2.1",
24
25
  "ember-fetch": "^8.1.1",
25
26
  "ember-inflector": "^4.0.2",
26
27
  "ember-intl": "^5.7.2",
27
- "ember-resources": "^4.2.0",
28
+ "ember-resources": "^4.4.0",
28
29
  "graphql": "^15.8.0",
29
30
  "graphql-tag": "^2.12.6",
30
31
  "jexl": "^2.3.0",
31
32
  "lodash.clonedeep": "^4.5.0",
32
- "moment": "^2.29.1",
33
33
  "slugify": "^1.6.5"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@ember/optional-features": "2.0.0",
37
37
  "@ember/render-modifiers": "2.0.4",
38
38
  "@ember/test-helpers": "2.6.0",
39
- "@embroider/test-setup": "1.0.0",
40
- "@faker-js/faker": "6.0.0-alpha.5",
39
+ "@embroider/test-setup": "1.5.0",
40
+ "@embroider/util": "^1.5.0",
41
+ "@faker-js/faker": "6.0.0",
41
42
  "@glimmer/component": "1.0.4",
42
- "@projectcaluma/ember-testing": "11.0.0-beta.1",
43
+ "@projectcaluma/ember-testing": "11.0.0-beta.5",
43
44
  "broccoli-asset-rev": "3.0.0",
44
45
  "ember-cli": "3.28.5",
45
46
  "ember-cli-code-coverage": "1.0.3",
46
47
  "ember-cli-dependency-checker": "3.2.0",
47
48
  "ember-cli-inject-live-reload": "2.1.0",
48
- "ember-cli-mirage": "2.4.0",
49
+ "ember-cli-mirage": "3.0.0-alpha.2",
49
50
  "ember-cli-sri": "2.1.1",
50
51
  "ember-cli-terser": "4.0.2",
51
52
  "ember-disable-prototype-extensions": "1.1.3",
@@ -59,9 +60,9 @@
59
60
  "ember-try": "2.0.0",
60
61
  "loader.js": "4.7.0",
61
62
  "npm-run-all": "4.1.5",
62
- "qunit": "2.17.2",
63
+ "qunit": "2.18.0",
63
64
  "qunit-dom": "2.0.0",
64
- "webpack": "5.68.0"
65
+ "webpack": "5.70.0"
65
66
  },
66
67
  "engines": {
67
68
  "node": "12.* || 14.* || >= 16"