{ "version": 3, "sources": ["../ui/app/mn.settings.sample.buckets.service.js"], "sourcesContent": ["/*\nCopyright 2021-Present Couchbase, Inc.\n\nUse of this software is governed by the Business Source License included in\nthe file licenses/BSL-Couchbase.txt. As of the Change Date specified in that\nfile, in accordance with the Business Source License, use of this software will\nbe governed by the Apache License, Version 2.0, included in the file\nlicenses/APL2.txt.\n*/\nimport {Injectable} from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {HttpErrorResponse} from '@angular/common/http';\nimport {map, switchMap, shareReplay} from 'rxjs/operators';\nimport {groupBy, prop} from 'ramda';\n\nimport {MnHttpRequest} from './mn.http.request.js';\nimport {MnBucketsService} from \"./mn.buckets.service.js\";\nimport {singletonGuard} from './mn.core.js';\n\nexport {MnSettingsSampleBucketsService}\n\nclass MnSettingsSampleBucketsService {\n static get annotations() { return [\n new Injectable()\n ]}\n\n static get parameters() { return [\n HttpClient,\n MnBucketsService\n ]}\n\n constructor(http, mnBucketsService) {\n singletonGuard(MnSettingsSampleBucketsService);\n this.http = http;\n this.stream = {};\n\n this.stream.getSampleBuckets =\n mnBucketsService.stream.bucketsUri\n .pipe(switchMap(this.getSampleBuckets.bind(this)),\n shareReplay({refCount: true, bufferSize: 1}));\n\n this.stream.sampleBucketsGroupByName = this.stream.getSampleBuckets\n .pipe(map(groupBy(prop(\"name\"))));\n\n this.stream.installSampleBuckets =\n new MnHttpRequest(this.installSampleBuckets.bind(this))\n .addSuccess()\n .addError(map(this.extractInstallSampleBucketsError));\n }\n\n getSampleBuckets() {\n return this.http.get('/sampleBuckets');\n }\n\n installSampleBuckets(selectedSamples) {\n return this.http.post('/sampleBuckets/install', selectedSamples);\n }\n\n extractInstallSampleBucketsError(errors) {\n return (errors instanceof HttpErrorResponse) ? [errors.error] : errors;\n }\n}\n"], "mappings": "2WAqBA,wCAAqC,WACxB,cAAc,CAAE,MAAO,CAChC,GAAI,uBAGK,aAAa,CAAE,MAAO,CAC/B,WACA,kBAGF,YAAY,KAAM,iBAAkB,CAClC,eAAe,gCACf,KAAK,KAAO,KACZ,KAAK,OAAS,GAEd,KAAK,OAAO,iBACV,iBAAiB,OAAO,WACvB,KAAK,UAAU,KAAK,iBAAiB,KAAK,OACrC,YAAY,CAAC,SAAU,GAAM,WAAY,KAEjD,KAAK,OAAO,yBAA2B,KAAK,OAAO,iBAChD,KAAK,IAAI,QAAQ,KAAK,WAEzB,KAAK,OAAO,qBACV,GAAI,eAAc,KAAK,qBAAqB,KAAK,OAChD,aACA,SAAS,IAAI,KAAK,mCAGvB,kBAAmB,CACjB,MAAO,MAAK,KAAK,IAAI,kBAGvB,qBAAqB,gBAAiB,CACpC,MAAO,MAAK,KAAK,KAAK,yBAA0B,iBAGlD,iCAAiC,OAAQ,CACvC,MAAQ,kBAAkB,mBAAqB,CAAC,OAAO,OAAS,SAtCpE", "names": [] }