@corva/ui 3.13.0-9 → 3.13.0
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/cjs-bundle/clients/subscriptions.js +1 -1
- package/cjs-bundle/clients/subscriptions.js.map +1 -1
- package/cjs-bundle/components/Notifications/Toast.js +1 -1
- package/cjs-bundle/components/Notifications/Toast.styles.js +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/components/OffsetWellsTable/OffsetWellsTableRow.js +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/components/OffsetWellsTable/OffsetWellsTableRow.js.map +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/constants.js +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/constants.js.map +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/effects/useAdvancedWells.js +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/effects/useAdvancedWells.js.map +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/effects/useSortedWells.js +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/effects/useSortedWells.js.map +1 -1
- package/cjs-bundle/components/OffsetWellPickerV4/utils/apiCalls.js +1 -1
- package/cjs-bundle/componentsV2/AppHeader/V3/AppTitle/AppTitle.scss.js +1 -1
- package/cjs-bundle/componentsV2/AppHeader/V3/SettingsPopover/SettingsPopover.js +1 -1
- package/cjs-bundle/constants/completion.js +1 -1
- package/cjs-bundle/constants/completion.js.map +1 -1
- package/cjs-bundle/utils/metrics/metricsConfig.js +1 -1
- package/cjs-bundle/utils/metrics/metricsConfig.js.map +1 -1
- package/clients/subscriptions.d.ts.map +1 -1
- package/clients/subscriptions.js +1 -1
- package/clients/subscriptions.js.map +1 -1
- package/components/Notifications/Notifications.stories.d.ts.map +1 -1
- package/components/Notifications/Toast.js +1 -1
- package/components/Notifications/Toast.styles.d.ts.map +1 -1
- package/components/Notifications/Toast.styles.js +1 -1
- package/components/OffsetWellPickerV4/components/OffsetWellsTable/OffsetWellsTableRow.js +1 -1
- package/components/OffsetWellPickerV4/components/OffsetWellsTable/OffsetWellsTableRow.js.map +1 -1
- package/components/OffsetWellPickerV4/constants.d.ts +3 -61
- package/components/OffsetWellPickerV4/constants.d.ts.map +1 -1
- package/components/OffsetWellPickerV4/constants.js +1 -1
- package/components/OffsetWellPickerV4/constants.js.map +1 -1
- package/components/OffsetWellPickerV4/effects/useAdvancedWells.d.ts.map +1 -1
- package/components/OffsetWellPickerV4/effects/useAdvancedWells.js +1 -1
- package/components/OffsetWellPickerV4/effects/useAdvancedWells.js.map +1 -1
- package/components/OffsetWellPickerV4/effects/useSortedWells.d.ts.map +1 -1
- package/components/OffsetWellPickerV4/effects/useSortedWells.js +1 -1
- package/components/OffsetWellPickerV4/effects/useSortedWells.js.map +1 -1
- package/components/OffsetWellPickerV4/utils/apiCalls.d.ts.map +1 -1
- package/components/OffsetWellPickerV4/utils/apiCalls.js +1 -1
- package/components/OffsetWellPickerV4/utils/apiCalls.js.map +1 -1
- package/componentsV2/AppHeader/V3/AppTitle/AppTitle.scss.js +1 -1
- package/componentsV2/AppHeader/V3/SettingsPopover/SettingsPopover.d.ts.map +1 -1
- package/componentsV2/AppHeader/V3/SettingsPopover/SettingsPopover.js +1 -1
- package/constants/completion.d.ts.map +1 -1
- package/constants/completion.js +1 -1
- package/constants/completion.js.map +1 -1
- package/package.json +1 -1
- package/utils/metrics/metricsConfig.d.ts +12 -0
- package/utils/metrics/metricsConfig.d.ts.map +1 -1
- package/utils/metrics/metricsConfig.js +1 -1
- package/utils/metrics/metricsConfig.js.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useSortedWells.js","sources":["../../../../src/components/OffsetWellPickerV4/effects/useSortedWells.js"],"sourcesContent":["import { useState, useMemo, useEffect } from 'react';\nimport { isEmpty } from 'lodash';\nimport { SortDirection } from 'react-virtualized';\n\nimport { ColumnType } from '../constants';\n\nconst sortFunction = (array, sortBy, sortDirection) => {\n const newArray = [...array];\n const isLastActiveSort = sortBy === ColumnType.lastActive;\n newArray.sort((a, b) => {\n
|
|
1
|
+
{"version":3,"file":"useSortedWells.js","sources":["../../../../src/components/OffsetWellPickerV4/effects/useSortedWells.js"],"sourcesContent":["import { useState, useMemo, useEffect } from 'react';\nimport { isEmpty } from 'lodash';\nimport { SortDirection } from 'react-virtualized';\n\nimport { ColumnType } from '../constants';\n\nconst sortFunction = (array, sortBy, sortDirection) => {\n const newArray = [...array];\n const isLastActiveSort = sortBy === ColumnType.lastActive;\n newArray.sort((a, b) => {\n const aVal = a[sortBy];\n const bVal = b[sortBy];\n\n const isANull = !aVal || (typeof aVal === 'string' && aVal.toLowerCase() === 'null');\n const isBNull = !bVal || (typeof bVal === 'string' && bVal.toLowerCase() === 'null');\n\n if (isANull && (aVal !== 0 || isLastActiveSort)) return 1;\n if (isBNull && (bVal !== 0 || isLastActiveSort)) return -1;\n\n if (typeof aVal === 'string' && typeof bVal === 'string') {\n return sortDirection === SortDirection.ASC\n ? aVal.localeCompare(bVal)\n : bVal.localeCompare(aVal);\n }\n\n if (sortDirection === SortDirection.ASC) return aVal >= bVal ? 1 : -1;\n return bVal >= aVal ? 1 : -1;\n });\n return newArray;\n};\n\nexport function useSortedWells(subjectWell, expandedWells, selectedWells, setIsTableLoading) {\n const [sortBy, setSortBy] = useState(ColumnType.distance);\n const [sortDirection, setSortDirection] = useState(SortDirection.ASC);\n\n const sortedWells = useMemo(() => {\n if (!expandedWells) {\n return null;\n }\n\n const topWellIds = selectedWells.map(({ id }) => id);\n const restSelectedWells = selectedWells.filter(well => well.id !== subjectWell?.id);\n const sortedSelectedWells = sortFunction(restSelectedWells, sortBy, sortDirection);\n\n const restWells = expandedWells.filter(well => !topWellIds.includes(well.id));\n const sortedWells = sortFunction(restWells, sortBy, sortDirection);\n\n const combinedWells = (!isEmpty(subjectWell) ? [subjectWell] : [])\n .concat(sortedSelectedWells)\n .concat(sortedWells);\n\n return combinedWells.map(well => ({\n ...well,\n checked: selectedWells.some(item => item.id === well.id),\n }));\n }, [expandedWells, sortBy, sortDirection, subjectWell, selectedWells]);\n\n useEffect(() => {\n if (sortedWells !== null) {\n setIsTableLoading(false);\n }\n }, [sortedWells, setIsTableLoading]);\n\n return [sortBy, setSortBy, sortDirection, setSortDirection, sortedWells];\n}\n"],"names":["sortFunction","array","sortBy","sortDirection","newArray","isLastActiveSort","ColumnType","lastActive","sort","a","b","aVal","bVal","isANull","toLowerCase","isBNull","SortDirection","ASC","localeCompare","useSortedWells","subjectWell","expandedWells","selectedWells","setIsTableLoading","_useState","useState","distance","_useState2","_slicedToArray","setSortBy","_useState3","_useState4","setSortDirection","sortedWells","useMemo","topWellIds","map","_ref","id","restSelectedWells","filter","well","sortedSelectedWells","restWells","includes","isEmpty","concat","_objectSpread","checked","some","item","useEffect"],"mappings":"65BAMA,IAAMA,EAAe,SAACC,EAAOC,EAAQC,GACnC,IAAMC,EAAeH,EAAAA,GACfI,EAAmBH,IAAWI,EAAWC,WAoB/C,OAnBAH,EAASI,MAAK,SAACC,EAAGC,GAChB,IAAMC,EAAOF,EAAEP,GACTU,EAAOF,EAAER,GAETW,GAAWF,GAAyB,iBAATA,GAA4C,SAAvBA,EAAKG,cACrDC,GAAWH,GAAyB,iBAATA,GAA4C,SAAvBA,EAAKE,cAE3D,OAAID,IAAqB,IAATF,GAAcN,GAA0B,EACpDU,IAAqB,IAATH,GAAcP,IAA2B,EAErC,iBAATM,GAAqC,iBAATC,EAC9BT,IAAkBa,EAAcC,IACnCN,EAAKO,cAAcN,GACnBA,EAAKM,cAAcP,GAGrBR,IAAkBa,EAAcC,IAAYN,GAAQC,EAAO,GAAK,EAC7DA,GAAQD,EAAO,GAAK,CAC7B,IACOP,CACT,EAEO,SAASe,EAAeC,EAAaC,EAAeC,EAAeC,GACxE,IAAAC,EAA4BC,EAASnB,EAAWoB,UAASC,EAAAC,EAAAJ,EAAA,GAAlDtB,EAAMyB,EAAA,GAAEE,EAASF,EAAA,GACxBG,EAA0CL,EAAST,EAAcC,KAAIc,EAAAH,EAAAE,EAAA,GAA9D3B,EAAa4B,EAAA,GAAEC,EAAgBD,EAAA,GAEhCE,EAAcC,GAAQ,WAC1B,IAAKb,EACH,OAAO,KAGT,IAAMc,EAAab,EAAcc,KAAI,SAAAC,GAAK,SAAFC,MAClCC,EAAoBjB,EAAckB,QAAO,SAAAC,GAAI,OAAIA,EAAKH,MAAOlB,aAAW,EAAXA,EAAakB,OAC1EI,EAAsB1C,EAAauC,EAAmBrC,EAAQC,GAE9DwC,EAAYtB,EAAcmB,QAAO,SAAAC,GAAI,OAAKN,EAAWS,SAASH,EAAKH,OACnEL,EAAcjC,EAAa2C,EAAWzC,EAAQC,GAMpD,OAJwB0C,EAAQzB,GAA+B,GAAhB,CAACA,IAC7C0B,OAAOJ,GACPI,OAAOb,GAEWG,KAAI,SAAAK,GAAI,OAAAM,EAAAA,EAAA,CAAA,EACxBN,GAAI,CAAA,EAAA,CACPO,QAAS1B,EAAc2B,MAAK,SAAAC,GAAI,OAAIA,EAAKZ,KAAOG,EAAKH,EAAE,KAAC,GAE5D,GAAG,CAACjB,EAAenB,EAAQC,EAAeiB,EAAaE,IAQvD,OANA6B,GAAU,WACY,OAAhBlB,GACFV,GAAkB,EAEtB,GAAG,CAACU,EAAaV,IAEV,CAACrB,EAAQ2B,EAAW1B,EAAe6B,EAAkBC,EAC9D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apiCalls.d.ts","sourceRoot":"","sources":["../../../../src/components/OffsetWellPickerV4/utils/apiCalls.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAO/B,wBAAsB,cAAc,mBASnC;AAED,wBAAsB,eAAe,CAAC,WAAW,KAAA,EAAE,OAAO,KAAA,gBAqBzD;AAED,wBAAsB,UAAU,CAC9B,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,EAC/C,WAAW,EAAE,MAAM,OAAO,GACzB,OAAO,CAAC,IAAI,CAAC,CAaf;AAiED,wBAAsB,yBAAyB,CAAC,OAAO,KAAA,gBAKtD;AAED,wBAAsB,iBAAiB,CAAC,OAAO,KAAA,gBAS9C;AAED,wBAAsB,iBAAiB,CAAC,SAAS,KAAA,gBAShD;AAID,wBAAsB,gBAAgB,CAAC,SAAS,KAAA,EAAE,OAAO,KAAA,EAAE,WAAW,KAAA,
|
|
1
|
+
{"version":3,"file":"apiCalls.d.ts","sourceRoot":"","sources":["../../../../src/components/OffsetWellPickerV4/utils/apiCalls.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAO/B,wBAAsB,cAAc,mBASnC;AAED,wBAAsB,eAAe,CAAC,WAAW,KAAA,EAAE,OAAO,KAAA,gBAqBzD;AAED,wBAAsB,UAAU,CAC9B,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,EAC/C,WAAW,EAAE,MAAM,OAAO,GACzB,OAAO,CAAC,IAAI,CAAC,CAaf;AAiED,wBAAsB,yBAAyB,CAAC,OAAO,KAAA,gBAKtD;AAED,wBAAsB,iBAAiB,CAAC,OAAO,KAAA,gBAS9C;AAED,wBAAsB,iBAAiB,CAAC,SAAS,KAAA,gBAShD;AAID,wBAAsB,gBAAgB,CAAC,SAAS,KAAA,EAAE,OAAO,KAAA,EAAE,WAAW,KAAA,kBAqFrE;AAiED,wBAAsB,cAAc,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,IAAI,QAAI,EAAE,OAAO,KAAA,gBAgB3E"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{__awaiter as t,__generator as e,__assign as
|
|
1
|
+
import{__awaiter as t,__generator as e,__spreadArray as s,__assign as r}from'./../../../ext-esm/tslib/tslib.es6.js';import a from"jsona";import{range as n,sortBy as i,get as u,concat as o}from"lodash";import{ROWS_PER_PAGE as l}from"../constants.js";import{getCompanies as c,getAppStorage as d,getCompanyGoals as p,getAssets as f,getWells as m,getRigs as _}from"../../../clients/jsonApi/index.js";import{postTaskAndWaitResult as h}from"../../../clients/jsonApi/postTaskAndWaitResult.js";var v=new a;function b(){return t(this,void 0,void 0,(function(){var t,s;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,c()];case 1:return t=e.sent(),[3,3];case 2:return s=e.sent(),console.error(s),[3,3];case 3:return[2,t?i(t,["name"]):[]]}}))}))}function g(s,r){return t(this,void 0,void 0,(function(){var t,a,n;return e(this,(function(e){switch(e.label){case 0:t=null,a={provider:"xto",app_key:"xto.idas_offset_performance_distance_be_od",asset_id:r,app_version:16,properties:{asset_id:r,user_id:s.id,user_name:"".concat(s.first_name," ").concat(s.last_name)}},e.label=1;case 1:return e.trys.push([1,3,,4]),[4,h(a)];case 2:return t=e.sent(),[3,4];case 3:return n=e.sent(),console.error(n),[3,4];case 4:return[2,t]}}))}))}function y(s,r,a){return t(this,void 0,void 0,(function(){var t,n;return e(this,(function(e){switch(e.label){case 0:t=1,e.label=1;case 1:return t<=20?[4,w(s,t)]:[3,4];case 2:if(n=e.sent(),a())return[2];if(n.length<1e3)return r(n,!0),[2];r(n,!1),e.label=3;case 3:return t++,[3,1];case 4:return[2]}}))}))}function w(s){return t(this,arguments,void 0,(function(t,s){var r,a;return void 0===s&&(s=1),e(this,(function(e){switch(e.label){case 0:r=null,e.label=1;case 1:return e.trys.push([1,3,,4]),[4,f({types:["well"],company_id:t?+t:void 0,fields:["asset.name","asset.parent_asset_id","asset.parent_asset_name","asset.status","asset.stats","asset.target_formation","asset.string_design","asset.root_asset_name","asset.basin","asset.county","asset.area","asset.visibility","asset.top_hole","asset.settings","well.settings","asset.last_active_at"],page:s,per_page:1e3,sort:"name"})];case 2:return r=e.sent(),[3,4];case 3:return a=e.sent(),console.error(a),[3,4];case 4:return[2,r?r.data.map((function(t){return{id:Number(t.id),name:u(t,"attributes.name"),status:u(t,"attributes.status"),rigId:u(t,"attributes.parent_asset_id")||"Null",rigName:u(t,"attributes.parent_asset_name")||"Null",formation:u(t,"attributes.target_formation")||"Null",stringDesign:u(t,"attributes.string_design")||"Null",programName:u(t,"attributes.root_asset_name")||"Null",basin:u(t,"attributes.basin")||"Null",county:u(t,"attributes.county")||"Null",area:u(t,"attributes.area")||"Null",visibility:u(t,"attributes.visibility"),topHole:u(t,"attributes.top_hole"),rigReleaseDate:u(t,"attributes.stats.well_end"),totalDepth:u(t,"attributes.stats.total_depth"),is_usable:!0,apiNumber:u(t,"attributes.settings.api_number","-"),lastActive:new Date(u(t,"attributes.last_active_at")).getTime()/1e3}})).filter((function(t){return t.visibility.includes("visible")})):[]]}}))}))}function N(s){return t(this,void 0,void 0,(function(){return e(this,(function(t){return[2,d("corva","data.offset-wells.bic",s,{limit:1,sort:"{timestamp: -1}"})]}))}))}function $(s){return t(this,void 0,void 0,(function(){var t,r;return e(this,(function(e){switch(e.label){case 0:t=null,e.label=1;case 1:return e.trys.push([1,3,,4]),[4,d("corva","data.offset_wells",s,{limit:1})];case 2:return t=e.sent(),[3,4];case 3:return r=e.sent(),console.error(r),[3,4];case 4:return[2,t||[]]}}))}))}function j(s){return t(this,void 0,void 0,(function(){var t,r;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,p(s)];case 1:return t=e.sent(),[3,3];case 2:return r=e.sent(),console.error(r),[3,3];case 3:return[2,t&&u(t,"company_goals")||{}]}}))}))}function A(r,a,i){return t(this,void 0,void 0,(function(){var u,o,l,c=this;return e(this,(function(p){switch(p.label){case 0:return 0===a.length?[2,[]]:(u=Math.floor(a.length/200)+1,[4,Promise.all(n(u).map((function(n,u){return t(c,void 0,void 0,(function(){var t,n,o,l,c,p,f,m,_,h,v,b,g,y,w;return e(this,(function(e){switch(e.label){case 0:if(t=a.slice(200*u,200*(u+1)),n=i.includes("mud_type"),o=i.filter((function(t){return"mud_type"!==t})),l=null,!(o.length>0))return[3,4];c={company_id:r,"data.asset_id":{$in:t},"data.key":{$in:o},"data.type":"asset"},p={_id:0,"data.key":1,"data.value":1,asset_id:"$data.asset_id"},f={aggregate:JSON.stringify([{$match:c},{$project:p}])},e.label=1;case 1:return e.trys.push([1,3,,4]),[4,d("corva","metrics",null,f)];case 2:return l=e.sent(),[3,4];case 3:return m=e.sent(),console.error(m),[3,4];case 4:if(_=[],!n)return[3,8];h={company_id:r,asset_id:{$in:t}},v={timestamp:-1},b={_id:"$asset_id",doc:{$first:"$$ROOT"}},g={_id:0,"data.key":{$literal:"mud_type"},"data.value":"$doc.data.mud_type",asset_id:"$doc.asset_id"},y={aggregate:JSON.stringify([{$match:h},{$sort:v},{$group:b},{$project:g}])},e.label=5;case 5:return e.trys.push([5,7,,8]),[4,d("corva","data.mud",null,y)];case 6:return _=e.sent(),[3,8];case 7:return w=e.sent(),console.error(w),[3,8];case 8:return[2,s(s([],l||[],!0),_||[],!0)]}}))}))})))]);case 1:return o=p.sent(),l=[],o.forEach((function(t){return l.push.apply(l,t)})),[2,l]}}))}))}function k(s,r,a){return t(this,void 0,void 0,(function(){var t,n,i;return e(this,(function(e){switch(e.label){case 0:t={company:a,search:s,per_page:l,page:r,fields:["well.name","well.asset_id","well.settings","well.status","well.rigName","well.visibility"],sort:"name"},e.label=1;case 1:return e.trys.push([1,3,,4]),[4,m(t)];case 2:return n=e.sent(),[3,4];case 3:return i=e.sent(),console.error(i),n=[],[3,4];case 4:return[2,v.deserialize(n).map((function(t){return{redirectAssetId:t.asset_id,apiNumber:t.settings.api_number,name:t.name,asset_id:t.asset_id,status:t.status,rigName:t.rigName,visibility:t.visibility,type:"well"}}))]}}))}))}function x(s,a,n){return t(this,void 0,void 0,(function(){var t,i,o;return e(this,(function(e){switch(e.label){case 0:t={company:n,search:s,per_page:l,page:a,fields:["rig.name","rig.active_well","rig.asset_id"],sort:"name"},e.label=1;case 1:return e.trys.push([1,3,,4]),[4,_(t)];case 2:return i=e.sent(),[3,4];case 3:return o=e.sent(),console.error(o),i=[],[3,4];case 4:return[2,v.deserialize(i).map((function(t){return r({redirectAssetId:u(t,["active_well","asset_id"])||null},t)}))]}}))}))}function D(s,r){return t(this,arguments,void 0,(function(t,s,r,a){var n;return void 0===r&&(r=1),e(this,(function(e){switch(e.label){case 0:return"well"!==s?[3,2]:[4,k(t,r,a)];case 1:case 3:return[2,e.sent()];case 2:return"rig"!==s?[3,4]:[4,x(t,r,a)];case 4:return[4,Promise.all([k(t,r,a),x(t,r,a)])];case 5:return n=e.sent(),[2,o.apply(void 0,n)]}}))}))}export{D as fetchAllAssets,b as fetchCompanies,j as fetchCompanyGoals,A as fetchMetricsData,N as fetchOffsetWellSelections,$ as fetchWellhubWells,y as fetchWells,g as resyncIdasWells};
|
|
2
2
|
//# sourceMappingURL=apiCalls.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,4EAA4E,uCAA0C;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import e from'./../../../../ext-esm/style-inject/dist/style-inject.es.js';var t={spacing:"8",gap:"16px",titleMinWidth:"90px",root:"AppTitle_root__2z-8W",title:"AppTitle_title__-OfhC",titleText:"AppTitle_titleText__miwjo",withDq:"AppTitle_withDq__8ZfD6",titleChevron:"AppTitle_titleChevron__ZjfXd",titleChevronOpen:"AppTitle_titleChevronOpen__mmQn-",dqBadge:"AppTitle_dqBadge__miNBd",menuRoot:"AppTitle_menuRoot__An9Ta",menuHeader:"AppTitle_menuHeader__jJGvl",appIcon:"AppTitle_appIcon__hojKJ",menuHeaderText:"AppTitle_menuHeaderText__9Fr3w",divider:"AppTitle_divider__58c-O",assetMenuItem:"AppTitle_assetMenuItem__aTqr-",accordionTitle:"AppTitle_accordionTitle__-cs1z",accordionIcon:"AppTitle_accordionIcon__1rKbM",removeAppItem:"AppTitle_removeAppItem__s10Cz",footer:"AppTitle_footer__O5bKk",footerDqBadge:"AppTitle_footerDqBadge__ptC05"};e('.AppTitle_root__2z-8W{flex:1 0 90px;margin-right:auto;min-width:90px;overflow:hidden;position:relative}.AppTitle_title__-OfhC{max-width:100%;overflow:hidden}.AppTitle_titleText__miwjo{color:var(--palette-primary-text-1);font-size:18px;letter-spacing:normal;line-height:24px;text-transform:none}.AppTitle_withDq__8ZfD6{padding-left:20px}.AppTitle_titleChevron__ZjfXd{margin-right:-4px;transition:opacity .15s cubic-bezier(.4,0,.2,1),transform .15s cubic-bezier(.4,0,.2,1)}.AppTitle_titleChevronOpen__mmQn-{opacity:1;transform:rotate(180deg)}.AppTitle_dqBadge__miNBd{left:0;position:absolute;top:50%;transform:translateY(-50%);z-index:1}.AppTitle_menuRoot__An9Ta{--corvaui-background:var(--palette-background-b-6);background-color:var(--palette-background-b-6)!important;width:296px}.AppTitle_menuHeader__jJGvl{cursor:pointer;display:flex;flex-flow:row nowrap;gap:8px;margin:-8px -16px 0;padding:16px}.AppTitle_appIcon__hojKJ{flex-shrink:0}.AppTitle_menuHeaderText__9Fr3w{display:flex;flex-flow:column nowrap;gap:4px;overflow:hidden}.AppTitle_divider__58c-O{border-bottom:1px solid var(--palette-background-b-4);margin:0 -16px}.AppTitle_assetMenuItem__aTqr-{cursor:auto!important}.AppTitle_accordionTitle__-cs1z{align-items:center;display:flex;flex-flow:row nowrap;min-height:30px}.AppTitle_accordionTitle__-cs1z:after{content:"";cursor:pointer;inset:-12px -16px;position:absolute;z-index:1}.AppTitle_accordionIcon__1rKbM{display:inline-block;margin-right:
|
|
1
|
+
import e from'./../../../../ext-esm/style-inject/dist/style-inject.es.js';var t={spacing:"8",gap:"16px",titleMinWidth:"90px",root:"AppTitle_root__2z-8W",title:"AppTitle_title__-OfhC",titleText:"AppTitle_titleText__miwjo",withDq:"AppTitle_withDq__8ZfD6",titleChevron:"AppTitle_titleChevron__ZjfXd",titleChevronOpen:"AppTitle_titleChevronOpen__mmQn-",dqBadge:"AppTitle_dqBadge__miNBd",menuRoot:"AppTitle_menuRoot__An9Ta",menuHeader:"AppTitle_menuHeader__jJGvl",appIcon:"AppTitle_appIcon__hojKJ",menuHeaderText:"AppTitle_menuHeaderText__9Fr3w",divider:"AppTitle_divider__58c-O",assetMenuItem:"AppTitle_assetMenuItem__aTqr-",accordionTitle:"AppTitle_accordionTitle__-cs1z",accordionIcon:"AppTitle_accordionIcon__1rKbM",removeAppItem:"AppTitle_removeAppItem__s10Cz",footer:"AppTitle_footer__O5bKk",footerDqBadge:"AppTitle_footerDqBadge__ptC05"};e('.AppTitle_root__2z-8W{flex:1 0 90px;margin-right:auto;min-width:90px;overflow:hidden;position:relative}.AppTitle_title__-OfhC{max-width:100%;overflow:hidden}.AppTitle_titleText__miwjo{color:var(--palette-primary-text-1);font-size:18px;letter-spacing:normal;line-height:24px;text-transform:none}.AppTitle_withDq__8ZfD6{padding-left:20px}.AppTitle_titleChevron__ZjfXd{margin-right:-4px;transition:opacity .15s cubic-bezier(.4,0,.2,1),transform .15s cubic-bezier(.4,0,.2,1)}.AppTitle_titleChevronOpen__mmQn-{opacity:1;transform:rotate(180deg)}.AppTitle_dqBadge__miNBd{left:0;position:absolute;top:50%;transform:translateY(-50%);z-index:1}.AppTitle_menuRoot__An9Ta{--corvaui-background:var(--palette-background-b-6);background-color:var(--palette-background-b-6)!important;width:296px}.AppTitle_menuHeader__jJGvl{cursor:pointer;display:flex;flex-flow:row nowrap;gap:8px;margin:-8px -16px 0;padding:16px}.AppTitle_appIcon__hojKJ{flex-shrink:0}.AppTitle_menuHeaderText__9Fr3w{display:flex;flex-flow:column nowrap;gap:4px;overflow:hidden}.AppTitle_divider__58c-O{border-bottom:1px solid var(--palette-background-b-4);margin:0 -16px}.AppTitle_assetMenuItem__aTqr-{cursor:auto!important}.AppTitle_accordionTitle__-cs1z{align-items:center;display:flex;flex-flow:row nowrap;min-height:30px}.AppTitle_accordionTitle__-cs1z:after{content:"";cursor:pointer;inset:-12px -16px;position:absolute;z-index:1}.AppTitle_accordionIcon__1rKbM{display:inline-block;margin-right:16px;vertical-align:middle}.AppTitle_removeAppItem__s10Cz{color:var(--palette-error-main)!important}.AppTitle_footer__O5bKk{padding-top:8px}.AppTitle_footerDqBadge__ptC05{display:inline-block;margin-right:8px;vertical-align:middle}');export{t as default};
|
|
2
2
|
//# sourceMappingURL=AppTitle.scss.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SettingsPopover.d.ts","sourceRoot":"","sources":["../../../../../src/componentsV2/AppHeader/V3/SettingsPopover/SettingsPopover.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAiB,SAAS,EAAgC,MAAM,OAAO,CAAC;AAe/E,MAAM,MAAM,oBAAoB,GAAG;IACjC,WAAW,EAAE,SAAS,CAAC,WAAW,CAAC,CAAC;IACpC,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,eAAe,wCAAyC,oBAAoB,
|
|
1
|
+
{"version":3,"file":"SettingsPopover.d.ts","sourceRoot":"","sources":["../../../../../src/componentsV2/AppHeader/V3/SettingsPopover/SettingsPopover.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAiB,SAAS,EAAgC,MAAM,OAAO,CAAC;AAe/E,MAAM,MAAM,oBAAoB,GAAG;IACjC,WAAW,EAAE,SAAS,CAAC,WAAW,CAAC,CAAC;IACpC,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,eAAe,wCAAyC,oBAAoB,gBAuDxF,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{jsxs as o,jsx as s}from"react/jsx-runtime";import{useRef as t,useMemo as i,useCallback as n}from"react";import{ButtonIcon as c}from"../../../ButtonIcon/ButtonIcon.js";import{SettingTwoIcon as r}from"../../../../icons/iconParkIcons.js";import"../../../../icons/customIcons/icons/AddMessage.js";import"../../../../icons/customIcons/icons/Attention.js";import"../../../../icons/customIcons/icons/Collapse.js";import"../../../../icons/customIcons/icons/Dashboard.js";import"../../../../icons/customIcons/icons/Expand.js";import"../../../../icons/customIcons/icons/FolderClosed.js";import"../../../../icons/customIcons/icons/FolderClosedFilled.js";import"../../../../icons/customIcons/icons/FolderOpened.js";import"../../../../icons/customIcons/icons/GreaterOrEqual.js";import"../../../../icons/customIcons/icons/LessOrEqual.js";import"../../../../icons/customIcons/icons/Search.js";import"../../../../icons/customIcons/icons/Wellhub.js";import"../../../../icons/customIcons/icons/MultiRuler.js";import"../../../../icons/customIcons/icons/Checkbox.js";import"../../../../icons/customIcons/icons/CheckboxChecked.js";import"../../../../icons/customIcons/icons/CheckboxIndeterminate.js";import"../../../../icons/customIcons/icons/Radio.js";import"../../../../icons/customIcons/icons/RadioChecked.js";import"../../../../icons/customIcons/icons/SimulFrac.js";import"../../../../icons/customIcons/icons/ZipperFrac.js";import"../../../../icons/customIcons/icons/CautionFilled.js";import"../../../../icons/customIcons/icons/MoreApp.js";import"../../../../icons/customIcons/icons/Pad.js";import"../../../../icons/customIcons/icons/DrilloutUnit.js";import"../../../../icons/customIcons/icons/FracFleet.js";import"../../../../icons/customIcons/icons/Program.js";import"../../../../icons/customIcons/icons/Rig.js";import"../../../../icons/customIcons/icons/Well.js";import"../../../../icons/customIcons/icons/Gap.js";import"../../../../icons/customIcons/icons/Pin.js";import"../../../../icons/customIcons/icons/CloseOneFilled.js";import"../../../../icons/customIcons/icons/AttentionFilled.js";import"../../../../icons/customIcons/icons/CheckOneFilled.js";import"../../../../icons/customIcons/icons/Archive.js";import"../../../../icons/customIcons/icons/ArchiveCancel.js";import"../../../../icons/customIcons/icons/Unarchive.js";import"../../../../icons/customIcons/icons/Archived.js";import{Tooltip as e}from"../../../Tooltip/Tooltip.js";import{Popover as m}from"../../../Popover/Popover.js";import{useAppSize as p}from"../../../AppSizeProvider/AppSizeProvider.js";import{AppSettings as a}from"../../../AppSettings/AppSettings.js";import{useAppSettingPinning as l}from"../../../AppSettings/AppSettingsPinningContext.js";import{useAppCommonsInternal as u}from"../../../AppCommonsProvider/AppCommonsContext.js";import j from"./SettingsPopover.scss.js";import"@babel/runtime/helpers/slicedToArray";import"@babel/runtime/helpers/asyncToGenerator";import"@babel/runtime/helpers/defineProperty";import"@babel/runtime/regenerator";import"querystring";import"uuid/v1";import"lodash";import"../../../../clients/subscriptions.js";import"../../../../clients/jsonApi/index.js";import d from"../../../../effects/useOutsideClick.js";import"../../../../constants/goals.js";import"../../../../constants/segment.js";import"../../../../constants/alerts.js";import"../../../../constants/apps.js";import"../../../../constants/drillstring.js";import"../../../../constants/completion.js";import"../../../../constants/appPackages.js";import"../../../../constants/notifications.js";import"../../../../constants/feed.js";import"../../../../constants/bha.js";import"../../../../utils/env.js";import"../../../../components/GradientManager/configuration/constants.js";import"../../../../utils/index.js";import"uuid";import"jsona";import"../../../../components/StatusBadge/constants.js";import"@babel/runtime/helpers/toConsumableArray";import"lodash/set";import"lodash/get";import"lodash/unset";import"moment";import"../../../../clients/api/apiCore.js";import"../../../../clients/constants.js";import"../../../../clients/sso/auth0.js";import"../../../../clients/sso/oauth2.js";import"lodash/isEmpty";import"lodash/sortBy";import"../../../../constants/streamSourceType.js";import"../../../../components/DevCenter/DevCenterAppContainer/components/CommentsSwitch/CommentsSwitchContext.js";var I=function(I){var h=I.anchorElRef,C=I.disableSettingsPin,g=l(),f=g.isPinned,
|
|
1
|
+
import{jsxs as o,jsx as s}from"react/jsx-runtime";import{useRef as t,useMemo as i,useCallback as n}from"react";import{ButtonIcon as c}from"../../../ButtonIcon/ButtonIcon.js";import{SettingTwoIcon as r}from"../../../../icons/iconParkIcons.js";import"../../../../icons/customIcons/icons/AddMessage.js";import"../../../../icons/customIcons/icons/Attention.js";import"../../../../icons/customIcons/icons/Collapse.js";import"../../../../icons/customIcons/icons/Dashboard.js";import"../../../../icons/customIcons/icons/Expand.js";import"../../../../icons/customIcons/icons/FolderClosed.js";import"../../../../icons/customIcons/icons/FolderClosedFilled.js";import"../../../../icons/customIcons/icons/FolderOpened.js";import"../../../../icons/customIcons/icons/GreaterOrEqual.js";import"../../../../icons/customIcons/icons/LessOrEqual.js";import"../../../../icons/customIcons/icons/Search.js";import"../../../../icons/customIcons/icons/Wellhub.js";import"../../../../icons/customIcons/icons/MultiRuler.js";import"../../../../icons/customIcons/icons/Checkbox.js";import"../../../../icons/customIcons/icons/CheckboxChecked.js";import"../../../../icons/customIcons/icons/CheckboxIndeterminate.js";import"../../../../icons/customIcons/icons/Radio.js";import"../../../../icons/customIcons/icons/RadioChecked.js";import"../../../../icons/customIcons/icons/SimulFrac.js";import"../../../../icons/customIcons/icons/ZipperFrac.js";import"../../../../icons/customIcons/icons/CautionFilled.js";import"../../../../icons/customIcons/icons/MoreApp.js";import"../../../../icons/customIcons/icons/Pad.js";import"../../../../icons/customIcons/icons/DrilloutUnit.js";import"../../../../icons/customIcons/icons/FracFleet.js";import"../../../../icons/customIcons/icons/Program.js";import"../../../../icons/customIcons/icons/Rig.js";import"../../../../icons/customIcons/icons/Well.js";import"../../../../icons/customIcons/icons/Gap.js";import"../../../../icons/customIcons/icons/Pin.js";import"../../../../icons/customIcons/icons/CloseOneFilled.js";import"../../../../icons/customIcons/icons/AttentionFilled.js";import"../../../../icons/customIcons/icons/CheckOneFilled.js";import"../../../../icons/customIcons/icons/Archive.js";import"../../../../icons/customIcons/icons/ArchiveCancel.js";import"../../../../icons/customIcons/icons/Unarchive.js";import"../../../../icons/customIcons/icons/Archived.js";import{Tooltip as e}from"../../../Tooltip/Tooltip.js";import{Popover as m}from"../../../Popover/Popover.js";import{useAppSize as p}from"../../../AppSizeProvider/AppSizeProvider.js";import{AppSettings as a}from"../../../AppSettings/AppSettings.js";import{useAppSettingPinning as l}from"../../../AppSettings/AppSettingsPinningContext.js";import{useAppCommonsInternal as u}from"../../../AppCommonsProvider/AppCommonsContext.js";import j from"./SettingsPopover.scss.js";import"@babel/runtime/helpers/slicedToArray";import"@babel/runtime/helpers/asyncToGenerator";import"@babel/runtime/helpers/defineProperty";import"@babel/runtime/regenerator";import"querystring";import"uuid/v1";import"lodash";import"../../../../clients/subscriptions.js";import"../../../../clients/jsonApi/index.js";import d from"../../../../effects/useOutsideClick.js";import"../../../../constants/goals.js";import"../../../../constants/segment.js";import"../../../../constants/alerts.js";import"../../../../constants/apps.js";import"../../../../constants/drillstring.js";import"../../../../constants/completion.js";import"../../../../constants/appPackages.js";import"../../../../constants/notifications.js";import"../../../../constants/feed.js";import"../../../../constants/bha.js";import"../../../../utils/env.js";import"../../../../components/GradientManager/configuration/constants.js";import"../../../../utils/index.js";import"uuid";import"jsona";import"../../../../components/StatusBadge/constants.js";import"@babel/runtime/helpers/toConsumableArray";import"lodash/set";import"lodash/get";import"lodash/unset";import"moment";import"../../../../clients/api/apiCore.js";import"../../../../clients/constants.js";import"../../../../clients/sso/auth0.js";import"../../../../clients/sso/oauth2.js";import"lodash/isEmpty";import"lodash/sortBy";import"../../../../constants/streamSourceType.js";import"../../../../components/DevCenter/DevCenterAppContainer/components/CommentsSwitch/CommentsSwitchContext.js";var I=function(I){var h=I.anchorElRef,C=I.disableSettingsPin,g=l(),f=g.isPinned,b=g.close,v=g.open,A=g.isPopoverOpen,S=g.animatePopover,P=u().appSettingsComponent,x=(p()||{}).height,y=t(null),F=i((function(){return{maxHeight:"".concat(x,"px")}}),[x]),k=t(null);d(k,b,[y.current]);var O=n((function(){A?b():v()}),[A,b,v]);return P?o("div",{ref:y,children:[s(e,{title:A||f?"":"Settings",children:s(c,{size:"small",type:A||f?"secondaryBg":"tertiaryBg",onClick:O,children:s(r,{})})}),h.current&&!f&&s(m,{open:A,placement:"bottom-end",anchorEl:h.current,onClose:b,className:j.popover,preventScroll:!1,backdrop:!1,animate:S,children:s(a,{rootStyles:F,ref:k,disableSettingsPin:C})})]}):null};export{I as SettingsPopover};
|
|
2
2
|
//# sourceMappingURL=SettingsPopover.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"completion.d.ts","sourceRoot":"","sources":["../../src/constants/completion.js"],"names":[],"mappings":"AAAA;;;;;IA+BE;AAEF;;;;;IA+BE;AAEF;;;;;IA+BE;AAEF;;;;;IAqCE;;;;;;AAQF;;;;IA6IE;AAEF;;;;IAmCE;AAIF;;;;;IAGE;AAEF;;;;;
|
|
1
|
+
{"version":3,"file":"completion.d.ts","sourceRoot":"","sources":["../../src/constants/completion.js"],"names":[],"mappings":"AAAA;;;;;IA+BE;AAEF;;;;;IA+BE;AAEF;;;;;IA+BE;AAEF;;;;;IAqCE;;;;;;AAQF;;;;IA6IE;AAEF;;;;IAmCE;AAIF;;;;;IAGE;AAEF;;;;;IAmEE;AAEF;;;;;;;;;;;;;;KAgBE;AAEF;;;;;;IAeE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgDF;;;;IA0BE;AAEF;;;;;;;;;;;;;;;;;;KA4CE;AAEF;;;IAKE;;;;;;;;;;;;;;;;;;;AA+CF;;EAgCE"}
|
package/constants/completion.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import e from"@babel/runtime/helpers/defineProperty";import
|
|
1
|
+
import e from"@babel/runtime/helpers/defineProperty";import o from"@babel/runtime/helpers/toConsumableArray";var r;function l(e,o){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);o&&(l=l.filter((function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable}))),r.push.apply(r,l)}return r}function n(o){for(var r=1;r<arguments.length;r++){var n=null!=arguments[r]?arguments[r]:{};r%2?l(Object(n),!0).forEach((function(r){e(o,r,n[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(o,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(e){Object.defineProperty(o,e,Object.getOwnPropertyDescriptor(n,e))}))}return o}var a=[{name:"Pressure Testing",key:"pressure testing",isFlatTime:!0,color:"#FFF350"},{name:"Pump Off",key:"pump off",isFlatTime:!0,color:"#939E98"},{name:"Fracturing",key:"fracturing",isFlatTime:!1,color:"#429FF8"},{name:"Pad",key:"pad",isFlatTime:!1,color:"#FF8260"},{name:"Flush",key:"flush",isFlatTime:!1,color:"#10EAF0"}],i=[{name:"Pull out of Hole",key:"pull out of hole",isFlatTime:!1,color:"#800080"},{name:"Plug and Perf",key:"plug and perf",isFlatTime:!1,color:"#FFA500"},{name:"Run in Hole",key:"run in hole",isFlatTime:!1,color:"#00008B"},{name:"Static",key:"static",isFlatTime:!1,color:"#D3D3D3"},{name:"Out of Hole",key:"out of hole",isFlatTime:!1,color:"#FFC0CB"}],t=[{name:"Pull out of Hole (VT)",key:"pull out of hole vertical",isFlatTime:!1,color:"#EB3447"},{name:"Pull out of Hole (HZ)",key:"pull out of hole horizontal",isFlatTime:!1,color:"#ED602A"},{name:"Run in Hole (VT)",key:"run in hole vertical",isFlatTime:!1,color:"#390099"},{name:"Run in Hole (HZ)",key:"run in hole horizontal",isFlatTime:!1,color:"#6150C1"},{name:"Static",key:"static",isFlatTime:!1,color:"#FFBD00"}],c=[{name:"HVFR Low",key:"hvfr_low",unitType:"oil",color:"#1fff71"},{name:"15# Linear Gel",key:"15#_linear_gel",unitType:"oil",color:"#00E7E9"},{name:"15% HCL Acid",key:"15%_hcl_acid",unitType:"oil",color:"#6ec732"},{name:"Slickwater",key:"slickwater",unitType:"oil",color:"#7AB8ED"},{name:"15# XL Borate",key:"15#_xl_borate",unitType:"oil",color:"#ff9a4c"},{name:"Fresh Water",key:"fresh_water",unitType:"oil",color:"#4c7fff"}],s={name:"Total Chemicals",key:"total_chemical_rate_in",color:"#00FF00"},p=[{name:"Liquid Gel",color:"#84F4F7",key:"gel"},{name:"Acid",color:"#6ec732",key:"acid"},{name:"Liquid FR",color:"#FFA891",key:"friction_reducer"},{name:"Liquid FR Extra",color:"#91FFA8",key:"friction_reducer_extra"},{name:"Total Liquid FR",color:"#FF91A8",key:"total_friction_reducer"},{name:"Cross Linker",color:"#B0CA87",key:"cross_linker"},{name:"Liquid EB",color:"#32b8c7",key:"enzyme_breaker"},{name:"Polymer Plug",color:"#9fc732",key:"ploymer_plug"},{name:"Acid Inhibitor",color:"#AB9081",key:"acid_inhibitor"},{name:"Acid Retarder",color:"#7CC6FE",key:"acid_retarder"},{name:"Emulsifier",color:"#5DFDCB",key:"emulsifier"},{name:"Clay Stabilizer",color:"#9C6B20",key:"clay_stabilizer"},{name:"Surfactant",color:"#FFF689",key:"surfactant"},{name:"Non-Emulsifier",color:"#C0DF85",key:"non_emulsifier"},{name:"Fines Suspender",color:"#7B8E55",key:"fines_suspender"},{name:"Anti-Sludge",color:"#07393C",key:"anti_sludge"},{name:"Scale Inhibitor",color:"#C0E5CA",key:"scale_inhibitor"},{name:"Iron Control",color:"#CD5334",key:"iron_control"},{name:"Oxygen Scavenger",color:"#DFF283",key:"oxygen_scavenger"},{name:"Mutual Solvent",color:"#ad5ec7",key:"mutual_solvent"},{name:"Corrosion Inhibitor",color:"#7C2209",key:"corrosion_inhibitor"},{name:"Paraffin Control",color:"#F5A65B",key:"paraffin_control"},{name:"Biocide",color:"#E9B76A",key:"biocide"},{name:"PH Adjusting Agent",color:"#519872",key:"ph_adjusting_agent"},{name:"Accelerator",color:"#5E3023",key:"accelerator"},{name:"Instant Crosslinker",color:"#6E6E23",key:"instant_crosslinker"},{name:"Delayed Crosslinker",color:"#7E306E",key:"delayed_crosslinker"},{name:"Liquid Breaker",color:"#233023",key:"liquid_breaker"}],u=[{name:"Diverter",color:"#BB9394",key:"divertor"},{name:"Powder Breaker",color:"#c732b8",key:"powder_breaker"},{name:"Powder Gel",color:"#308E23",key:"powder_gel"},{name:"Powder FR",color:"#30239E",key:"powder_friction_reducer"},{name:"Powder EB",color:"#A32A78",key:"powder_enzyme_breaker"},{name:"Fluid Loss",color:"#c7bd32",key:"fluid_loss"}],m=[].concat(o(p.map((function(e){return n(n({},e),{},{unitType:"volume"})}))),o(u.map((function(e){return n(n({},e),{},{unitType:"mass"})})))),y=[{name:"100 Mesh",key:"100_mesh",unitType:"mass",color:"#ff0000"},{name:"40/70 Brown",key:"40_70_brown",unitType:"mass",color:"#603000"},{name:"40/70 Mesh",key:"40_70_mesh",unitType:"mass",color:"#5454cc"},{name:"40/70 NWS",key:"40_70_nws",unitType:"mass",color:"#ff4242"},{name:"40/70 RBS",key:"40_70_rbs",unitType:"mass",color:"#ff42bc"},{name:"30/50 Brown",key:"30_50_brown",unitType:"mass",color:"#964B00"},{name:"30/50 Mesh",key:"30_50_mesh",unitType:"mass",color:"#9898cc"},{name:"25/50 Brown",key:"25_50_brown",unitType:"mass",color:"#B27C45"},{name:"25/50 Mesh",key:"25_50_mesh",unitType:"mass",color:"#32aa32"},{name:"20/40 Mesh",key:"20_40_mesh",unitType:"mass",color:"#ff7979"},{name:"Petroleum Coke",key:"petroleum_coke",unitType:"mass",color:"#ff7c4d"}],_=[{name:"Total Proppant Conc",key:"total_proppant_concentration",unitType:"massConcentration",unit:"lb/gal",color:"#FF8F0B"},{name:"BHPC",key:"bottomhole_proppant_concentration",unitType:"massConcentration",unit:"lb/gal",color:"#9F4BED",precision:2}],k=[{name:"Total Proppant Mass",key:"total_proppant_mass",unitType:"mass",color:"#EE964B",unit:"lb"},{name:"Streamed Proppant Mass",key:"proppant_1_mass",unitType:"mass",color:"#C6C013",unit:"lb"}],f={top_perforation:"#0085e3",bottom_perforation:"#8BC7F2",perforated_length:"#519872",total_shots:"#9500b7",flush_volume:"#FF6161"},d={well_head_pressure:"#F50057",wellhead_sensor:"#A0A0A0",pipe_frictional_pressure_loss:"#D8496B",nwb_frictional_pressure_loss:"#807DFF",bottomhole_pressure:"#4DCFB3",net_pressure:"#EE752F",max_treating_pressure:"#F50258",ave_treating_pressure:"#FF6161",breakdown_pressure:"#03db5a",isip_pressure:"#7169AE",delta_pressure:"#efd34b",hydrostatic_pressure:"#E458C8",backside_pressure:"#32aa32",pumpside_pressure:"#855CF8",negative_hydrostatic_pressure:"#EF83D9",pressure_at_gauge_md:"#D43AB5",sleeve_pressure_loss:"#F9B6EB"},F={fr_concentration:"#D99C88",surfactant_concentration:"#FEF798",powder_breaker_concentration:"#993895"},b={clean_flow_rate_in:"#7CC900",slurry_flow_rate_in:"#64B5FF",max_flow_rate:"#0085e3",ave_flow_rate:"#8BC7F2"},w={total_slurry_volume_in:"#7169AE",total_clean_volume_in:"#257CFF"},g=[{name:"Fracturing",key:"fracturing",color:"#429FF8"},{name:"Wireline",key:"wireline",color:"#FF9C00"},{name:"Swap Over - Fracturing",key:"swap_over_fracturing",color:"#347EC5"},{name:"Swap Over - Wireline",key:"swap_over_wireline",color:"#BF7500"},{name:"Waiting on Offset Wells",key:"waiting_on_offset_wells",color:"#BDBDBD"}],A=[{key:"line_speed",label:"Line Speed",unitType:"velocity",unit:"ft/min",isDefaultView:!0},{key:"line_tension",label:"Line Tension",unitType:"mass",unit:"lb",isDefaultView:!0},{key:"casing_collar_locator",label:"CCL",isDefaultView:!0},{key:"elapsed_time",label:"Elapsed Time",unitType:"time",unit:"s"},{key:"voltage",label:"Voltage",unitType:"voltage",unit:"mV"},{key:"current",label:"Current",unitType:"current",unit:"mA"},{key:"measured_depth",label:"Measured Depth",unitType:"length",unit:"ft"}],T=[{key:"pad",label:"Pad Mode"}],h={pad:"pad",activeFrac:"active_frac",activeWireline:"active_wireline",activePumpdown:"active_pumpdown",custom:"custom",padLine:"padLine"},C={padApp:"Pad Apps",fracWirelineMultiWellApp:"Frac & Wireline Multi-Well Apps",fracMultiWellApp:"Frac Multi-Well Apps",wirelineMultiWellApp:"Wireline Multi-Well Apps",pumpdownMultiWellApp:"Pumpdown Multi-Well Apps",fracSingleWellApp:"Frac Single Well Apps",wirelineSingleWellApp:"Wireline Single Well Apps",pumpdownSingleWellApp:"Pumpdown Single Well Apps"},v=(e(r={},C.padApp,[h.pad,h.custom]),e(r,C.fracWirelineMultiWellApp,[h.pad,h.activeFrac,h.activeWireline,h.custom]),e(r,C.fracMultiWellApp,[h.pad,h.activeFrac,h.custom]),e(r,C.fracSingleWellApp,[h.activeFrac,h.custom]),e(r,C.wirelineMultiWellApp,[h.pad,h.activeWireline,h.custom]),e(r,C.wirelineSingleWellApp,[h.activeWireline,h.custom]),e(r,C.pumpdownMultiWellApp,[h.pad,h.activePumpdown,h.custom]),e(r,C.wirelineSingleWellApp,[h.activePumpdown,h.custom]),r);export{a as ACTIVITIES,u as CHEMICALS_MASS_TYPES,m as CHEMICALS_TYPES,p as CHEMICALS_VOL_TYPES,v as COMPLETION_APPTYPE_MODES_DICT,C as COMPLETION_APP_TYPES,h as COMPLETION_MODES,g as COMPLETION_OPERATION_TYPE,T as DEFAULT_SUPPORTED_PAD_MODES,b as FLOW_RATE_COLORS,c as FLUIDS_TYPES,d as PRESSURE_COLORS,_ as PROPPANTS_CON_TYPES,k as PROPPANTS_MASS_TYPES,y as PROPPANTS_TYPES,f as STAGE_ACTUAL_PARAM_COLORS,s as TOTAL_CHEMICAL_TYPE,w as TOTAL_VOLUME_COLORS,F as TRACKING_CONCENTRATION_COLORS,i as WIRELINE_ACTIVITIES,t as WIRELINE_BREAKDOWN_ACTIVITIES,A as WIRELINE_PARAMETERS};
|
|
2
2
|
//# sourceMappingURL=completion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"completion.js","sources":["../../src/constants/completion.js"],"sourcesContent":["export const ACTIVITIES = [\n {\n name: 'Pressure Testing',\n key: 'pressure testing',\n isFlatTime: true,\n color: '#FFF350',\n },\n {\n name: 'Pump Off',\n key: 'pump off',\n isFlatTime: true,\n color: '#939E98',\n },\n {\n name: 'Fracturing',\n key: 'fracturing',\n isFlatTime: false,\n color: '#429FF8',\n },\n {\n name: 'Pad',\n key: 'pad',\n isFlatTime: false,\n color: '#FF8260',\n },\n {\n name: 'Flush',\n key: 'flush',\n isFlatTime: false,\n color: '#10EAF0',\n },\n];\n\nexport const WIRELINE_ACTIVITIES = [\n {\n name: 'Pull out of Hole',\n key: 'pull out of hole',\n isFlatTime: false,\n color: '#800080',\n },\n {\n name: 'Plug and Perf',\n key: 'plug and perf',\n isFlatTime: false,\n color: '#FFA500',\n },\n {\n name: 'Run in Hole',\n key: 'run in hole',\n isFlatTime: false,\n color: '#00008B',\n },\n {\n name: 'Static',\n key: 'static',\n isFlatTime: false,\n color: '#D3D3D3',\n },\n {\n name: 'Out of Hole',\n key: 'out of hole',\n isFlatTime: false,\n color: '#FFC0CB',\n },\n];\n\nexport const WIRELINE_BREAKDOWN_ACTIVITIES = [\n {\n name: 'Pull out of Hole (VT)',\n key: 'pull out of hole vertical',\n isFlatTime: false,\n color: '#EB3447',\n },\n {\n name: 'Pull out of Hole (HZ)',\n key: 'pull out of hole horizontal',\n isFlatTime: false,\n color: '#ED602A',\n },\n {\n name: 'Run in Hole (VT)',\n key: 'run in hole vertical',\n isFlatTime: false,\n color: '#390099',\n },\n {\n name: 'Run in Hole (HZ)',\n key: 'run in hole horizontal',\n isFlatTime: false,\n color: '#6150C1',\n },\n {\n name: 'Static',\n key: 'static',\n isFlatTime: false,\n color: '#FFBD00',\n },\n];\n\nexport const FLUIDS_TYPES = [\n {\n name: 'HVFR Low',\n key: 'hvfr_low',\n unitType: 'oil',\n color: '#1fff71',\n },\n {\n name: '15# Linear Gel',\n key: '15#_linear_gel',\n unitType: 'oil',\n color: '#00E7E9',\n },\n {\n name: '15% HCL Acid',\n key: '15%_hcl_acid',\n unitType: 'oil',\n color: '#6ec732',\n },\n {\n name: 'Slickwater',\n key: 'slickwater',\n unitType: 'oil',\n color: '#7AB8ED',\n },\n {\n name: '15# XL Borate',\n key: '15#_xl_borate',\n unitType: 'oil',\n color: '#ff9a4c',\n },\n {\n name: 'Fresh Water',\n key: 'fresh_water',\n unitType: 'oil',\n color: '#4c7fff',\n },\n];\n\nexport const TOTAL_CHEMICAL_TYPE = {\n name: 'Total Chemicals',\n key: 'total_chemical_rate_in',\n color: '#00FF00',\n};\n\nexport const CHEMICALS_VOL_TYPES = [\n {\n name: 'Liquid Gel',\n color: '#84F4F7',\n key: 'gel',\n },\n {\n name: 'Acid',\n color: '#6ec732',\n key: 'acid',\n },\n {\n name: 'Liquid FR',\n color: '#FFA891',\n key: 'friction_reducer',\n },\n {\n name: 'Liquid FR Extra',\n color: '#91FFA8',\n key: 'friction_reducer_extra',\n },\n {\n name: 'Total Liquid FR',\n color: '#FF91A8',\n key: 'total_friction_reducer',\n },\n {\n name: 'Cross Linker',\n color: '#B0CA87',\n key: 'cross_linker',\n },\n {\n name: 'Liquid EB',\n color: '#32b8c7',\n key: 'enzyme_breaker',\n },\n {\n name: 'Polymer Plug',\n color: '#9fc732',\n key: 'ploymer_plug',\n },\n {\n name: 'Acid Inhibitor',\n color: '#AB9081',\n key: 'acid_inhibitor',\n },\n {\n name: 'Acid Retarder',\n color: '#7CC6FE',\n key: 'acid_retarder',\n },\n {\n name: 'Emulsifier',\n color: '#5DFDCB',\n key: 'emulsifier',\n },\n {\n name: 'Clay Stabilizer',\n color: '#9C6B20',\n key: 'clay_stabilizer',\n },\n {\n name: 'Surfactant',\n color: '#FFF689',\n key: 'surfactant',\n },\n {\n name: 'Non-Emulsifier',\n color: '#C0DF85',\n key: 'non_emulsifier',\n },\n {\n name: 'Fines Suspender',\n color: '#7B8E55',\n key: 'fines_suspender',\n },\n {\n name: 'Anti-Sludge',\n color: '#07393C',\n key: 'anti_sludge',\n },\n {\n name: 'Scale Inhibitor',\n color: '#C0E5CA',\n key: 'scale_inhibitor',\n },\n {\n name: 'Iron Control',\n color: '#CD5334',\n key: 'iron_control',\n },\n {\n name: 'Oxygen Scavenger',\n color: '#DFF283',\n key: 'oxygen_scavenger',\n },\n {\n name: 'Mutual Solvent',\n color: '#ad5ec7',\n key: 'mutual_solvent',\n },\n {\n name: 'Corrosion Inhibitor',\n color: '#7C2209',\n key: 'corrosion_inhibitor',\n },\n {\n name: 'Paraffin Control',\n color: '#F5A65B',\n key: 'paraffin_control',\n },\n {\n name: 'Biocide',\n color: '#E9B76A',\n key: 'biocide',\n },\n {\n name: 'PH Adjusting Agent',\n color: '#519872',\n key: 'ph_adjusting_agent',\n },\n {\n name: 'Accelerator',\n color: '#5E3023',\n key: 'accelerator',\n },\n {\n name: 'Instant Crosslinker',\n color: '#6E6E23',\n key: 'instant_crosslinker',\n },\n {\n name: 'Delayed Crosslinker',\n color: '#7E306E',\n key: 'delayed_crosslinker',\n },\n {\n name: 'Liquid Breaker',\n color: '#233023',\n key: 'liquid_breaker',\n },\n];\n\nexport const CHEMICALS_MASS_TYPES = [\n {\n // NOTE: Incorrect spellling `divertor` was used by accident in the begnning of development.\n // Since it was used in the column mapper, the key field should be kept as is for existing assets.\n name: 'Diverter',\n color: '#BB9394',\n key: 'divertor',\n },\n\n {\n name: 'Powder Breaker',\n color: '#c732b8',\n key: 'powder_breaker',\n },\n\n {\n name: 'Powder Gel',\n color: '#308E23',\n key: 'powder_gel',\n },\n {\n name: 'Powder FR',\n color: '#30239E',\n key: 'powder_friction_reducer',\n },\n {\n name: 'Powder EB',\n color: '#A32A78',\n key: 'powder_enzyme_breaker',\n },\n {\n name: 'Fluid Loss',\n color: '#c7bd32',\n key: 'fluid_loss',\n },\n];\n\n// TODO: These checmials are shared between wits channels and settings chemicals app\n// Like proppants, we might need to separate those two usage.\nexport const CHEMICALS_TYPES = [\n ...CHEMICALS_VOL_TYPES.map(item => ({ ...item, unitType: 'volume' })),\n ...CHEMICALS_MASS_TYPES.map(item => ({ ...item, unitType: 'mass' })),\n];\n\nexport const PROPPANTS_TYPES = [\n {\n name: '100 Mesh',\n key: '100_mesh',\n unitType: 'mass',\n color: '#ff0000',\n },\n {\n name: '40/70 Brown',\n key: '40_70_brown',\n unitType: 'mass',\n color: '#603000',\n },\n {\n name: '40/70 Mesh',\n key: '40_70_mesh',\n unitType: 'mass',\n color: '#5454cc',\n },\n {\n name: '40/70 NWS',\n key: '40_70_nws',\n unitType: 'mass',\n color: '#ff4242',\n },\n {\n name: '40/70 RBS',\n key: '40_70_rbs',\n unitType: 'mass',\n color: '#ff42bc',\n },\n {\n name: '30/50 Brown',\n key: '30_50_brown',\n unitType: 'mass',\n color: '#964B00',\n },\n {\n name: '30/50 Mesh',\n key: '30_50_mesh',\n unitType: 'mass',\n color: '#9898cc',\n },\n {\n name: '25/50 Brown',\n key: '25_50_brown',\n unitType: 'mass',\n color: '#B27C45',\n },\n {\n name: '25/50 Mesh',\n key: '25_50_mesh',\n unitType: 'mass',\n color: '#32aa32',\n },\n {\n name: '20/40 Mesh',\n key: '20_40_mesh',\n unitType: 'mass',\n color: '#ff7979',\n },\n];\n\nexport const PROPPANTS_CON_TYPES = [\n {\n name: 'Total Proppant Conc',\n key: 'total_proppant_concentration',\n unitType: 'massConcentration',\n unit: 'lb/gal',\n color: '#FF8F0B',\n },\n {\n name: 'BHPC',\n key: 'bottomhole_proppant_concentration',\n unitType: 'massConcentration',\n unit: 'lb/gal',\n color: '#9F4BED',\n precision: 2,\n },\n];\n\nexport const PROPPANTS_MASS_TYPES = [\n {\n name: 'Total Proppant Mass',\n key: 'total_proppant_mass',\n unitType: 'mass',\n color: '#EE964B',\n unit: 'lb',\n },\n {\n name: 'Streamed Proppant Mass',\n key: 'proppant_1_mass',\n unitType: 'mass',\n color: '#C6C013',\n unit: 'lb',\n },\n];\n\nexport const STAGE_ACTUAL_PARAM_COLORS = {\n top_perforation: '#0085e3',\n bottom_perforation: '#8BC7F2',\n perforated_length: '#519872',\n total_shots: '#9500b7',\n flush_volume: '#FF6161',\n};\n\nexport const PRESSURE_COLORS = {\n well_head_pressure: '#F50057',\n wellhead_sensor: '#A0A0A0',\n pipe_frictional_pressure_loss: '#D8496B',\n nwb_frictional_pressure_loss: '#807DFF',\n bottomhole_pressure: '#4DCFB3',\n net_pressure: '#EE752F',\n max_treating_pressure: '#F50258',\n ave_treating_pressure: '#FF6161',\n breakdown_pressure: '#03db5a',\n isip_pressure: '#7169AE',\n delta_pressure: '#efd34b',\n hydrostatic_pressure: '#E458C8',\n backside_pressure: '#32aa32',\n pumpside_pressure: '#855CF8',\n negative_hydrostatic_pressure: '#EF83D9',\n pressure_at_gauge_md: '#D43AB5',\n sleeve_pressure_loss: '#F9B6EB',\n};\n\nexport const TRACKING_CONCENTRATION_COLORS = {\n fr_concentration: '#D99C88',\n surfactant_concentration: '#FEF798',\n powder_breaker_concentration: '#993895',\n};\n\nexport const FLOW_RATE_COLORS = {\n clean_flow_rate_in: '#7CC900',\n slurry_flow_rate_in: '#64B5FF',\n max_flow_rate: '#0085e3',\n ave_flow_rate: '#8BC7F2',\n};\n\nexport const TOTAL_VOLUME_COLORS = {\n total_slurry_volume_in: '#7169AE',\n total_clean_volume_in: '#257CFF',\n};\n\nexport const COMPLETION_OPERATION_TYPE = [\n {\n name: 'Fracturing',\n key: 'fracturing',\n color: '#429FF8',\n },\n {\n name: 'Wireline',\n key: 'wireline',\n color: '#FF9C00',\n },\n {\n name: 'Swap Over - Fracturing',\n key: 'swap_over_fracturing',\n color: '#347EC5',\n },\n {\n name: 'Swap Over - Wireline',\n key: 'swap_over_wireline',\n color: '#BF7500',\n },\n {\n name: 'Waiting on Offset Wells',\n key: 'waiting_on_offset_wells',\n color: '#BDBDBD',\n },\n];\n\nexport const WIRELINE_PARAMETERS = [\n {\n key: 'line_speed',\n label: 'Line Speed',\n unitType: 'velocity',\n unit: 'ft/min',\n isDefaultView: true,\n },\n {\n key: 'line_tension',\n label: 'Line Tension',\n unitType: 'mass',\n unit: 'lb',\n isDefaultView: true,\n },\n {\n key: 'casing_collar_locator',\n label: 'CCL',\n isDefaultView: true,\n },\n {\n key: 'elapsed_time',\n label: 'Elapsed Time',\n unitType: 'time',\n unit: 's',\n },\n {\n key: 'voltage',\n label: 'Voltage',\n unitType: 'voltage',\n unit: 'mV',\n },\n {\n key: 'current',\n label: 'Current',\n unitType: 'current',\n unit: 'mA',\n },\n {\n key: 'measured_depth',\n label: 'Measured Depth',\n unitType: 'length',\n unit: 'ft',\n },\n];\n\nexport const DEFAULT_SUPPORTED_PAD_MODES = [\n {\n key: 'pad',\n label: 'Pad Mode',\n },\n];\n\n/**\n * There are 5 different modes in completion apps\n *\n * 1 - Pad Mode (Display data from all assets on pad in series)\n * 2 - Active Frac Mode (Display data from active frac asset on active pad)\n * 3 - Active Wireline Mode (Display data from active wireline asset on active pad)\n * 4 - Active Pumpdown Mode (Display data from active pumpdown asset on active pad)\n * 5 - Custom Mode (Display data from user selected asset on active pad)\n * 6 - Pad Line (Display data from selected simul frac line)\n *\n */\nexport const COMPLETION_MODES = {\n pad: 'pad',\n activeFrac: 'active_frac',\n activeWireline: 'active_wireline',\n activePumpdown: 'active_pumpdown',\n custom: 'custom',\n padLine: 'padLine',\n};\n\n/**\n * There are 8 different types of completion apps,\n * and each one will have different modes in the dropdown\n *\n * 1 - Pad apps\n * 2 - Frac & Wireline Multi-Well Apps\n * 3 - Frac Multi-Well Apps\n * 4 - Wireline Multi-Well Apps\n * 5 - Pumpdown Multi-Well Apps\n * 6 - Frac Single Well Apps\n * 7 - Wireline Single Well Apps\n * 8 - Pumpdown Single Well Apps\n *\n */\nexport const COMPLETION_APP_TYPES = {\n padApp: 'Pad Apps',\n fracWirelineMultiWellApp: 'Frac & Wireline Multi-Well Apps',\n fracMultiWellApp: 'Frac Multi-Well Apps',\n wirelineMultiWellApp: 'Wireline Multi-Well Apps',\n pumpdownMultiWellApp: 'Pumpdown Multi-Well Apps',\n fracSingleWellApp: 'Frac Single Well Apps',\n wirelineSingleWellApp: 'Wireline Single Well Apps',\n pumpdownSingleWellApp: 'Pumpdown Single Well Apps',\n};\n\nexport const COMPLETION_APPTYPE_MODES_DICT = {\n [COMPLETION_APP_TYPES.padApp]: [COMPLETION_MODES.pad, COMPLETION_MODES.custom],\n [COMPLETION_APP_TYPES.fracWirelineMultiWellApp]: [\n COMPLETION_MODES.pad,\n COMPLETION_MODES.activeFrac,\n COMPLETION_MODES.activeWireline,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.fracMultiWellApp]: [\n COMPLETION_MODES.pad,\n COMPLETION_MODES.activeFrac,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.fracSingleWellApp]: [COMPLETION_MODES.activeFrac, COMPLETION_MODES.custom],\n [COMPLETION_APP_TYPES.wirelineMultiWellApp]: [\n COMPLETION_MODES.pad,\n COMPLETION_MODES.activeWireline,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.wirelineSingleWellApp]: [\n COMPLETION_MODES.activeWireline,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.pumpdownMultiWellApp]: [\n COMPLETION_MODES.pad,\n COMPLETION_MODES.activePumpdown,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.wirelineSingleWellApp]: [\n COMPLETION_MODES.activePumpdown,\n COMPLETION_MODES.custom,\n ],\n};\n"],"names":["ACTIVITIES","name","key","isFlatTime","color","WIRELINE_ACTIVITIES","WIRELINE_BREAKDOWN_ACTIVITIES","FLUIDS_TYPES","unitType","TOTAL_CHEMICAL_TYPE","CHEMICALS_VOL_TYPES","CHEMICALS_MASS_TYPES","CHEMICALS_TYPES","map","item","_objectSpread","PROPPANTS_TYPES","PROPPANTS_CON_TYPES","unit","precision","PROPPANTS_MASS_TYPES","STAGE_ACTUAL_PARAM_COLORS","top_perforation","bottom_perforation","perforated_length","total_shots","flush_volume","PRESSURE_COLORS","well_head_pressure","wellhead_sensor","pipe_frictional_pressure_loss","nwb_frictional_pressure_loss","bottomhole_pressure","net_pressure","max_treating_pressure","ave_treating_pressure","breakdown_pressure","isip_pressure","delta_pressure","hydrostatic_pressure","backside_pressure","pumpside_pressure","negative_hydrostatic_pressure","pressure_at_gauge_md","sleeve_pressure_loss","TRACKING_CONCENTRATION_COLORS","fr_concentration","surfactant_concentration","powder_breaker_concentration","FLOW_RATE_COLORS","clean_flow_rate_in","slurry_flow_rate_in","max_flow_rate","ave_flow_rate","TOTAL_VOLUME_COLORS","total_slurry_volume_in","total_clean_volume_in","COMPLETION_OPERATION_TYPE","WIRELINE_PARAMETERS","label","isDefaultView","DEFAULT_SUPPORTED_PAD_MODES","COMPLETION_MODES","pad","activeFrac","activeWireline","activePumpdown","custom","padLine","COMPLETION_APP_TYPES","padApp","fracWirelineMultiWellApp","fracMultiWellApp","wirelineMultiWellApp","pumpdownMultiWellApp","fracSingleWellApp","wirelineSingleWellApp","pumpdownSingleWellApp","COMPLETION_APPTYPE_MODES_DICT","_defineProperty","_COMPLETION_APPTYPE_M"],"mappings":"krBAAO,IAAMA,EAAa,CACxB,CACEC,KAAM,mBACNC,IAAK,mBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,WACNC,IAAK,WACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,aACNC,IAAK,aACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,MACNC,IAAK,MACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,QACNC,IAAK,QACLC,YAAY,EACZC,MAAO,YAIEC,EAAsB,CACjC,CACEJ,KAAM,mBACNC,IAAK,mBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,gBACNC,IAAK,gBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,cACNC,IAAK,cACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,SACNC,IAAK,SACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,cACNC,IAAK,cACLC,YAAY,EACZC,MAAO,YAIEE,EAAgC,CAC3C,CACEL,KAAM,wBACNC,IAAK,4BACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,wBACNC,IAAK,8BACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,mBACNC,IAAK,uBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,mBACNC,IAAK,yBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,SACNC,IAAK,SACLC,YAAY,EACZC,MAAO,YAIEG,EAAe,CAC1B,CACEN,KAAM,WACNC,IAAK,WACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,iBACNC,IAAK,iBACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,eACNC,IAAK,eACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,aACNC,IAAK,aACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,gBACNC,IAAK,gBACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,cACNC,IAAK,cACLM,SAAU,MACVJ,MAAO,YAIEK,EAAsB,CACjCR,KAAM,kBACNC,IAAK,yBACLE,MAAO,WAGIM,EAAsB,CACjC,CACET,KAAM,aACNG,MAAO,UACPF,IAAK,OAEP,CACED,KAAM,OACNG,MAAO,UACPF,IAAK,QAEP,CACED,KAAM,YACNG,MAAO,UACPF,IAAK,oBAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,0BAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,0BAEP,CACED,KAAM,eACNG,MAAO,UACPF,IAAK,gBAEP,CACED,KAAM,YACNG,MAAO,UACPF,IAAK,kBAEP,CACED,KAAM,eACNG,MAAO,UACPF,IAAK,gBAEP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,kBAEP,CACED,KAAM,gBACNG,MAAO,UACPF,IAAK,iBAEP,CACED,KAAM,aACNG,MAAO,UACPF,IAAK,cAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,mBAEP,CACED,KAAM,aACNG,MAAO,UACPF,IAAK,cAEP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,kBAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,mBAEP,CACED,KAAM,cACNG,MAAO,UACPF,IAAK,eAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,mBAEP,CACED,KAAM,eACNG,MAAO,UACPF,IAAK,gBAEP,CACED,KAAM,mBACNG,MAAO,UACPF,IAAK,oBAEP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,kBAEP,CACED,KAAM,sBACNG,MAAO,UACPF,IAAK,uBAEP,CACED,KAAM,mBACNG,MAAO,UACPF,IAAK,oBAEP,CACED,KAAM,UACNG,MAAO,UACPF,IAAK,WAEP,CACED,KAAM,qBACNG,MAAO,UACPF,IAAK,sBAEP,CACED,KAAM,cACNG,MAAO,UACPF,IAAK,eAEP,CACED,KAAM,sBACNG,MAAO,UACPF,IAAK,uBAEP,CACED,KAAM,sBACNG,MAAO,UACPF,IAAK,uBAEP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,mBAIIS,EAAuB,CAClC,CAGEV,KAAM,WACNG,MAAO,UACPF,IAAK,YAGP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,kBAGP,CACED,KAAM,aACNG,MAAO,UACPF,IAAK,cAEP,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"}
|
|
1
|
+
{"version":3,"file":"completion.js","sources":["../../src/constants/completion.js"],"sourcesContent":["export const ACTIVITIES = [\n {\n name: 'Pressure Testing',\n key: 'pressure testing',\n isFlatTime: true,\n color: '#FFF350',\n },\n {\n name: 'Pump Off',\n key: 'pump off',\n isFlatTime: true,\n color: '#939E98',\n },\n {\n name: 'Fracturing',\n key: 'fracturing',\n isFlatTime: false,\n color: '#429FF8',\n },\n {\n name: 'Pad',\n key: 'pad',\n isFlatTime: false,\n color: '#FF8260',\n },\n {\n name: 'Flush',\n key: 'flush',\n isFlatTime: false,\n color: '#10EAF0',\n },\n];\n\nexport const WIRELINE_ACTIVITIES = [\n {\n name: 'Pull out of Hole',\n key: 'pull out of hole',\n isFlatTime: false,\n color: '#800080',\n },\n {\n name: 'Plug and Perf',\n key: 'plug and perf',\n isFlatTime: false,\n color: '#FFA500',\n },\n {\n name: 'Run in Hole',\n key: 'run in hole',\n isFlatTime: false,\n color: '#00008B',\n },\n {\n name: 'Static',\n key: 'static',\n isFlatTime: false,\n color: '#D3D3D3',\n },\n {\n name: 'Out of Hole',\n key: 'out of hole',\n isFlatTime: false,\n color: '#FFC0CB',\n },\n];\n\nexport const WIRELINE_BREAKDOWN_ACTIVITIES = [\n {\n name: 'Pull out of Hole (VT)',\n key: 'pull out of hole vertical',\n isFlatTime: false,\n color: '#EB3447',\n },\n {\n name: 'Pull out of Hole (HZ)',\n key: 'pull out of hole horizontal',\n isFlatTime: false,\n color: '#ED602A',\n },\n {\n name: 'Run in Hole (VT)',\n key: 'run in hole vertical',\n isFlatTime: false,\n color: '#390099',\n },\n {\n name: 'Run in Hole (HZ)',\n key: 'run in hole horizontal',\n isFlatTime: false,\n color: '#6150C1',\n },\n {\n name: 'Static',\n key: 'static',\n isFlatTime: false,\n color: '#FFBD00',\n },\n];\n\nexport const FLUIDS_TYPES = [\n {\n name: 'HVFR Low',\n key: 'hvfr_low',\n unitType: 'oil',\n color: '#1fff71',\n },\n {\n name: '15# Linear Gel',\n key: '15#_linear_gel',\n unitType: 'oil',\n color: '#00E7E9',\n },\n {\n name: '15% HCL Acid',\n key: '15%_hcl_acid',\n unitType: 'oil',\n color: '#6ec732',\n },\n {\n name: 'Slickwater',\n key: 'slickwater',\n unitType: 'oil',\n color: '#7AB8ED',\n },\n {\n name: '15# XL Borate',\n key: '15#_xl_borate',\n unitType: 'oil',\n color: '#ff9a4c',\n },\n {\n name: 'Fresh Water',\n key: 'fresh_water',\n unitType: 'oil',\n color: '#4c7fff',\n },\n];\n\nexport const TOTAL_CHEMICAL_TYPE = {\n name: 'Total Chemicals',\n key: 'total_chemical_rate_in',\n color: '#00FF00',\n};\n\nexport const CHEMICALS_VOL_TYPES = [\n {\n name: 'Liquid Gel',\n color: '#84F4F7',\n key: 'gel',\n },\n {\n name: 'Acid',\n color: '#6ec732',\n key: 'acid',\n },\n {\n name: 'Liquid FR',\n color: '#FFA891',\n key: 'friction_reducer',\n },\n {\n name: 'Liquid FR Extra',\n color: '#91FFA8',\n key: 'friction_reducer_extra',\n },\n {\n name: 'Total Liquid FR',\n color: '#FF91A8',\n key: 'total_friction_reducer',\n },\n {\n name: 'Cross Linker',\n color: '#B0CA87',\n key: 'cross_linker',\n },\n {\n name: 'Liquid EB',\n color: '#32b8c7',\n key: 'enzyme_breaker',\n },\n {\n name: 'Polymer Plug',\n color: '#9fc732',\n key: 'ploymer_plug',\n },\n {\n name: 'Acid Inhibitor',\n color: '#AB9081',\n key: 'acid_inhibitor',\n },\n {\n name: 'Acid Retarder',\n color: '#7CC6FE',\n key: 'acid_retarder',\n },\n {\n name: 'Emulsifier',\n color: '#5DFDCB',\n key: 'emulsifier',\n },\n {\n name: 'Clay Stabilizer',\n color: '#9C6B20',\n key: 'clay_stabilizer',\n },\n {\n name: 'Surfactant',\n color: '#FFF689',\n key: 'surfactant',\n },\n {\n name: 'Non-Emulsifier',\n color: '#C0DF85',\n key: 'non_emulsifier',\n },\n {\n name: 'Fines Suspender',\n color: '#7B8E55',\n key: 'fines_suspender',\n },\n {\n name: 'Anti-Sludge',\n color: '#07393C',\n key: 'anti_sludge',\n },\n {\n name: 'Scale Inhibitor',\n color: '#C0E5CA',\n key: 'scale_inhibitor',\n },\n {\n name: 'Iron Control',\n color: '#CD5334',\n key: 'iron_control',\n },\n {\n name: 'Oxygen Scavenger',\n color: '#DFF283',\n key: 'oxygen_scavenger',\n },\n {\n name: 'Mutual Solvent',\n color: '#ad5ec7',\n key: 'mutual_solvent',\n },\n {\n name: 'Corrosion Inhibitor',\n color: '#7C2209',\n key: 'corrosion_inhibitor',\n },\n {\n name: 'Paraffin Control',\n color: '#F5A65B',\n key: 'paraffin_control',\n },\n {\n name: 'Biocide',\n color: '#E9B76A',\n key: 'biocide',\n },\n {\n name: 'PH Adjusting Agent',\n color: '#519872',\n key: 'ph_adjusting_agent',\n },\n {\n name: 'Accelerator',\n color: '#5E3023',\n key: 'accelerator',\n },\n {\n name: 'Instant Crosslinker',\n color: '#6E6E23',\n key: 'instant_crosslinker',\n },\n {\n name: 'Delayed Crosslinker',\n color: '#7E306E',\n key: 'delayed_crosslinker',\n },\n {\n name: 'Liquid Breaker',\n color: '#233023',\n key: 'liquid_breaker',\n },\n];\n\nexport const CHEMICALS_MASS_TYPES = [\n {\n // NOTE: Incorrect spellling `divertor` was used by accident in the begnning of development.\n // Since it was used in the column mapper, the key field should be kept as is for existing assets.\n name: 'Diverter',\n color: '#BB9394',\n key: 'divertor',\n },\n\n {\n name: 'Powder Breaker',\n color: '#c732b8',\n key: 'powder_breaker',\n },\n\n {\n name: 'Powder Gel',\n color: '#308E23',\n key: 'powder_gel',\n },\n {\n name: 'Powder FR',\n color: '#30239E',\n key: 'powder_friction_reducer',\n },\n {\n name: 'Powder EB',\n color: '#A32A78',\n key: 'powder_enzyme_breaker',\n },\n {\n name: 'Fluid Loss',\n color: '#c7bd32',\n key: 'fluid_loss',\n },\n];\n\n// TODO: These checmials are shared between wits channels and settings chemicals app\n// Like proppants, we might need to separate those two usage.\nexport const CHEMICALS_TYPES = [\n ...CHEMICALS_VOL_TYPES.map(item => ({ ...item, unitType: 'volume' })),\n ...CHEMICALS_MASS_TYPES.map(item => ({ ...item, unitType: 'mass' })),\n];\n\nexport const PROPPANTS_TYPES = [\n {\n name: '100 Mesh',\n key: '100_mesh',\n unitType: 'mass',\n color: '#ff0000',\n },\n {\n name: '40/70 Brown',\n key: '40_70_brown',\n unitType: 'mass',\n color: '#603000',\n },\n {\n name: '40/70 Mesh',\n key: '40_70_mesh',\n unitType: 'mass',\n color: '#5454cc',\n },\n {\n name: '40/70 NWS',\n key: '40_70_nws',\n unitType: 'mass',\n color: '#ff4242',\n },\n {\n name: '40/70 RBS',\n key: '40_70_rbs',\n unitType: 'mass',\n color: '#ff42bc',\n },\n {\n name: '30/50 Brown',\n key: '30_50_brown',\n unitType: 'mass',\n color: '#964B00',\n },\n {\n name: '30/50 Mesh',\n key: '30_50_mesh',\n unitType: 'mass',\n color: '#9898cc',\n },\n {\n name: '25/50 Brown',\n key: '25_50_brown',\n unitType: 'mass',\n color: '#B27C45',\n },\n {\n name: '25/50 Mesh',\n key: '25_50_mesh',\n unitType: 'mass',\n color: '#32aa32',\n },\n {\n name: '20/40 Mesh',\n key: '20_40_mesh',\n unitType: 'mass',\n color: '#ff7979',\n },\n {\n name: 'Petroleum Coke',\n key: 'petroleum_coke',\n unitType: 'mass',\n color: '#ff7c4d',\n },\n];\n\nexport const PROPPANTS_CON_TYPES = [\n {\n name: 'Total Proppant Conc',\n key: 'total_proppant_concentration',\n unitType: 'massConcentration',\n unit: 'lb/gal',\n color: '#FF8F0B',\n },\n {\n name: 'BHPC',\n key: 'bottomhole_proppant_concentration',\n unitType: 'massConcentration',\n unit: 'lb/gal',\n color: '#9F4BED',\n precision: 2,\n },\n];\n\nexport const PROPPANTS_MASS_TYPES = [\n {\n name: 'Total Proppant Mass',\n key: 'total_proppant_mass',\n unitType: 'mass',\n color: '#EE964B',\n unit: 'lb',\n },\n {\n name: 'Streamed Proppant Mass',\n key: 'proppant_1_mass',\n unitType: 'mass',\n color: '#C6C013',\n unit: 'lb',\n },\n];\n\nexport const STAGE_ACTUAL_PARAM_COLORS = {\n top_perforation: '#0085e3',\n bottom_perforation: '#8BC7F2',\n perforated_length: '#519872',\n total_shots: '#9500b7',\n flush_volume: '#FF6161',\n};\n\nexport const PRESSURE_COLORS = {\n well_head_pressure: '#F50057',\n wellhead_sensor: '#A0A0A0',\n pipe_frictional_pressure_loss: '#D8496B',\n nwb_frictional_pressure_loss: '#807DFF',\n bottomhole_pressure: '#4DCFB3',\n net_pressure: '#EE752F',\n max_treating_pressure: '#F50258',\n ave_treating_pressure: '#FF6161',\n breakdown_pressure: '#03db5a',\n isip_pressure: '#7169AE',\n delta_pressure: '#efd34b',\n hydrostatic_pressure: '#E458C8',\n backside_pressure: '#32aa32',\n pumpside_pressure: '#855CF8',\n negative_hydrostatic_pressure: '#EF83D9',\n pressure_at_gauge_md: '#D43AB5',\n sleeve_pressure_loss: '#F9B6EB',\n};\n\nexport const TRACKING_CONCENTRATION_COLORS = {\n fr_concentration: '#D99C88',\n surfactant_concentration: '#FEF798',\n powder_breaker_concentration: '#993895',\n};\n\nexport const FLOW_RATE_COLORS = {\n clean_flow_rate_in: '#7CC900',\n slurry_flow_rate_in: '#64B5FF',\n max_flow_rate: '#0085e3',\n ave_flow_rate: '#8BC7F2',\n};\n\nexport const TOTAL_VOLUME_COLORS = {\n total_slurry_volume_in: '#7169AE',\n total_clean_volume_in: '#257CFF',\n};\n\nexport const COMPLETION_OPERATION_TYPE = [\n {\n name: 'Fracturing',\n key: 'fracturing',\n color: '#429FF8',\n },\n {\n name: 'Wireline',\n key: 'wireline',\n color: '#FF9C00',\n },\n {\n name: 'Swap Over - Fracturing',\n key: 'swap_over_fracturing',\n color: '#347EC5',\n },\n {\n name: 'Swap Over - Wireline',\n key: 'swap_over_wireline',\n color: '#BF7500',\n },\n {\n name: 'Waiting on Offset Wells',\n key: 'waiting_on_offset_wells',\n color: '#BDBDBD',\n },\n];\n\nexport const WIRELINE_PARAMETERS = [\n {\n key: 'line_speed',\n label: 'Line Speed',\n unitType: 'velocity',\n unit: 'ft/min',\n isDefaultView: true,\n },\n {\n key: 'line_tension',\n label: 'Line Tension',\n unitType: 'mass',\n unit: 'lb',\n isDefaultView: true,\n },\n {\n key: 'casing_collar_locator',\n label: 'CCL',\n isDefaultView: true,\n },\n {\n key: 'elapsed_time',\n label: 'Elapsed Time',\n unitType: 'time',\n unit: 's',\n },\n {\n key: 'voltage',\n label: 'Voltage',\n unitType: 'voltage',\n unit: 'mV',\n },\n {\n key: 'current',\n label: 'Current',\n unitType: 'current',\n unit: 'mA',\n },\n {\n key: 'measured_depth',\n label: 'Measured Depth',\n unitType: 'length',\n unit: 'ft',\n },\n];\n\nexport const DEFAULT_SUPPORTED_PAD_MODES = [\n {\n key: 'pad',\n label: 'Pad Mode',\n },\n];\n\n/**\n * There are 5 different modes in completion apps\n *\n * 1 - Pad Mode (Display data from all assets on pad in series)\n * 2 - Active Frac Mode (Display data from active frac asset on active pad)\n * 3 - Active Wireline Mode (Display data from active wireline asset on active pad)\n * 4 - Active Pumpdown Mode (Display data from active pumpdown asset on active pad)\n * 5 - Custom Mode (Display data from user selected asset on active pad)\n * 6 - Pad Line (Display data from selected simul frac line)\n *\n */\nexport const COMPLETION_MODES = {\n pad: 'pad',\n activeFrac: 'active_frac',\n activeWireline: 'active_wireline',\n activePumpdown: 'active_pumpdown',\n custom: 'custom',\n padLine: 'padLine',\n};\n\n/**\n * There are 8 different types of completion apps,\n * and each one will have different modes in the dropdown\n *\n * 1 - Pad apps\n * 2 - Frac & Wireline Multi-Well Apps\n * 3 - Frac Multi-Well Apps\n * 4 - Wireline Multi-Well Apps\n * 5 - Pumpdown Multi-Well Apps\n * 6 - Frac Single Well Apps\n * 7 - Wireline Single Well Apps\n * 8 - Pumpdown Single Well Apps\n *\n */\nexport const COMPLETION_APP_TYPES = {\n padApp: 'Pad Apps',\n fracWirelineMultiWellApp: 'Frac & Wireline Multi-Well Apps',\n fracMultiWellApp: 'Frac Multi-Well Apps',\n wirelineMultiWellApp: 'Wireline Multi-Well Apps',\n pumpdownMultiWellApp: 'Pumpdown Multi-Well Apps',\n fracSingleWellApp: 'Frac Single Well Apps',\n wirelineSingleWellApp: 'Wireline Single Well Apps',\n pumpdownSingleWellApp: 'Pumpdown Single Well Apps',\n};\n\nexport const COMPLETION_APPTYPE_MODES_DICT = {\n [COMPLETION_APP_TYPES.padApp]: [COMPLETION_MODES.pad, COMPLETION_MODES.custom],\n [COMPLETION_APP_TYPES.fracWirelineMultiWellApp]: [\n COMPLETION_MODES.pad,\n COMPLETION_MODES.activeFrac,\n COMPLETION_MODES.activeWireline,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.fracMultiWellApp]: [\n COMPLETION_MODES.pad,\n COMPLETION_MODES.activeFrac,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.fracSingleWellApp]: [COMPLETION_MODES.activeFrac, COMPLETION_MODES.custom],\n [COMPLETION_APP_TYPES.wirelineMultiWellApp]: [\n COMPLETION_MODES.pad,\n COMPLETION_MODES.activeWireline,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.wirelineSingleWellApp]: [\n COMPLETION_MODES.activeWireline,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.pumpdownMultiWellApp]: [\n COMPLETION_MODES.pad,\n COMPLETION_MODES.activePumpdown,\n COMPLETION_MODES.custom,\n ],\n [COMPLETION_APP_TYPES.wirelineSingleWellApp]: [\n COMPLETION_MODES.activePumpdown,\n COMPLETION_MODES.custom,\n ],\n};\n"],"names":["ACTIVITIES","name","key","isFlatTime","color","WIRELINE_ACTIVITIES","WIRELINE_BREAKDOWN_ACTIVITIES","FLUIDS_TYPES","unitType","TOTAL_CHEMICAL_TYPE","CHEMICALS_VOL_TYPES","CHEMICALS_MASS_TYPES","CHEMICALS_TYPES","map","item","_objectSpread","PROPPANTS_TYPES","PROPPANTS_CON_TYPES","unit","precision","PROPPANTS_MASS_TYPES","STAGE_ACTUAL_PARAM_COLORS","top_perforation","bottom_perforation","perforated_length","total_shots","flush_volume","PRESSURE_COLORS","well_head_pressure","wellhead_sensor","pipe_frictional_pressure_loss","nwb_frictional_pressure_loss","bottomhole_pressure","net_pressure","max_treating_pressure","ave_treating_pressure","breakdown_pressure","isip_pressure","delta_pressure","hydrostatic_pressure","backside_pressure","pumpside_pressure","negative_hydrostatic_pressure","pressure_at_gauge_md","sleeve_pressure_loss","TRACKING_CONCENTRATION_COLORS","fr_concentration","surfactant_concentration","powder_breaker_concentration","FLOW_RATE_COLORS","clean_flow_rate_in","slurry_flow_rate_in","max_flow_rate","ave_flow_rate","TOTAL_VOLUME_COLORS","total_slurry_volume_in","total_clean_volume_in","COMPLETION_OPERATION_TYPE","WIRELINE_PARAMETERS","label","isDefaultView","DEFAULT_SUPPORTED_PAD_MODES","COMPLETION_MODES","pad","activeFrac","activeWireline","activePumpdown","custom","padLine","COMPLETION_APP_TYPES","padApp","fracWirelineMultiWellApp","fracMultiWellApp","wirelineMultiWellApp","pumpdownMultiWellApp","fracSingleWellApp","wirelineSingleWellApp","pumpdownSingleWellApp","COMPLETION_APPTYPE_MODES_DICT","_defineProperty","_COMPLETION_APPTYPE_M"],"mappings":"krBAAO,IAAMA,EAAa,CACxB,CACEC,KAAM,mBACNC,IAAK,mBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,WACNC,IAAK,WACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,aACNC,IAAK,aACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,MACNC,IAAK,MACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,QACNC,IAAK,QACLC,YAAY,EACZC,MAAO,YAIEC,EAAsB,CACjC,CACEJ,KAAM,mBACNC,IAAK,mBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,gBACNC,IAAK,gBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,cACNC,IAAK,cACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,SACNC,IAAK,SACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,cACNC,IAAK,cACLC,YAAY,EACZC,MAAO,YAIEE,EAAgC,CAC3C,CACEL,KAAM,wBACNC,IAAK,4BACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,wBACNC,IAAK,8BACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,mBACNC,IAAK,uBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,mBACNC,IAAK,yBACLC,YAAY,EACZC,MAAO,WAET,CACEH,KAAM,SACNC,IAAK,SACLC,YAAY,EACZC,MAAO,YAIEG,EAAe,CAC1B,CACEN,KAAM,WACNC,IAAK,WACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,iBACNC,IAAK,iBACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,eACNC,IAAK,eACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,aACNC,IAAK,aACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,gBACNC,IAAK,gBACLM,SAAU,MACVJ,MAAO,WAET,CACEH,KAAM,cACNC,IAAK,cACLM,SAAU,MACVJ,MAAO,YAIEK,EAAsB,CACjCR,KAAM,kBACNC,IAAK,yBACLE,MAAO,WAGIM,EAAsB,CACjC,CACET,KAAM,aACNG,MAAO,UACPF,IAAK,OAEP,CACED,KAAM,OACNG,MAAO,UACPF,IAAK,QAEP,CACED,KAAM,YACNG,MAAO,UACPF,IAAK,oBAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,0BAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,0BAEP,CACED,KAAM,eACNG,MAAO,UACPF,IAAK,gBAEP,CACED,KAAM,YACNG,MAAO,UACPF,IAAK,kBAEP,CACED,KAAM,eACNG,MAAO,UACPF,IAAK,gBAEP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,kBAEP,CACED,KAAM,gBACNG,MAAO,UACPF,IAAK,iBAEP,CACED,KAAM,aACNG,MAAO,UACPF,IAAK,cAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,mBAEP,CACED,KAAM,aACNG,MAAO,UACPF,IAAK,cAEP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,kBAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,mBAEP,CACED,KAAM,cACNG,MAAO,UACPF,IAAK,eAEP,CACED,KAAM,kBACNG,MAAO,UACPF,IAAK,mBAEP,CACED,KAAM,eACNG,MAAO,UACPF,IAAK,gBAEP,CACED,KAAM,mBACNG,MAAO,UACPF,IAAK,oBAEP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,kBAEP,CACED,KAAM,sBACNG,MAAO,UACPF,IAAK,uBAEP,CACED,KAAM,mBACNG,MAAO,UACPF,IAAK,oBAEP,CACED,KAAM,UACNG,MAAO,UACPF,IAAK,WAEP,CACED,KAAM,qBACNG,MAAO,UACPF,IAAK,sBAEP,CACED,KAAM,cACNG,MAAO,UACPF,IAAK,eAEP,CACED,KAAM,sBACNG,MAAO,UACPF,IAAK,uBAEP,CACED,KAAM,sBACNG,MAAO,UACPF,IAAK,uBAEP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,mBAIIS,EAAuB,CAClC,CAGEV,KAAM,WACNG,MAAO,UACPF,IAAK,YAGP,CACED,KAAM,iBACNG,MAAO,UACPF,IAAK,kBAGP,CACED,KAAM,aACNG,MAAO,UACPF,IAAK,cAEP,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"}
|
package/package.json
CHANGED
|
@@ -1771,6 +1771,18 @@ export namespace total_variance_hal {
|
|
|
1771
1771
|
let allowNegativeValue_2: boolean;
|
|
1772
1772
|
export { allowNegativeValue_2 as allowNegativeValue };
|
|
1773
1773
|
}
|
|
1774
|
+
export namespace target_formation {
|
|
1775
|
+
let label_127: string;
|
|
1776
|
+
export { label_127 as label };
|
|
1777
|
+
let key_127: string;
|
|
1778
|
+
export { key_127 as key };
|
|
1779
|
+
}
|
|
1780
|
+
export namespace mud_type {
|
|
1781
|
+
let label_128: string;
|
|
1782
|
+
export { label_128 as label };
|
|
1783
|
+
let key_128: string;
|
|
1784
|
+
export { key_128 as key };
|
|
1785
|
+
}
|
|
1774
1786
|
import { getMax } from './utils';
|
|
1775
1787
|
import { getSum } from './utils';
|
|
1776
1788
|
import { convertPercentageMetrics } from './utils';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metricsConfig.d.ts","sourceRoot":"","sources":["../../../src/utils/metrics/metricsConfig.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA6IqB,4DAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqR3C,oCAAwE;;;IAEpE,kDAAgD;;;;;;;;;;;IAOpD,sCAAgF;;;;IAE5E,oDAAgD
|
|
1
|
+
{"version":3,"file":"metricsConfig.d.ts","sourceRoot":"","sources":["../../../src/utils/metrics/metricsConfig.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA6IqB,4DAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqR3C,oCAAwE;;;IAEpE,kDAAgD;;;;;;;;;;;IAOpD,sCAAgF;;;;IAE5E,oDAAgD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBApZI,SAAS;uBAAT,SAAS;yCAAT,SAAS;2BAAT,SAAS"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{getUnitDescription as e,getUnitPreference as i,convertValue as t}from"../convert.js";import{getAverage as o,getMax as n,getSum as r,convertPercentageMetrics as l}from"./utils.js";import{metricsCategories as p}from"./metricsCategories.js";var _={label:"Hole Depth",key:"hole_depth",isBiggestBest:!0,unitType:"length",from:"ft",convertForMultiRigs:n,category:p.drilling_group},g={label:"Total Distance Drilled",key:"hole_depth_change",unitType:"length",from:"ft",isBiggestBest:!0,convertForMultiRigs:r,category:p.drilling_group},s={label:"Rotary Distance Drilled",key:"drilled_feet_rotary",unitType:"length",from:"ft",isBiggestBest:!0,convertForMultiRigs:r,category:p.drilling_group},a={label:"Slide Distance Drilled",key:"drilled_feet_slide",unitType:"length",from:"ft",convertForMultiRigs:r,category:p.drilling_group},u={label:"Rotary %",key:"drilled_feet_rotary_percentage",to:"%",customConvert:l,isBiggestBest:!0,convertForMultiRigs:o,category:p.percent_group},m={label:"Slide %",key:"drilled_feet_slide_percentage",to:"%",customConvert:l,convertForMultiRigs:o,category:p.percent_group},y={label:"Drilling %",key:"drilling_percentage",to:"%",customConvert:l,isBiggestBest:!0},c={label:"On-Bottom ROP",key:"rop",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},d={label:"Rotary ROP",key:"rop_rotary",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},h={label:"Slide ROP",key:"rop_slide",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},T={label:"Net ROP",key:"rop_net",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},f={label:"Gross ROP",key:"rop_gross",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},b={label:"Drilled Distance/Day",key:"feet_per_day",unitType:"length",from:"ft",formatUnitDisplay:function(e){return"".concat(e,"/day")},isBiggestBest:!0,convertForMultiRigs:o,category:p.drilling_group},k={label:"Rotary Drilling Time",key:"drilling_time_rotary",to:"h",isBiggestBest:!0},v={label:"Slide Drilling Time",key:"drilling_time_slide",to:"h"},R={label:"On Bottom Time",key:"on_bottom_time",to:"h",convertForMultiRigs:r,category:p.drilling_group},C={label:"On Bottom %",key:"on_bottom_percentage",to:"%",customConvert:l,isBiggestBest:!0,convertForMultiRigs:o,category:p.percent_group},M={label:"Slips to Slips",key:"drilling_connection_average",to:"min",unitType:"time",from:"s",convertForMultiRigs:o,category:p.drilling_connection_group},F={label:"Weight to Weight",key:"weight_to_weight_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_connection_group},B={label:"Bottom to Slips",key:"bottom_to_slips_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_connection_group},H={label:"Slips to Bottom",key:"slips_to_bottom_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_connection_group},q={label:"Pumps on to Bottom",key:"pumps_on_to_bottom_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_connection_group},D={label:"Entire Hole Tripping In Speed",key:"tripping_in_speed",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_in_speed_group},S={label:"Entire Hole Tripping Out Speed",key:"tripping_out_speed",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_out_speed_group},O={label:"Cased Hole Tripping In Speed",key:"tripping_in_speed_cased",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_in_speed_group},P={label:"Cased Hole Tripping Out Speed",key:"tripping_out_speed_cased",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_out_speed_group},I={label:"Open Hole Tripping In Speed",key:"tripping_in_speed_open",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_in_speed_group},W={label:"Open Hole Tripping Out Speed",key:"tripping_out_speed_open",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_out_speed_group},L={label:"Casing Tripping In Cased Hole",key:"tripping_in_time_cased",to:"min",from:"s",unitType:"time"},U={label:"Casing Tripping In Open Hole",key:"tripping_in_time_open",to:"min",from:"s",unitType:"time"},w={label:"Casing Tripping In Entire Hole",key:"tripping_in_time",to:"min",from:"s",unitType:"time"},E={label:"Connection Time in Cased Hole",key:"tripping_in_connection_time_cased",to:"min",from:"s",unitType:"time"},N={label:"Casing Tripping In Open Hole + Connection Time in Open Hole",key:"tripping_in_time_with_connection_open",to:"min",from:"h",unitType:"time"},G={label:"Casing Tripping In Entire Hole + Connection Time in Entire Hole",key:"tripping_in_time_with_connection",to:"min",from:"h",unitType:"time"},V={label:"Casing Slips to Slips",key:"slips_to_slips_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.casing_group},j={label:"Casing - Cased Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_cased",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.casing_group},A={label:"Casing - Open Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_open",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.casing_group},x={label:"Casing - Entire Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.casing_group},X={label:"Entire Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_in_speed_group},z={label:"Open Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_open_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_in_speed_group},J={label:"Cased Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_cased_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_in_speed_group},K={label:"Entire Hole Tripping Out Speed (With Connection)",key:"gross_tripping_out_speed_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_out_speed_group},Q={label:"Open Hole Tripping Out Speed (With Connection)",key:"gross_tripping_out_speed_open_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_out_speed_group},Y={label:"Cased Hole Tripping Out Speed (With Connection)",key:"gross_tripping_out_speed_cased_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_out_speed_group},Z={label:"Gross Tripping In Speed",key:"gross_tripping_in_speed_total",unitType:"velocity",from:"ft/h",convertForMultiRigs:o},$={label:"Gross Tripping Out Speed",key:"gross_tripping_out_speed_total",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_out_speed_group},ee={label:"Cost/".concat(e(i("length")).singular),labelFunc:function(){return"Cost/".concat(e(i("length")).singular)},key:"cost_per_ft",customConvert:function(e){return e/t(1,"length","ft")},convertForMultiRigs:o,category:p.cost_group},ie={label:"Lateral Cost/".concat(e(i("length")).singular),labelFunc:function(){return"Lateral Cost/".concat(e(i("length")).singular)},key:"cost_per_lat_ft",customConvert:function(e){return e/t(1,"length","ft")},convertForMultiRigs:o,category:p.cost_group},te={label:"NPT",key:"npt",unitType:"time",from:"h",to:"h",convertForMultiRigs:r,category:p.drilling_group},oe={label:"Circulating Time",key:"circulating_time",unitType:"time",from:"h",to:"h",convertForMultiRigs:r,category:p.drilling_group},ne={label:"Spud to Rig Release",key:"spud_to_rig_release_time",unitType:"time",from:"h",to:"d",convertForMultiRigs:n,category:p.spud_time_group},re={label:"Spud to Target",key:"spud_to_target",unitType:"time",from:"h",to:"d",convertForMultiRigs:n,category:p.spud_time_group},le={label:"Spud to Total Depth",key:"spud_to_total_depth_time",unitType:"time",from:"h",to:"d",convertForMultiRigs:n,category:p.spud_time_group},pe={label:"Spud to Landing Point",key:"spud_to_landing_point",unitType:"time",from:"h",to:"d",convertForMultiRigs:n,category:p.spud_time_group},_e={label:"Gross Time",key:"gross_time",unitType:"time",from:"s",to:"h"},ge={label:"Turn Rate",key:"turn_rate",unitType:"anglePerLength",from:"dp100f",allowNegativeValue:!0},se={label:"Build Rate",key:"build_rate",unitType:"anglePerLength",from:"dp100f",allowNegativeValue:!0},ae={label:"Cumulative Tortuosity",key:"cumulative_tortuosity",convertForMultiRigs:o,category:p.drilling_group},ue={label:"Drilling Stand Count",key:"weight_to_weight_count",convertForMultiRigs:r,category:p.drilling_connection_group},me={label:"Tripping Connection Count",key:"tripping_connection_count",convertForMultiRigs:r,category:p.tripping_connection_group},ye={label:"Casing Stand Count",key:"slips_to_slips_count",convertForMultiRigs:r,category:p.casing_group},ce={label:"Total BHA's",key:"bha_count",category:p.drilling_group},de={label:"Cased Hole Tripping In Time (With Connection)",key:"gross_tripping_in_time_cased",unitType:"time",from:"min"},he={label:"Open Hole Tripping In Time (With Connection)",key:"gross_tripping_in_time_open",unitType:"time",from:"min"},Te={label:"Tripping in (Connection)",key:"tripping_in_connection_time",unitType:"time",from:"min"},fe={label:"Tripping out (Connection)",key:"tripping_out_connection_time",unitType:"time",from:"min"},be={label:"NU/ND Diverter",key:"nu_nd_diverter_timelog_hal",unitType:"time",from:"s",to:"h"},ke={label:"RU/RD Casing Handling Equip",key:"ru_rd_casing_handling_equip_timelog_hal",unitType:"time",from:"s",to:"h"},ve={label:"BOP/Wellhead/XMT NU/ND",key:"bop_wellhead_xmt_nu_nd_timelog_hal",unitType:"time",from:"s",to:"h"},Re={label:"BOP Pressure & Function Test",key:"bop_pressure_function_test_timelog_hal",unitType:"time",from:"s",to:"h"},Ce={label:"Install / Retrieve Wear Bushing",key:"install_retrieve_wear_bushing_timelog_hal",unitType:"time",from:"s",to:"h"},Me={label:"P/U & L/D BHA",key:"p_u_l_d_bha_timelog_hal",unitType:"time",from:"s",to:"h"},Fe={label:"Drillout Casing Shoe Track",key:"drillout_casing_shoe_track_timelog_hal",unitType:"time",from:"s",to:"h"},Be={label:"Slip & Cut",key:"slip_cut_timelog_hal",unitType:"time",from:"s",to:"h"},He={label:"Survey Time",key:"survey_time_timelog_hal",unitType:"time",from:"s",to:"h"},qe={label:"Drill & FIT/LOT",key:"drill_fit_lot_timelog_hal",unitType:"time",from:"s",to:"h"},De={label:"Pressure Test",key:"pressure_test_timelog_hal",unitType:"time",from:"s",to:"h"},Se={label:"RU/RD MPD System or RCD",key:"ru_rd_mpd_system_or_rcd_timelog_hal",unitType:"time",from:"s",to:"h"},Oe={label:"Achieve Frac Design Injection Rate",key:"achieve_frac_design_injection_rate_timelog_hal",unitType:"time",from:"s",to:"h"},Pe={label:"RU/RD Frac Head",key:"ru_rd_frac_head_timelog_hal",unitType:"time",from:"s",to:"h"},Ie={label:"RU/RD Wireline",key:"ru_rd_wireline_timelog_hal",unitType:"time",from:"s",to:"h"},We={label:"RU/RD Lubricator & Perf Guns",key:"ru_rd_lubricator_perf_guns_timelog_hal",unitType:"time",from:"s",to:"h"},Le={label:"NU/ND Diverter",key:"nu_nd_diverter_timelog_equinor",unitType:"time",from:"s",to:"h"},Ue={label:"RU Casing Handling Equipment",key:"ru_casing_handling_equipment_equinor",unitType:"time",from:"s",to:"h"},we={label:"RD Casing Handling Equipment",key:"rd_casing_handling_equipment_equinor",unitType:"time",from:"s",to:"h"},Ee={label:"BOP/Wellhead/XMT NU/ND",key:"bop_wellhead_xmt_nu_nd_equinor",unitType:"time",from:"s",to:"h"},Ne={label:"BOP Test",key:"bop_test_equinor",unitType:"time",from:"s",to:"h"},Ge={label:"Install Wear Bushing",key:"install_wear_bushing_equinor",unitType:"time",from:"s",to:"h"},Ve={label:"Retrieve Wear Bushing",key:"retrieve_wear_bushing_equinor",unitType:"time",from:"s",to:"h"},je={label:"M/U BHA",key:"mu_bha_equinor",unitType:"time",from:"s",to:"h"},Ae={label:"L/D BHA",key:"ld_bha_equinor",unitType:"time",from:"s",to:"h"},xe={label:"Drillout Casing Shoe Track",key:"drillout_casing_shoe_track_equinor",unitType:"time",from:"s",to:"h"},Xe={label:"Slip & Cut",key:"slip_cut_equinor",unitType:"time",from:"s",to:"h"},ze={label:"Survey Time",key:"survey_time_equinor",unitType:"time",from:"s",to:"h"},Je={label:"Drill & FIT/LOT",key:"drill_fit_lot_equinor",unitType:"time",from:"s",to:"h"},Ke={label:"Pressure Test Casing/Liner",key:"pressure_test_casing_liner_equinor",unitType:"time",from:"s",to:"h"},Qe={label:"Land & Test Casing/Tubing Hanger",key:"land_test_casing_hanger_equinor",unitType:"time",from:"s",to:"h"},Ye={label:"M/U Wireline - Open Hole",key:"mu_wireline_open_hole_equinor",unitType:"time",from:"s",to:"h"},Ze={label:"L/D Wireline - Open Hole",key:"ld_wireline_open_hole_equinor",unitType:"time",from:"s",to:"h"},$e={label:"M/U Wireline - Cased Hole",key:"mu_wireline_cased_hole_equinor",unitType:"time",from:"s",to:"h"},ei={label:"L/D Wireline - Cased Hole",key:"ld_wireline_cased_hole_equinor",unitType:"time",from:"s",to:"h"},ii={label:"M/U Shoetrack",key:"mu_shoetrack_equinor",unitType:"time",from:"s",to:"h"},ti={label:"Logging Time CH",key:"logging_time_ch_equinor",unitType:"time",from:"s",to:"h"},oi={label:"Logging Time OH",key:"logging_time_oh_equinor",unitType:"time",from:"s",to:"h"},ni={label:"M/U Hanger",key:"mu_hanger_equinor",unitType:"time",from:"s",to:"h"},ri={label:"Cementing Time",key:"cementing_time_equinor",unitType:"time",from:"s",to:"h"},li={label:"Prepare for cementing",key:"prepare_for_cementing_equinor",unitType:"time",from:"s",to:"h"},pi={label:"Run Landing String",key:"run_landing_string_equinor",unitType:"time",from:"s",to:"h"},_i={label:"Pull Landing String",key:"pull_landing_string_equinor",unitType:"time",from:"s",to:"h"},gi={label:"Prep to POOH",key:"prep_to_pooh_equinor",unitType:"time",from:"s",to:"h"},si={label:"Nipple Up BOP",key:"nipple_up_bop_equinor",unitType:"time",from:"s",to:"h"},ai={label:"Nipple Down BOP",key:"nipple_down_bop_equinor",unitType:"time",from:"s",to:"h"},ui={label:"M/U Cement Stand",key:"mu_cement_stand_equinor",unitType:"time",from:"s",to:"h"},mi={label:"L/D Cement Stand",key:"ld_cement_stand_equinor",unitType:"time",from:"s",to:"h"},yi={label:"M/U DHPG",key:"mu_dhpg_equinor",unitType:"time",from:"s",to:"h"},ci={label:"L/D DHPG",key:"ld_dhpg_equinor",unitType:"time",from:"s",to:"h"},di={label:"M/U DHSV",key:"mu_dhsv_equinor",unitType:"time",from:"s",to:"h"},hi={label:"L/D DHSV",key:"ld_dhsv_equinor",unitType:"time",from:"s",to:"h"},Ti={label:"M/U Gaslift Equipment",key:"mu_gaslift_equipment_equinor",unitType:"time",from:"s",to:"h"},fi={label:"L/D Gaslift Equipment",key:"ld_gaslift_equipment_equinor",unitType:"time",from:"s",to:"h"},bi={label:"Open Hole Tripping In Connection Time",key:"tripping_in_connection_time_open_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},ki={label:"Cased Hole Tripping In Connection Time",key:"tripping_in_connection_time_cased_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},vi={label:"Entire Hole Tripping In Connection Time",key:"tripping_in_connection_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},Ri={label:"Open Hole Tripping Out Connection Time",key:"tripping_out_connection_time_open_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},Ci={label:"Cased Hole Tripping Out Connection Time",key:"tripping_out_connection_time_cased_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},Mi={label:"Entire Hole Tripping Out Connection Time",key:"tripping_out_connection_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},Fi={label:"Total Variance",key:"total_variance_hal",isBiggestBest:!1,to:"h",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_group,allowNegativeValue:!0};export{Oe as achieve_frac_design_injection_rate_timelog_hal,ce as bha_count,Re as bop_pressure_function_test_timelog_hal,Ne as bop_test_equinor,Ee as bop_wellhead_xmt_nu_nd_equinor,ve as bop_wellhead_xmt_nu_nd_timelog_hal,B as bottom_to_slips_average,se as build_rate,ri as cementing_time_equinor,oe as circulating_time,ee as cost_per_ft,ie as cost_per_lat_ft,ae as cumulative_tortuosity,Je as drill_fit_lot_equinor,qe as drill_fit_lot_timelog_hal,s as drilled_feet_rotary,u as drilled_feet_rotary_percentage,a as drilled_feet_slide,m as drilled_feet_slide_percentage,M as drilling_connection_average,y as drilling_percentage,k as drilling_time_rotary,v as drilling_time_slide,xe as drillout_casing_shoe_track_equinor,Fe as drillout_casing_shoe_track_timelog_hal,b as feet_per_day,_e as gross_time,x as gross_tripping_in_speed,X as gross_tripping_in_speed_bha,j as gross_tripping_in_speed_cased,J as gross_tripping_in_speed_cased_bha,A as gross_tripping_in_speed_open,z as gross_tripping_in_speed_open_bha,Z as gross_tripping_in_speed_total,de as gross_tripping_in_time_cased,he as gross_tripping_in_time_open,K as gross_tripping_out_speed_bha,Y as gross_tripping_out_speed_cased_bha,Q as gross_tripping_out_speed_open_bha,$ as gross_tripping_out_speed_total,_ as hole_depth,g as hole_depth_change,Ce as install_retrieve_wear_bushing_timelog_hal,Ge as install_wear_bushing_equinor,Qe as land_test_casing_hanger_equinor,Ae as ld_bha_equinor,mi as ld_cement_stand_equinor,ci as ld_dhpg_equinor,hi as ld_dhsv_equinor,fi as ld_gaslift_equipment_equinor,ei as ld_wireline_cased_hole_equinor,Ze as ld_wireline_open_hole_equinor,ti as logging_time_ch_equinor,oi as logging_time_oh_equinor,je as mu_bha_equinor,ui as mu_cement_stand_equinor,yi as mu_dhpg_equinor,di as mu_dhsv_equinor,Ti as mu_gaslift_equipment_equinor,ni as mu_hanger_equinor,ii as mu_shoetrack_equinor,$e as mu_wireline_cased_hole_equinor,Ye as mu_wireline_open_hole_equinor,ai as nipple_down_bop_equinor,si as nipple_up_bop_equinor,te as npt,Le as nu_nd_diverter_timelog_equinor,be as nu_nd_diverter_timelog_hal,C as on_bottom_percentage,R as on_bottom_time,Me as p_u_l_d_bha_timelog_hal,gi as prep_to_pooh_equinor,li as prepare_for_cementing_equinor,Ke as pressure_test_casing_liner_equinor,De as pressure_test_timelog_hal,_i as pull_landing_string_equinor,q as pumps_on_to_bottom_average,we as rd_casing_handling_equipment_equinor,Ve as retrieve_wear_bushing_equinor,c as rop,f as rop_gross,T as rop_net,d as rop_rotary,h as rop_slide,Ue as ru_casing_handling_equipment_equinor,ke as ru_rd_casing_handling_equip_timelog_hal,Pe as ru_rd_frac_head_timelog_hal,We as ru_rd_lubricator_perf_guns_timelog_hal,Se as ru_rd_mpd_system_or_rcd_timelog_hal,Ie as ru_rd_wireline_timelog_hal,pi as run_landing_string_equinor,Xe as slip_cut_equinor,Be as slip_cut_timelog_hal,H as slips_to_bottom_average,V as slips_to_slips,ye as slips_to_slips_count,pe as spud_to_landing_point,ne as spud_to_rig_release_time,re as spud_to_target,le as spud_to_total_depth_time,ze as survey_time_equinor,He as survey_time_timelog_hal,Fi as total_variance_hal,me as tripping_connection_count,vi as tripping_in_connection_average,Te as tripping_in_connection_time,E as tripping_in_connection_time_cased,ki as tripping_in_connection_time_cased_average,bi as tripping_in_connection_time_open_average,D as tripping_in_speed,O as tripping_in_speed_cased,I as tripping_in_speed_open,w as tripping_in_time,L as tripping_in_time_cased,U as tripping_in_time_open,G as tripping_in_time_with_connection,N as tripping_in_time_with_connection_open,Mi as tripping_out_connection_average,fe as tripping_out_connection_time,Ci as tripping_out_connection_time_cased_average,Ri as tripping_out_connection_time_open_average,S as tripping_out_speed,P as tripping_out_speed_cased,W as tripping_out_speed_open,ge as turn_rate,F as weight_to_weight_average,ue as weight_to_weight_count};
|
|
1
|
+
import{getUnitDescription as e,getUnitPreference as i,convertValue as t}from"../convert.js";import{getAverage as o,getMax as n,getSum as r,convertPercentageMetrics as l}from"./utils.js";import{metricsCategories as p}from"./metricsCategories.js";var _={label:"Hole Depth",key:"hole_depth",isBiggestBest:!0,unitType:"length",from:"ft",convertForMultiRigs:n,category:p.drilling_group},g={label:"Total Distance Drilled",key:"hole_depth_change",unitType:"length",from:"ft",isBiggestBest:!0,convertForMultiRigs:r,category:p.drilling_group},s={label:"Rotary Distance Drilled",key:"drilled_feet_rotary",unitType:"length",from:"ft",isBiggestBest:!0,convertForMultiRigs:r,category:p.drilling_group},a={label:"Slide Distance Drilled",key:"drilled_feet_slide",unitType:"length",from:"ft",convertForMultiRigs:r,category:p.drilling_group},u={label:"Rotary %",key:"drilled_feet_rotary_percentage",to:"%",customConvert:l,isBiggestBest:!0,convertForMultiRigs:o,category:p.percent_group},m={label:"Slide %",key:"drilled_feet_slide_percentage",to:"%",customConvert:l,convertForMultiRigs:o,category:p.percent_group},y={label:"Drilling %",key:"drilling_percentage",to:"%",customConvert:l,isBiggestBest:!0},c={label:"On-Bottom ROP",key:"rop",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},d={label:"Rotary ROP",key:"rop_rotary",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},h={label:"Slide ROP",key:"rop_slide",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},T={label:"Net ROP",key:"rop_net",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},f={label:"Gross ROP",key:"rop_gross",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.rop_group},b={label:"Drilled Distance/Day",key:"feet_per_day",unitType:"length",from:"ft",formatUnitDisplay:function(e){return"".concat(e,"/day")},isBiggestBest:!0,convertForMultiRigs:o,category:p.drilling_group},k={label:"Rotary Drilling Time",key:"drilling_time_rotary",to:"h",isBiggestBest:!0},v={label:"Slide Drilling Time",key:"drilling_time_slide",to:"h"},R={label:"On Bottom Time",key:"on_bottom_time",to:"h",convertForMultiRigs:r,category:p.drilling_group},C={label:"On Bottom %",key:"on_bottom_percentage",to:"%",customConvert:l,isBiggestBest:!0,convertForMultiRigs:o,category:p.percent_group},M={label:"Slips to Slips",key:"drilling_connection_average",to:"min",unitType:"time",from:"s",convertForMultiRigs:o,category:p.drilling_connection_group},F={label:"Weight to Weight",key:"weight_to_weight_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_connection_group},B={label:"Bottom to Slips",key:"bottom_to_slips_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_connection_group},H={label:"Slips to Bottom",key:"slips_to_bottom_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_connection_group},q={label:"Pumps on to Bottom",key:"pumps_on_to_bottom_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_connection_group},D={label:"Entire Hole Tripping In Speed",key:"tripping_in_speed",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_in_speed_group},S={label:"Entire Hole Tripping Out Speed",key:"tripping_out_speed",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_out_speed_group},O={label:"Cased Hole Tripping In Speed",key:"tripping_in_speed_cased",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_in_speed_group},P={label:"Cased Hole Tripping Out Speed",key:"tripping_out_speed_cased",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_out_speed_group},I={label:"Open Hole Tripping In Speed",key:"tripping_in_speed_open",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_in_speed_group},W={label:"Open Hole Tripping Out Speed",key:"tripping_out_speed_open",unitType:"velocity",from:"ft/h",isBiggestBest:!0,convertForMultiRigs:o,category:p.tripping_out_speed_group},L={label:"Casing Tripping In Cased Hole",key:"tripping_in_time_cased",to:"min",from:"s",unitType:"time"},U={label:"Casing Tripping In Open Hole",key:"tripping_in_time_open",to:"min",from:"s",unitType:"time"},w={label:"Casing Tripping In Entire Hole",key:"tripping_in_time",to:"min",from:"s",unitType:"time"},E={label:"Connection Time in Cased Hole",key:"tripping_in_connection_time_cased",to:"min",from:"s",unitType:"time"},N={label:"Casing Tripping In Open Hole + Connection Time in Open Hole",key:"tripping_in_time_with_connection_open",to:"min",from:"h",unitType:"time"},G={label:"Casing Tripping In Entire Hole + Connection Time in Entire Hole",key:"tripping_in_time_with_connection",to:"min",from:"h",unitType:"time"},V={label:"Casing Slips to Slips",key:"slips_to_slips_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.casing_group},j={label:"Casing - Cased Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_cased",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.casing_group},A={label:"Casing - Open Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_open",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.casing_group},x={label:"Casing - Entire Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.casing_group},X={label:"Entire Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_in_speed_group},z={label:"Open Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_open_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_in_speed_group},J={label:"Cased Hole Tripping In Speed (With Connection)",key:"gross_tripping_in_speed_cased_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_in_speed_group},K={label:"Entire Hole Tripping Out Speed (With Connection)",key:"gross_tripping_out_speed_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_out_speed_group},Q={label:"Open Hole Tripping Out Speed (With Connection)",key:"gross_tripping_out_speed_open_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_out_speed_group},Y={label:"Cased Hole Tripping Out Speed (With Connection)",key:"gross_tripping_out_speed_cased_bha",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_out_speed_group},Z={label:"Gross Tripping In Speed",key:"gross_tripping_in_speed_total",unitType:"velocity",from:"ft/h",convertForMultiRigs:o},$={label:"Gross Tripping Out Speed",key:"gross_tripping_out_speed_total",unitType:"velocity",from:"ft/h",convertForMultiRigs:o,category:p.tripping_out_speed_group},ee={label:"Cost/".concat(e(i("length")).singular),labelFunc:function(){return"Cost/".concat(e(i("length")).singular)},key:"cost_per_ft",customConvert:function(e){return e/t(1,"length","ft")},convertForMultiRigs:o,category:p.cost_group},ie={label:"Lateral Cost/".concat(e(i("length")).singular),labelFunc:function(){return"Lateral Cost/".concat(e(i("length")).singular)},key:"cost_per_lat_ft",customConvert:function(e){return e/t(1,"length","ft")},convertForMultiRigs:o,category:p.cost_group},te={label:"NPT",key:"npt",unitType:"time",from:"h",to:"h",convertForMultiRigs:r,category:p.drilling_group},oe={label:"Circulating Time",key:"circulating_time",unitType:"time",from:"h",to:"h",convertForMultiRigs:r,category:p.drilling_group},ne={label:"Spud to Rig Release",key:"spud_to_rig_release_time",unitType:"time",from:"h",to:"d",convertForMultiRigs:n,category:p.spud_time_group},re={label:"Spud to Target",key:"spud_to_target",unitType:"time",from:"h",to:"d",convertForMultiRigs:n,category:p.spud_time_group},le={label:"Spud to Total Depth",key:"spud_to_total_depth_time",unitType:"time",from:"h",to:"d",convertForMultiRigs:n,category:p.spud_time_group},pe={label:"Spud to Landing Point",key:"spud_to_landing_point",unitType:"time",from:"h",to:"d",convertForMultiRigs:n,category:p.spud_time_group},_e={label:"Gross Time",key:"gross_time",unitType:"time",from:"s",to:"h"},ge={label:"Turn Rate",key:"turn_rate",unitType:"anglePerLength",from:"dp100f",allowNegativeValue:!0},se={label:"Build Rate",key:"build_rate",unitType:"anglePerLength",from:"dp100f",allowNegativeValue:!0},ae={label:"Cumulative Tortuosity",key:"cumulative_tortuosity",convertForMultiRigs:o,category:p.drilling_group},ue={label:"Drilling Stand Count",key:"weight_to_weight_count",convertForMultiRigs:r,category:p.drilling_connection_group},me={label:"Tripping Connection Count",key:"tripping_connection_count",convertForMultiRigs:r,category:p.tripping_connection_group},ye={label:"Casing Stand Count",key:"slips_to_slips_count",convertForMultiRigs:r,category:p.casing_group},ce={label:"Total BHA's",key:"bha_count",category:p.drilling_group},de={label:"Cased Hole Tripping In Time (With Connection)",key:"gross_tripping_in_time_cased",unitType:"time",from:"min"},he={label:"Open Hole Tripping In Time (With Connection)",key:"gross_tripping_in_time_open",unitType:"time",from:"min"},Te={label:"Tripping in (Connection)",key:"tripping_in_connection_time",unitType:"time",from:"min"},fe={label:"Tripping out (Connection)",key:"tripping_out_connection_time",unitType:"time",from:"min"},be={label:"NU/ND Diverter",key:"nu_nd_diverter_timelog_hal",unitType:"time",from:"s",to:"h"},ke={label:"RU/RD Casing Handling Equip",key:"ru_rd_casing_handling_equip_timelog_hal",unitType:"time",from:"s",to:"h"},ve={label:"BOP/Wellhead/XMT NU/ND",key:"bop_wellhead_xmt_nu_nd_timelog_hal",unitType:"time",from:"s",to:"h"},Re={label:"BOP Pressure & Function Test",key:"bop_pressure_function_test_timelog_hal",unitType:"time",from:"s",to:"h"},Ce={label:"Install / Retrieve Wear Bushing",key:"install_retrieve_wear_bushing_timelog_hal",unitType:"time",from:"s",to:"h"},Me={label:"P/U & L/D BHA",key:"p_u_l_d_bha_timelog_hal",unitType:"time",from:"s",to:"h"},Fe={label:"Drillout Casing Shoe Track",key:"drillout_casing_shoe_track_timelog_hal",unitType:"time",from:"s",to:"h"},Be={label:"Slip & Cut",key:"slip_cut_timelog_hal",unitType:"time",from:"s",to:"h"},He={label:"Survey Time",key:"survey_time_timelog_hal",unitType:"time",from:"s",to:"h"},qe={label:"Drill & FIT/LOT",key:"drill_fit_lot_timelog_hal",unitType:"time",from:"s",to:"h"},De={label:"Pressure Test",key:"pressure_test_timelog_hal",unitType:"time",from:"s",to:"h"},Se={label:"RU/RD MPD System or RCD",key:"ru_rd_mpd_system_or_rcd_timelog_hal",unitType:"time",from:"s",to:"h"},Oe={label:"Achieve Frac Design Injection Rate",key:"achieve_frac_design_injection_rate_timelog_hal",unitType:"time",from:"s",to:"h"},Pe={label:"RU/RD Frac Head",key:"ru_rd_frac_head_timelog_hal",unitType:"time",from:"s",to:"h"},Ie={label:"RU/RD Wireline",key:"ru_rd_wireline_timelog_hal",unitType:"time",from:"s",to:"h"},We={label:"RU/RD Lubricator & Perf Guns",key:"ru_rd_lubricator_perf_guns_timelog_hal",unitType:"time",from:"s",to:"h"},Le={label:"NU/ND Diverter",key:"nu_nd_diverter_timelog_equinor",unitType:"time",from:"s",to:"h"},Ue={label:"RU Casing Handling Equipment",key:"ru_casing_handling_equipment_equinor",unitType:"time",from:"s",to:"h"},we={label:"RD Casing Handling Equipment",key:"rd_casing_handling_equipment_equinor",unitType:"time",from:"s",to:"h"},Ee={label:"BOP/Wellhead/XMT NU/ND",key:"bop_wellhead_xmt_nu_nd_equinor",unitType:"time",from:"s",to:"h"},Ne={label:"BOP Test",key:"bop_test_equinor",unitType:"time",from:"s",to:"h"},Ge={label:"Install Wear Bushing",key:"install_wear_bushing_equinor",unitType:"time",from:"s",to:"h"},Ve={label:"Retrieve Wear Bushing",key:"retrieve_wear_bushing_equinor",unitType:"time",from:"s",to:"h"},je={label:"M/U BHA",key:"mu_bha_equinor",unitType:"time",from:"s",to:"h"},Ae={label:"L/D BHA",key:"ld_bha_equinor",unitType:"time",from:"s",to:"h"},xe={label:"Drillout Casing Shoe Track",key:"drillout_casing_shoe_track_equinor",unitType:"time",from:"s",to:"h"},Xe={label:"Slip & Cut",key:"slip_cut_equinor",unitType:"time",from:"s",to:"h"},ze={label:"Survey Time",key:"survey_time_equinor",unitType:"time",from:"s",to:"h"},Je={label:"Drill & FIT/LOT",key:"drill_fit_lot_equinor",unitType:"time",from:"s",to:"h"},Ke={label:"Pressure Test Casing/Liner",key:"pressure_test_casing_liner_equinor",unitType:"time",from:"s",to:"h"},Qe={label:"Land & Test Casing/Tubing Hanger",key:"land_test_casing_hanger_equinor",unitType:"time",from:"s",to:"h"},Ye={label:"M/U Wireline - Open Hole",key:"mu_wireline_open_hole_equinor",unitType:"time",from:"s",to:"h"},Ze={label:"L/D Wireline - Open Hole",key:"ld_wireline_open_hole_equinor",unitType:"time",from:"s",to:"h"},$e={label:"M/U Wireline - Cased Hole",key:"mu_wireline_cased_hole_equinor",unitType:"time",from:"s",to:"h"},ei={label:"L/D Wireline - Cased Hole",key:"ld_wireline_cased_hole_equinor",unitType:"time",from:"s",to:"h"},ii={label:"M/U Shoetrack",key:"mu_shoetrack_equinor",unitType:"time",from:"s",to:"h"},ti={label:"Logging Time CH",key:"logging_time_ch_equinor",unitType:"time",from:"s",to:"h"},oi={label:"Logging Time OH",key:"logging_time_oh_equinor",unitType:"time",from:"s",to:"h"},ni={label:"M/U Hanger",key:"mu_hanger_equinor",unitType:"time",from:"s",to:"h"},ri={label:"Cementing Time",key:"cementing_time_equinor",unitType:"time",from:"s",to:"h"},li={label:"Prepare for cementing",key:"prepare_for_cementing_equinor",unitType:"time",from:"s",to:"h"},pi={label:"Run Landing String",key:"run_landing_string_equinor",unitType:"time",from:"s",to:"h"},_i={label:"Pull Landing String",key:"pull_landing_string_equinor",unitType:"time",from:"s",to:"h"},gi={label:"Prep to POOH",key:"prep_to_pooh_equinor",unitType:"time",from:"s",to:"h"},si={label:"Nipple Up BOP",key:"nipple_up_bop_equinor",unitType:"time",from:"s",to:"h"},ai={label:"Nipple Down BOP",key:"nipple_down_bop_equinor",unitType:"time",from:"s",to:"h"},ui={label:"M/U Cement Stand",key:"mu_cement_stand_equinor",unitType:"time",from:"s",to:"h"},mi={label:"L/D Cement Stand",key:"ld_cement_stand_equinor",unitType:"time",from:"s",to:"h"},yi={label:"M/U DHPG",key:"mu_dhpg_equinor",unitType:"time",from:"s",to:"h"},ci={label:"L/D DHPG",key:"ld_dhpg_equinor",unitType:"time",from:"s",to:"h"},di={label:"M/U DHSV",key:"mu_dhsv_equinor",unitType:"time",from:"s",to:"h"},hi={label:"L/D DHSV",key:"ld_dhsv_equinor",unitType:"time",from:"s",to:"h"},Ti={label:"M/U Gaslift Equipment",key:"mu_gaslift_equipment_equinor",unitType:"time",from:"s",to:"h"},fi={label:"L/D Gaslift Equipment",key:"ld_gaslift_equipment_equinor",unitType:"time",from:"s",to:"h"},bi={label:"Open Hole Tripping In Connection Time",key:"tripping_in_connection_time_open_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},ki={label:"Cased Hole Tripping In Connection Time",key:"tripping_in_connection_time_cased_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},vi={label:"Entire Hole Tripping In Connection Time",key:"tripping_in_connection_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},Ri={label:"Open Hole Tripping Out Connection Time",key:"tripping_out_connection_time_open_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},Ci={label:"Cased Hole Tripping Out Connection Time",key:"tripping_out_connection_time_cased_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},Mi={label:"Entire Hole Tripping Out Connection Time",key:"tripping_out_connection_average",to:"min",from:"s",unitType:"time",convertForMultiRigs:o,category:p.tripping_connection_group},Fi={label:"Total Variance",key:"total_variance_hal",isBiggestBest:!1,to:"h",from:"s",unitType:"time",convertForMultiRigs:o,category:p.drilling_group,allowNegativeValue:!0},Bi={label:"Target Formation",key:"formation"},Hi={label:"Mud Type",key:"mud_type"};export{Oe as achieve_frac_design_injection_rate_timelog_hal,ce as bha_count,Re as bop_pressure_function_test_timelog_hal,Ne as bop_test_equinor,Ee as bop_wellhead_xmt_nu_nd_equinor,ve as bop_wellhead_xmt_nu_nd_timelog_hal,B as bottom_to_slips_average,se as build_rate,ri as cementing_time_equinor,oe as circulating_time,ee as cost_per_ft,ie as cost_per_lat_ft,ae as cumulative_tortuosity,Je as drill_fit_lot_equinor,qe as drill_fit_lot_timelog_hal,s as drilled_feet_rotary,u as drilled_feet_rotary_percentage,a as drilled_feet_slide,m as drilled_feet_slide_percentage,M as drilling_connection_average,y as drilling_percentage,k as drilling_time_rotary,v as drilling_time_slide,xe as drillout_casing_shoe_track_equinor,Fe as drillout_casing_shoe_track_timelog_hal,b as feet_per_day,_e as gross_time,x as gross_tripping_in_speed,X as gross_tripping_in_speed_bha,j as gross_tripping_in_speed_cased,J as gross_tripping_in_speed_cased_bha,A as gross_tripping_in_speed_open,z as gross_tripping_in_speed_open_bha,Z as gross_tripping_in_speed_total,de as gross_tripping_in_time_cased,he as gross_tripping_in_time_open,K as gross_tripping_out_speed_bha,Y as gross_tripping_out_speed_cased_bha,Q as gross_tripping_out_speed_open_bha,$ as gross_tripping_out_speed_total,_ as hole_depth,g as hole_depth_change,Ce as install_retrieve_wear_bushing_timelog_hal,Ge as install_wear_bushing_equinor,Qe as land_test_casing_hanger_equinor,Ae as ld_bha_equinor,mi as ld_cement_stand_equinor,ci as ld_dhpg_equinor,hi as ld_dhsv_equinor,fi as ld_gaslift_equipment_equinor,ei as ld_wireline_cased_hole_equinor,Ze as ld_wireline_open_hole_equinor,ti as logging_time_ch_equinor,oi as logging_time_oh_equinor,je as mu_bha_equinor,ui as mu_cement_stand_equinor,yi as mu_dhpg_equinor,di as mu_dhsv_equinor,Ti as mu_gaslift_equipment_equinor,ni as mu_hanger_equinor,ii as mu_shoetrack_equinor,$e as mu_wireline_cased_hole_equinor,Ye as mu_wireline_open_hole_equinor,Hi as mud_type,ai as nipple_down_bop_equinor,si as nipple_up_bop_equinor,te as npt,Le as nu_nd_diverter_timelog_equinor,be as nu_nd_diverter_timelog_hal,C as on_bottom_percentage,R as on_bottom_time,Me as p_u_l_d_bha_timelog_hal,gi as prep_to_pooh_equinor,li as prepare_for_cementing_equinor,Ke as pressure_test_casing_liner_equinor,De as pressure_test_timelog_hal,_i as pull_landing_string_equinor,q as pumps_on_to_bottom_average,we as rd_casing_handling_equipment_equinor,Ve as retrieve_wear_bushing_equinor,c as rop,f as rop_gross,T as rop_net,d as rop_rotary,h as rop_slide,Ue as ru_casing_handling_equipment_equinor,ke as ru_rd_casing_handling_equip_timelog_hal,Pe as ru_rd_frac_head_timelog_hal,We as ru_rd_lubricator_perf_guns_timelog_hal,Se as ru_rd_mpd_system_or_rcd_timelog_hal,Ie as ru_rd_wireline_timelog_hal,pi as run_landing_string_equinor,Xe as slip_cut_equinor,Be as slip_cut_timelog_hal,H as slips_to_bottom_average,V as slips_to_slips,ye as slips_to_slips_count,pe as spud_to_landing_point,ne as spud_to_rig_release_time,re as spud_to_target,le as spud_to_total_depth_time,ze as survey_time_equinor,He as survey_time_timelog_hal,Bi as target_formation,Fi as total_variance_hal,me as tripping_connection_count,vi as tripping_in_connection_average,Te as tripping_in_connection_time,E as tripping_in_connection_time_cased,ki as tripping_in_connection_time_cased_average,bi as tripping_in_connection_time_open_average,D as tripping_in_speed,O as tripping_in_speed_cased,I as tripping_in_speed_open,w as tripping_in_time,L as tripping_in_time_cased,U as tripping_in_time_open,G as tripping_in_time_with_connection,N as tripping_in_time_with_connection_open,Mi as tripping_out_connection_average,fe as tripping_out_connection_time,Ci as tripping_out_connection_time_cased_average,Ri as tripping_out_connection_time_open_average,S as tripping_out_speed,P as tripping_out_speed_cased,W as tripping_out_speed_open,ge as turn_rate,F as weight_to_weight_average,ue as weight_to_weight_count};
|
|
2
2
|
//# sourceMappingURL=metricsConfig.js.map
|