-
-
Save jorblad/510fea170745762c0c02c3fd071db006 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script setup> | |
| import { ref, inject } from 'vue'; | |
| import { formatRFC3339, uuidv4 } from "assetlink-plugin-api"; | |
| const assetLink = inject('assetLink'); | |
| const loadingUnitTerm = ref(true); | |
| let inchesUnitTerm = undefined; | |
| const loadUnitTerm = async () => { | |
| await assetLink.booted; | |
| const UNIT_NAME = "mm"; | |
| const findUnitTerm = async entitySource => { | |
| const results = await entitySource.query(q => q | |
| .findRecords('taxonomy_term--unit') | |
| .filter({ attribute: 'name', op: 'equal', value: UNIT_NAME })); | |
| return results.flatMap(l => l).find(a => a); | |
| }; | |
| inchesUnitTerm = await findUnitTerm(assetLink.entitySource.cache); | |
| if (!inchesUnitTerm) { | |
| inchesUnitTerm = await findUnitTerm(assetLink.entitySource); | |
| } | |
| if (!inchesUnitTerm) { | |
| const unitTermToCreate = { | |
| type: 'taxonomy_term--unit', | |
| id: uuidv4(), | |
| attributes: { | |
| name: UNIT_NAME, | |
| }, | |
| }; | |
| inchesUnitTerm = await assetLink.entitySource.update( | |
| (t) => t.addRecord(unitTermToCreate), | |
| {label: `Add '${UNIT_NAME}' unit`}); | |
| } | |
| loadingUnitTerm.value = false; | |
| }; | |
| loadUnitTerm(); | |
| const inchesOfRain = ref(0); | |
| const onSubmit = (inchesOfRain) => { | |
| if (!inchesOfRain || inchesOfRain <= 0) { | |
| return; | |
| } | |
| const rainfallQuantity = { | |
| type: 'quantity--standard', | |
| id: uuidv4(), | |
| attributes: { | |
| measure: 'count', | |
| value: { | |
| decimal: `${inchesOfRain}`, | |
| }, | |
| }, | |
| relationships: { | |
| units: { | |
| data: { | |
| type: inchesUnitTerm.type, | |
| id: inchesUnitTerm.id, | |
| } | |
| }, | |
| }, | |
| }; | |
| const observationLog = { | |
| type: 'log--observation', | |
| attributes: { | |
| name: `Measured ${inchesOfRain} mm of rainfall`, | |
| timestamp: formatRFC3339(new Date()), | |
| status: "done", | |
| }, | |
| relationships: { | |
| quantity: { | |
| data: [ | |
| { | |
| type: rainfallQuantity.type, | |
| id: rainfallQuantity.id, | |
| } | |
| ] | |
| }, | |
| }, | |
| }; | |
| assetLink.entitySource.update( | |
| (t) => [ | |
| t.addRecord(rainfallQuantity), | |
| t.addRecord(observationLog), | |
| ], | |
| {label: `Record rainfall observation`}); | |
| }; | |
| </script> | |
| <template alink-route[com.example.farmos_asset_link.routes.v0.observe_rainfall_page]="/observe-rainfall"> | |
| <q-page padding class="column text-left"> | |
| <h4>How much rain was there?</h4> | |
| <div class="q-pa-md"> | |
| <q-slider | |
| v-model="inchesOfRain" | |
| :min="0" | |
| :max="100" | |
| :step="1" | |
| snap | |
| label | |
| /> | |
| <q-input | |
| v-model.number="inchesOfRain" | |
| type="number" | |
| filled | |
| suffix="mm" | |
| /> | |
| </div> | |
| <div class="q-pa-sm q-gutter-sm row justify-end"> | |
| <q-btn color="secondary" label="Cancel" @click="onDialogCancel" /> | |
| <q-btn | |
| color="primary" | |
| label="Record" | |
| @click="() => onSubmit(inchesOfRain)" | |
| :disabled="inchesOfRain <= 0" | |
| /> | |
| </div> | |
| <q-inner-loading :showing="loadingUnitTerm"></q-inner-loading> | |
| </q-page> | |
| </template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment