@glissandoo/lib 1.16.7 → 1.16.8

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.
@@ -2,7 +2,7 @@ import { DocumentReference, DocumentSnapshot } from '@google-cloud/firestore';
2
2
  import { PlansGroup } from '../../helpers/plans';
3
3
  import { LanguagesTypes } from '../../lang';
4
4
  import GroupBasic from './basic';
5
- import { GroupData, GroupStatus, SocialNetwork } from './types';
5
+ import { GroupData, GroupStatus, SocialNetwork, GroupRepertoireTag } from './types';
6
6
  export default class Group extends GroupBasic<GroupData> {
7
7
  constructor(doc: DocumentSnapshot, lang?: LanguagesTypes);
8
8
  get owner(): DocumentReference;
@@ -61,9 +61,9 @@ export default class Group extends GroupBasic<GroupData> {
61
61
  id: string;
62
62
  })[];
63
63
  get firstAnswerAt(): FirebaseFirestore.Timestamp | null;
64
- get repertoireTags(): Record<string, import("./types").GroupRepertoireTag>;
65
- get repertoireTagsList(): (import("./types").GroupRepertoireTag & {
64
+ get repertoireTags(): Record<string, GroupRepertoireTag>;
65
+ get repertoireTagsList(): (GroupRepertoireTag & {
66
66
  id: string;
67
67
  })[];
68
- getRepertoireTagName(id: string): string | null;
68
+ getRepertoireTagNameTranslator(): (id: string, repertoireTags?: Record<string, GroupRepertoireTag>, lang?: LanguagesTypes) => string | null;
69
69
  }
@@ -168,11 +168,13 @@ class Group extends basic_1.default {
168
168
  get repertoireTagsList() {
169
169
  return utils_1.objToArray(this.repertoireTags);
170
170
  }
171
- getRepertoireTagName(id) {
172
- if (!(id in this.repertoireTags))
173
- return null;
174
- const tag = this.repertoireTags[id];
175
- return tag.default ? lang_1.getTranslation(tag.title, this.lang) : tag.title;
171
+ getRepertoireTagNameTranslator() {
172
+ return (id, repertoireTags = { ...this.repertoireTags }, lang = this.lang) => {
173
+ if (!(id in repertoireTags))
174
+ return null;
175
+ const tag = repertoireTags[id];
176
+ return tag.default ? lang_1.getTranslation(tag.title, lang) : tag.title;
177
+ };
176
178
  }
177
179
  }
178
180
  exports.default = Group;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.16.7",
3
+ "version": "1.16.8",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -12,6 +12,7 @@
12
12
  "format:single": "prettier --write",
13
13
  "lint": "eslint --ext .ts ./src",
14
14
  "prepare": "rm -rf ./lib && npm run build",
15
+ "set-husky": "node scripts/setHusky.js",
15
16
  "preversion": "npm run lint",
16
17
  "version": "npm run format && git add -A src && ./publish.sh",
17
18
  "postversion": "git push && git push --tags",
@@ -1,78 +0,0 @@
1
- import { InstrumentId } from "../instruments";
2
- export declare const SectionId: {
3
- All: "all";
4
- Accordion: InstrumentId.Accordion;
5
- Bandurria: InstrumentId.Bandurria;
6
- Bagpipes: InstrumentId.Bagpipes;
7
- Banjo: InstrumentId.Banjo;
8
- Baritone: InstrumentId.Baritone;
9
- Bass: InstrumentId.Bass;
10
- BassChoir: InstrumentId.BassChoir;
11
- BassDrum: InstrumentId.BassDrum;
12
- Bassoon: InstrumentId.Bassoon;
13
- BassoonContra: InstrumentId.BassoonContra;
14
- Cajon: InstrumentId.Cajon;
15
- Castanets: InstrumentId.Castanets;
16
- Cello: InstrumentId.Cello;
17
- Choir: InstrumentId.Choir;
18
- Clarinet: InstrumentId.Clarinet;
19
- ClarinetAlto: InstrumentId.ClarinetAlto;
20
- ClarinetBass: InstrumentId.ClarinetBass;
21
- ClarinetContrabass: InstrumentId.ClarinetContrabass;
22
- ClarinetLittle: InstrumentId.ClarinetLittle;
23
- ContraAlto: InstrumentId.ContraAlto;
24
- Cornet: InstrumentId.Cornet;
25
- CounterTenor: InstrumentId.CounterTenor;
26
- Cymbals: InstrumentId.Cymbals;
27
- DJ: InstrumentId.DJ;
28
- DoubleBass: InstrumentId.DoubleBass;
29
- DrumSet: InstrumentId.DrumSet;
30
- Dulzaina: InstrumentId.Dulzaina;
31
- DulzainaFa: InstrumentId.DulzainaFa;
32
- ElectricGuitar: InstrumentId.ElectricGuitar;
33
- EnglishHorn: InstrumentId.EnglishHorn;
34
- Euphonium: InstrumentId.Euphonium;
35
- FlugeHorn: InstrumentId.FlugeHorn;
36
- Flute: InstrumentId.Flute;
37
- FluteLow: InstrumentId.FluteLow;
38
- FrenchHorn: InstrumentId.FrenchHorn;
39
- Guitar: InstrumentId.Guitar;
40
- Harmonica: InstrumentId.Harmonica;
41
- Harp: InstrumentId.Harp;
42
- Keyboard: InstrumentId.Keyboard;
43
- Lute: InstrumentId.Lute;
44
- Mallets: InstrumentId.Mallets;
45
- Mandoline: InstrumentId.Mandoline;
46
- MezzoSoprano: InstrumentId.MezzoSoprano;
47
- MusicConductor: InstrumentId.MusicConductor;
48
- Oboe: InstrumentId.Oboe;
49
- Percussion: InstrumentId.Percussion;
50
- Piano: InstrumentId.Piano;
51
- Piccolo: InstrumentId.Piccolo;
52
- SaxAlto: InstrumentId.SaxAlto;
53
- SaxBaritone: InstrumentId.SaxBaritone;
54
- SaxLow: InstrumentId.SaxLow;
55
- SaxSoprano: InstrumentId.SaxSoprano;
56
- SaxTenor: InstrumentId.SaxTenor;
57
- Silbote: InstrumentId.Silbote;
58
- Singer: InstrumentId.Singer;
59
- SnareDrum: InstrumentId.SnareDrum;
60
- Soprano: InstrumentId.Soprano;
61
- Tabal: InstrumentId.Tabal;
62
- Tarota: InstrumentId.Tarota;
63
- Tenor: InstrumentId.Tenor;
64
- Timpani: InstrumentId.Timpani;
65
- Trombone: InstrumentId.Trombone;
66
- TromboneHigh: InstrumentId.TromboneHigh;
67
- TromboneLow: InstrumentId.TromboneLow;
68
- Trumpet: InstrumentId.Trumpet;
69
- TrumpetLow: InstrumentId.TrumpetLow;
70
- TrumpetPiccolo: InstrumentId.TrumpetPiccolo;
71
- Tuba: InstrumentId.Tuba;
72
- TubaWagnerian: InstrumentId.TubaWagnerian;
73
- Txistu: InstrumentId.Txistu;
74
- Ukelele: InstrumentId.Ukelele;
75
- Viola: InstrumentId.Viola;
76
- Violin: InstrumentId.Violin;
77
- };
78
- export declare type SectionIdType = typeof SectionId[keyof typeof SectionId];
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SectionId = void 0;
4
- const instruments_1 = require("../instruments");
5
- exports.SectionId = {
6
- ...instruments_1.InstrumentId,
7
- All: "all",
8
- };
@@ -1,8 +0,0 @@
1
- import { SectionIdType } from '../../helpers/fileSections';
2
- import { LanguagesTypes } from '../../lang';
3
- export default class Section {
4
- id: SectionIdType;
5
- private lang;
6
- constructor(id: SectionIdType, lang?: LanguagesTypes);
7
- get name(): string;
8
- }
@@ -1,19 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const lang_1 = require("../../lang");
7
- const Instrument_1 = __importDefault(require("../Instrument"));
8
- class Section {
9
- constructor(id, lang = lang_1.defaultLocale) {
10
- this.id = id;
11
- this.lang = lang;
12
- }
13
- get name() {
14
- return ((this.id === 'all'
15
- ? lang_1.getTranslation(`sections.all`, this.lang)
16
- : new Instrument_1.default(this.id).name) || this.id);
17
- }
18
- }
19
- exports.default = Section;
@@ -1,8 +0,0 @@
1
- import { SectionIdType } from '../../helpers/sections';
2
- import { LanguagesTypes } from '../../lang';
3
- export default class Section {
4
- id: SectionIdType;
5
- private lang;
6
- constructor(id: SectionIdType, lang?: LanguagesTypes);
7
- get name(): string;
8
- }
@@ -1,14 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const lang_1 = require("../../lang");
4
- class Section {
5
- constructor(id, lang = lang_1.defaultLocale) {
6
- this.id = id;
7
- this.lang = lang;
8
- }
9
- get name() {
10
- const translation = lang_1.getTranslation(this.id === 'all' ? `sections.all` : `instruments.${this.id}`, this.lang);
11
- return translation || this.id;
12
- }
13
- }
14
- exports.default = Section;