@glissandoo/lib 1.16.5 → 1.16.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.
@@ -20,11 +20,13 @@ export default class GroupRepertory extends Theme<GroupRepertoryData> {
20
20
  get fileList(): (import("./types").GroupRepertoireFile & {
21
21
  id: string;
22
22
  })[];
23
- get filesPath(): Record<FileSectionId, import("./types").GroupRepertoireFilePathItem[]>;
24
- get filesPathList(): (import("./types").GroupRepertoireFilePathItem[] & {
25
- id: string;
26
- })[];
27
- get sections(): FileSectionId[];
23
+ get sectionIds(): FileSectionId[];
24
+ get filesPath(): Partial<Record<FileSectionId, import("./types").GroupRepertoireFilePathItem[]>>;
25
+ get filesPathList(): {
26
+ path: string;
27
+ tag: string | null;
28
+ sectionId: FileSectionId;
29
+ }[];
28
30
  /** @deprecated use sections */
29
31
  get mainFilePath(): string | null;
30
32
  get visibility(): GroupRepertoireVisibility;
@@ -39,14 +39,16 @@ class GroupRepertory extends basic_1.default {
39
39
  get fileList() {
40
40
  return utils_1.objToArray(this.files);
41
41
  }
42
+ get sectionIds() {
43
+ return lodash_1.uniq(this.fileList.map((file) => Object.keys(file.sections)).flat());
44
+ }
42
45
  get filesPath() {
43
46
  return this.data.filesPath || {};
44
47
  }
45
48
  get filesPathList() {
46
- return utils_1.objToArray(this.filesPath);
47
- }
48
- get sections() {
49
- return lodash_1.uniq(lodash_1.flatten(this.fileList.map((file) => Object.keys(file.sections))));
49
+ return Object.entries(this.filesPath)
50
+ .map(([sectionId, files]) => (files || []).map((file) => ({ sectionId: sectionId, ...file })))
51
+ .flat();
50
52
  }
51
53
  /** @deprecated use sections */
52
54
  get mainFilePath() {
@@ -68,7 +68,7 @@ export interface GroupRepertoryData extends ThemeBasicData {
68
68
  /** @deprecated */
69
69
  identifyAt: Timestamp | null;
70
70
  files: Record<string, GroupRepertoireFile>;
71
- filesPath: Record<FileSectionId, GroupRepertoireFilePathItem[]>;
71
+ filesPath: Partial<Record<FileSectionId, GroupRepertoireFilePathItem[]>>;
72
72
  votes: Record<string, number>;
73
73
  thumbnailURL: string | null;
74
74
  editedAt: Timestamp | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.16.5",
3
+ "version": "1.16.6",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -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;