@bigfootai/bigfoot-types 3.5.3 → 3.5.5

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/editor.js CHANGED
@@ -1,45 +1,58 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  exports.bigfootSchema = void 0;
7
4
  const prosemirror_model_1 = require("prosemirror-model");
8
5
  const prosemirror_schema_basic_1 = require("prosemirror-schema-basic");
9
6
  const prosemirror_schema_list_1 = require("prosemirror-schema-list");
10
- const orderedmap_1 = __importDefault(require("orderedmap"));
11
- exports.bigfootSchema = new prosemirror_model_1.Schema({
12
- nodes: (0, prosemirror_schema_list_1.addListNodes)(prosemirror_schema_basic_1.schema.spec.nodes, 'paragraph block*', 'block'),
13
- marks: orderedmap_1.default.from(prosemirror_schema_basic_1.schema.spec.marks).addToEnd('tag', {
14
- attrs: {
15
- tagId: { default: null },
16
- tagType: { default: null },
17
- recommendationId: { default: null },
7
+ const tag = {
8
+ attrs: {
9
+ tagId: { default: null },
10
+ tagType: { default: null },
11
+ recommendationId: { default: null },
12
+ },
13
+ inclusive: false,
14
+ parseDOM: [
15
+ {
16
+ tag: 'span[data-tag-id][data-recommendation-id][data-tag-type]',
17
+ getAttrs(dom) {
18
+ return {
19
+ tagId: dom.getAttribute('data-tag-id'),
20
+ tagType: dom.getAttribute('data-tag-type'),
21
+ recommendationId: dom.getAttribute('data-recommendation-id'),
22
+ };
23
+ },
18
24
  },
19
- inclusive: false,
20
- parseDOM: [
25
+ ],
26
+ toDOM(node) {
27
+ const { tagId, tagType, recommendationId } = node.attrs;
28
+ return [
29
+ 'span',
21
30
  {
22
- tag: 'span[data-tag-id][data-recommendation-id][data-tag-type]',
23
- getAttrs(dom) {
24
- return {
25
- tagId: dom.getAttribute('data-tag-id'),
26
- tagType: dom.getAttribute('data-tag-type'),
27
- recommendationId: dom.getAttribute('data-recommendation-id'),
28
- };
29
- },
31
+ 'data-tag-id': tagId,
32
+ 'data-tag-type': tagType,
33
+ 'data-recommendation-id': recommendationId,
30
34
  },
31
- ],
32
- toDOM(node) {
33
- const { tagId, tagType, recommendationId } = node.attrs;
34
- return [
35
- 'span',
36
- {
37
- 'data-tag-id': tagId,
38
- 'data-tag-type': tagType,
39
- 'data-recommendation-id': recommendationId,
40
- },
41
- 0,
42
- ];
35
+ 0,
36
+ ];
37
+ },
38
+ };
39
+ const strong = {
40
+ parseDOM: [
41
+ { tag: 'strong' },
42
+ {
43
+ tag: 'b',
44
+ getAttrs: (node) => node.style.fontWeight != 'normal' && null,
43
45
  },
44
- }),
46
+ ],
47
+ toDOM: () => ['strong', 0],
48
+ };
49
+ exports.bigfootSchema = new prosemirror_model_1.Schema({
50
+ nodes: (0, prosemirror_schema_list_1.addListNodes)(prosemirror_schema_basic_1.schema.spec.nodes, 'paragraph block*', 'block'),
51
+ marks: {
52
+ ...prosemirror_schema_basic_1.schema.spec.marks,
53
+ // @ts-expect-error - I will do a better job typing this later. Your friend in time, past you.
54
+ tag,
55
+ // @ts-expect-error - I will do a better job typing this later. Your friend in time, past you.
56
+ strong,
57
+ },
45
58
  });
package/editor.ts CHANGED
@@ -1,44 +1,63 @@
1
1
  import { Schema } from 'prosemirror-model';
2
2
  import { schema } from 'prosemirror-schema-basic';
3
3
  import { addListNodes } from 'prosemirror-schema-list';
4
- import orderedMap from 'orderedmap';
5
4
 
6
- export const bigfootSchema = new Schema({
7
- nodes: addListNodes(schema.spec.nodes, 'paragraph block*', 'block'),
8
- marks: orderedMap.from(schema.spec.marks).addToEnd('tag', {
9
- attrs: {
10
- tagId: { default: null },
11
- tagType: { default: null },
12
- recommendationId: { default: null },
5
+ const tag = {
6
+ attrs: {
7
+ tagId: { default: null },
8
+ tagType: { default: null },
9
+ recommendationId: { default: null },
10
+ },
11
+ inclusive: false,
12
+ parseDOM: [
13
+ {
14
+ tag: 'span[data-tag-id][data-recommendation-id][data-tag-type]',
15
+ getAttrs(dom: HTMLElement) {
16
+ return {
17
+ tagId: (dom as HTMLElement).getAttribute('data-tag-id'),
18
+ tagType: (dom as HTMLElement).getAttribute('data-tag-type'),
19
+ recommendationId: (dom as HTMLElement).getAttribute(
20
+ 'data-recommendation-id'
21
+ ),
22
+ };
23
+ },
13
24
  },
14
- inclusive: false,
15
- parseDOM: [
25
+ ],
26
+ toDOM(node: {
27
+ attrs: { tagId: string; tagType: string; recommendationId: string };
28
+ }) {
29
+ const { tagId, tagType, recommendationId } = node.attrs;
30
+ return [
31
+ 'span',
16
32
  {
17
- tag: 'span[data-tag-id][data-recommendation-id][data-tag-type]',
18
- getAttrs(dom) {
19
- return {
20
- tagId: (dom as HTMLElement).getAttribute('data-tag-id'),
21
- tagType: (dom as HTMLElement).getAttribute(
22
- 'data-tag-type'
23
- ),
24
- recommendationId: (dom as HTMLElement).getAttribute(
25
- 'data-recommendation-id'
26
- ),
27
- };
28
- },
33
+ 'data-tag-id': tagId,
34
+ 'data-tag-type': tagType,
35
+ 'data-recommendation-id': recommendationId,
29
36
  },
30
- ],
31
- toDOM(node) {
32
- const { tagId, tagType, recommendationId } = node.attrs;
33
- return [
34
- 'span',
35
- {
36
- 'data-tag-id': tagId,
37
- 'data-tag-type': tagType,
38
- 'data-recommendation-id': recommendationId,
39
- },
40
- 0,
41
- ];
37
+ 0,
38
+ ];
39
+ },
40
+ };
41
+
42
+ const strong = {
43
+ parseDOM: [
44
+ { tag: 'strong' },
45
+ {
46
+ tag: 'b',
47
+ getAttrs: (node: HTMLElement) =>
48
+ node.style.fontWeight != 'normal' && null,
42
49
  },
43
- }),
50
+ ],
51
+ toDOM: () => ['strong', 0],
52
+ };
53
+
54
+ export const bigfootSchema = new Schema({
55
+ nodes: addListNodes(schema.spec.nodes, 'paragraph block*', 'block'),
56
+ marks: {
57
+ ...schema.spec.marks,
58
+ // @ts-expect-error - I will do a better job typing this later. Your friend in time, past you.
59
+ tag,
60
+ // @ts-expect-error - I will do a better job typing this later. Your friend in time, past you.
61
+ strong,
62
+ },
44
63
  });
package/model.js CHANGED
@@ -540,7 +540,7 @@ class Note extends Block {
540
540
  exports.Note = Note;
541
541
  exports.TaskFields = `${exports.BlockFields}
542
542
  status: String!
543
- dueDate: Int!
543
+ dateDue: Int!
544
544
  originNoteId: String!
545
545
  snoozed: Boolean!
546
546
  steps: [TaskStep]
@@ -806,7 +806,15 @@ type ArchiveTagOutput {
806
806
  archived: Boolean
807
807
  }`;
808
808
  exports.UpdateTaskInputQL = `
809
- input UpdateTaskInput {${exports.TaskFields}
809
+ input UpdateTaskInput {
810
+ _id: String
811
+ editor: EditorInput!
812
+ status: String!
813
+ dateDue: Float!
814
+ snoozed: Boolean!
815
+ steps: [TaskStep]
816
+ dateRemindMe: Float
817
+ recurrence: [String]
810
818
  }`;
811
819
  exports.FindTaskInputQL = `
812
820
  input FindTaskInput {
package/model.ts CHANGED
@@ -846,7 +846,7 @@ export class Note extends Block {
846
846
 
847
847
  export const TaskFields = `${BlockFields}
848
848
  status: String!
849
- dueDate: Int!
849
+ dateDue: Int!
850
850
  originNoteId: String!
851
851
  snoozed: Boolean!
852
852
  steps: [TaskStep]
@@ -1509,9 +1509,26 @@ export interface ArchiveTagOutput {
1509
1509
  }
1510
1510
 
1511
1511
  export const UpdateTaskInputQL = `
1512
- input UpdateTaskInput {${TaskFields}
1512
+ input UpdateTaskInput {
1513
+ _id: String
1514
+ editor: EditorInput!
1515
+ status: String!
1516
+ dateDue: Float!
1517
+ snoozed: Boolean!
1518
+ steps: [TaskStep]
1519
+ dateRemindMe: Float
1520
+ recurrence: [String]
1513
1521
  }`;
1514
- export interface UpdateTaskInput extends Task {}
1522
+ export interface UpdateTaskInput {
1523
+ _id: string;
1524
+ editor: Editor;
1525
+ status: TaskStatus;
1526
+ dateDue: number;
1527
+ snoozed: boolean;
1528
+ steps: TaskStep[];
1529
+ dateRemindMe: number;
1530
+ recurrence: RecurrenceRFC[];
1531
+ }
1515
1532
 
1516
1533
  export const FindTaskInputQL = `
1517
1534
  input FindTaskInput {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.5.3",
4
+ "version": "3.5.5",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",
@@ -14,7 +14,6 @@
14
14
  "dev": "node model.js"
15
15
  },
16
16
  "dependencies": {
17
- "orderedmap": "^2.1.1",
18
17
  "prosemirror-model": "^1.19.4",
19
18
  "prosemirror-schema-basic": "^1.2.2",
20
19
  "prosemirror-schema-list": "^1.3.0",