Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Archived & Relative #327

Merged
merged 5 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions api/routes/profile-features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ export default async function router(schema: Schema, config: Config) {
return res.json({
total: list.total,
items: list.items.map((feat) => {
// Legacy features
feat.properties.archived = true;

return {
id: feat.id,
path: feat.path,
Expand Down Expand Up @@ -110,6 +113,9 @@ export default async function router(schema: Schema, config: Config) {
return coords
})

// Saving to database implies archived
req.body.properties.archived = true;

const feat: Static<typeof ProfileFeature> = {
type: 'Feature',
...(await config.models.ProfileFeature.generate({
Expand Down Expand Up @@ -181,6 +187,9 @@ export default async function router(schema: Schema, config: Config) {
id = ${req.params.id} AND username = ${user.email}
`);

// Legacy features
feat.properties.archived = true;

return res.json({
type: 'Feature',
...feat
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/Admin/AdminConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ import {
import {
IconSettings
} from '@tabler/icons-vue';
import timeDiff from '../../timediff.js';
import timeDiff from '../../timediff.ts';

export default {
name: 'AdminConfig',
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/Admin/AdminServer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ import {
IconLock,
IconSettings
} from '@tabler/icons-vue';
import timeDiff from '../../timediff.js';
import timeDiff from '../../timediff.ts';

export default {
name: 'AdminServer',
Expand Down
55 changes: 39 additions & 16 deletions api/web/src/components/CloudTAK/CoTView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</span>
<div class='col-12'>
<TablerInput
v-if='isUserDrawn'
v-if='feat.properties.archived'
v-model='feat.properties.callsign'
/>
<div
Expand Down Expand Up @@ -231,7 +231,13 @@


<div class='col-12 pb-2'>
<label class='subheader mx-3'>Times</label>
<div class='d-flex mx-3'>
<label class='subheader'>Times</label>
<div class='ms-auto cursor-pointer text-blue subheader'>
<span v-if='time === "relative"' @click='time = "absolute"'>Absolute</span>
<span v-if='time === "absolute"' @click='time = "relative"'>Relative</span>
</div>
</div>
<div class='table-responsive rounded mx-2 py-2 px-2'>
<table class='table card-table table-hover table-vcenter datatable'>
<thead>
Expand All @@ -240,17 +246,24 @@
</thead>
<tbody class='bg-gray-500'>
<tr>
<td>Time</td><td v-text='feat.properties.time' />
<td>Time</td><td v-text='timediff(feat.properties.time)' />
</tr>
<tr>
<td>Start</td><td v-text='feat.properties.start' />
<td>Start</td><td v-text='timediff(feat.properties.start)' />
</tr>
<tr>
<td>Stale</td><td v-text='feat.properties.stale' />
<td>Stale</td><td v-text='timediff(feat.properties.stale)' />
</tr>
</tbody>
</table>
</div>

<TablerToggle
v-if='isArchivable'
label='Archived'
class='mx-2'
v-model='feat.properties.archived'
/>
</div>

<div
Expand All @@ -277,12 +290,11 @@
</div>
</div>

<template v-if='isUserDrawn'>
<CoTStyle
:key='feat.id'
v-model='feat'
/>
</template>
<CoTStyle
v-if='feat.properties.archived'
:key='feat.id'
v-model='feat'
/>

<div
v-if='feat.properties.takv && feat.properties.takv && Object.keys(feat.properties.takv).length'
Expand Down Expand Up @@ -336,6 +348,7 @@ const mapStore = useMapStore();
import {
TablerNone,
TablerInput,
TablerToggle,
TablerDelete,
TablerMarkdown
} from '@tak-ps/vue-tabler';
Expand All @@ -358,6 +371,7 @@ import {
IconBattery3,
IconBattery4
} from '@tabler/icons-vue';
import timediff from '/src/timediff.ts';
import { std } from '/src/std.ts';
import { useCOTStore } from '/src/stores/cots.ts';
const cotStore = useCOTStore();
Expand All @@ -371,7 +385,9 @@ export default {
mission: false,
type: null,
mode: 'default',
icon: null
icon: null,

time: 'relative',
}

const { feat, mission } = this.findCOT();
Expand Down Expand Up @@ -402,9 +418,8 @@ export default {
},
computed: {
...mapState(useProfileStore, ['profile']),
isUserDrawn: function() {
if (!this.feat) return false;
return this.feat.properties.type.toLowerCase().startsWith("u-d");
isArchivable: function() {
return !this.feat.properties.group;
},
center: function() {
if (!this.feat) return [0,0];
Expand All @@ -424,6 +439,13 @@ export default {
}
},
methods: {
timediff: function(date) {
if (this.time === 'relative') {
return timediff(date);
} else {
return date;
}
},
findCOT: function() {
const base = {
mission: null,
Expand Down Expand Up @@ -469,7 +491,7 @@ export default {
}
},
updateStyle: async function() {
if (this.isUserDrawn) {
if (this.feat.properties.archived) {
await cotStore.add(this.feat);
}
},
Expand Down Expand Up @@ -516,6 +538,7 @@ export default {
TablerNone,
TablerInput,
TablerMarkdown,
TablerToggle,
TablerDelete,
IconAmbulance,
IconBattery1,
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/CloudTAK/Menu/Connections.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ import {
import MenuTemplate from '../util/MenuTemplate.vue';
import ConnectionStatus from './../../Connection/Status.vue';
import AgencyBadge from './../../Connection/AgencyBadge.vue';
import timeDiff from '../../../timediff.js';
import timeDiff from '../../../timediff.ts';

export default {
name: 'CloudTAKConnections',
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/CloudTAK/Menu/Files.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ import {
IconRefresh,
} from '@tabler/icons-vue';
import MenuTemplate from '../util/MenuTemplate.vue';
import timeDiff from '../../../timediff.js';
import timeDiff from '../../../timediff.ts';
import { useMapStore } from '/src/stores/map.ts';
import Overlay from '/src/stores/overlays/base.ts';
const mapStore = useMapStore();
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/CloudTAK/Menu/Import.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<script>
import { std, stdurl } from '/src/std.ts';
import Status from '../../util/Status.vue';
import timeDiff from '../../../timediff.js';
import timeDiff from '../../../timediff.ts';
import {
TablerNone,
TablerAlert,
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/CloudTAK/Menu/Imports.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ import {
} from '@tabler/icons-vue';
import MenuTemplate from '../util/MenuTemplate.vue';
import Status from '../../util/Status.vue';
import timeDiff from '../../../timediff.js';
import timeDiff from '../../../timediff.ts';
import Upload from '../../util/Upload.vue';

export default {
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/CloudTAK/Menu/Package.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<script>
import { std, stdurl } from '/src/std.ts';
import Share from '../util/Share.vue';
import timeDiff from '../../../timediff.js';
import timeDiff from '../../../timediff.ts';
import {
TablerAlert,
TablerDelete,
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/CloudTAK/Menu/Packages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ import {
IconPlus,
IconRefresh,
} from '@tabler/icons-vue';
import timeDiff from '../../../timediff.js';
import timeDiff from '../../../timediff.ts';
import ChannelInfo from '../util/ChannelInfo.vue';
import NoChannelsInfo from '../util/NoChannelsInfo.vue';
import Upload from '../../util/Upload.vue';
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/Connection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
import { std } from '/src/std.ts';
import PageFooter from './PageFooter.vue';
import ConnectionStatus from './Connection/Status.vue';
import timeDiff from '../timediff.js';
import timeDiff from '../timediff.ts';
import {
IconRobot,
IconRefresh,
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/ConnectionSink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<script>
import { std } from '/src/std.ts';
import PageFooter from './PageFooter.vue';
import timeDiff from '../timediff.js';
import timeDiff from '../timediff.ts';
import {
IconRefresh,
IconSettings
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/Connections.vue
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ import { std, stdurl } from '/src/std.ts';
import PageFooter from './PageFooter.vue';
import ConnectionStatus from './Connection/Status.vue';
import AgencyBadge from './Connection/AgencyBadge.vue';
import timeDiff from '../timediff.js';
import timeDiff from '../timediff.ts';
import {
TablerPager,
TablerBreadCrumb,
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/Data.vue
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
<script>
import { std } from '/src/std.ts';
import PageFooter from './PageFooter.vue';
import timeDiff from '../timediff.js';
import timeDiff from '../timediff.ts';
import {
TablerLoading,
TablerMarkdown,
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/Layer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ import { std } from '/src/std.ts';
import PageFooter from './PageFooter.vue';
import LayerStatus from './Layer/utils/Status.vue';
import cronstrue from 'cronstrue';
import timeDiff from '../timediff.js';
import timeDiff from '../timediff.ts';
import {
TablerBreadCrumb,
TablerMarkdown,
Expand Down
19 changes: 0 additions & 19 deletions api/web/src/timediff.js

This file was deleted.

33 changes: 33 additions & 0 deletions api/web/src/timediff.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
export default function(updated: string | number): string {
if (typeof updated === 'string') {
updated = +new Date(updated)
}

const now = +new Date();

const msPerMinute = 60 * 1000;
const msPerHour = msPerMinute * 60;
const msPerDay = msPerHour * 24;
const msPerMonth = msPerDay * 30;
const msPerYear = msPerDay * 365;

if (updated < now) {
const elapsed = now - updated;

if (elapsed < msPerMinute) return Math.round(elapsed/1000) + ' seconds ago';
if (elapsed < msPerHour) return Math.round(elapsed/msPerMinute) + ' minutes ago';
if (elapsed < msPerDay ) return Math.round(elapsed/msPerHour ) + ' hours ago';
if (elapsed < msPerMonth) return '~' + Math.round(elapsed/msPerDay) + ' days ago';
if (elapsed < msPerYear) return '~' + Math.round(elapsed/msPerMonth) + ' months ago';
return '~' + Math.round(elapsed/msPerYear ) + ' years ago';
} else {
const elapsed = updated - now;

if (elapsed < msPerMinute) return 'in ' + Math.round(elapsed/1000) + ' seconds';
if (elapsed < msPerHour) return 'in ' + Math.round(elapsed/msPerMinute) + ' minutes';
if (elapsed < msPerDay ) return 'in ' + Math.round(elapsed/msPerHour ) + ' hours';
if (elapsed < msPerMonth) return 'in ~' + Math.round(elapsed/msPerDay) + ' days';
if (elapsed < msPerYear) return 'in ~' + Math.round(elapsed/msPerMonth) + ' months';
return 'in ~' + Math.round(elapsed/msPerYear ) + ' years';
}
}
36 changes: 31 additions & 5 deletions tasks/data/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,25 +1,51 @@
FROM ghcr.io/osgeo/gdal:alpine-normal-3.9.2
FROM ubuntu:24.04 as build

ENV HOME=/home/etl
WORKDIR $HOME

RUN apk add sqlite sqlite-dev nodejs-current npm git make bash g++ zlib-dev curl
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends apt-utils tzdata \
&& apt-get install -y build-essential curl cmake autoconf libtool software-properties-common git libsqlite3-dev \
&& apt-get install -y python3 python3-pip python3-dev python3-setuptools

RUN export NODEV='22.8.0' \
&& curl "https://nodejs.org/dist/v${NODEV}/node-v${NODEV}-linux-x64.tar.gz" | tar -xzv > /dev/null \
&& cp ./node-v${NODEV}-linux-x64/bin/node /usr/bin/ \
&& ./node-v${NODEV}-linux-x64/bin/npm install -g npm

RUN npm install --global aws-lambda-ric

# PMTiles: https://github.com/protomaps/go-pmtiles/releases
RUN curl -L https://github.com/protomaps/go-pmtiles/releases/download/v1.20.0/go-pmtiles_1.20.0_Linux_x86_64.tar.gz > /tmp/pmtiles.tar.gz && \
tar -xzvf /tmp/pmtiles.tar.gz && \
mv pmtiles /usr/bin/
mv pmtiles /usr/local/bin/

# Download and install Tippecanoe
# TippeCanoe: https://github.com/felt/tippecanoe/releases
RUN git clone -b 2.60.0 --depth 1 https://github.com/felt/tippecanoe.git /tmp/tippecanoe && \
cd /tmp/tippecanoe && \
make && \
PREFIX=/usr/local make install && \
rm -rf /tmp/tippecanoe

FROM ubuntu:24.04 as runtime

COPY --from=0 /usr/local/bin/pmtiles* /usr/local/bin/
COPY --from=0 /usr/local/bin/tippecanoe* /usr/local/bin/
COPY --from=0 /usr/local/bin/tile-join /usr/local/bin/

RUN apt-get update \
&& apt-get install -y curl gdal-bin

RUN export NODEV='22.8.0' \
&& curl "https://nodejs.org/dist/v${NODEV}/node-v${NODEV}-linux-x64.tar.gz" | tar -xzv > /dev/null \
&& cp ./node-v${NODEV}-linux-x64/bin/node /usr/bin/ \
&& ./node-v${NODEV}-linux-x64/bin/npm install -g npm

COPY ./ $HOME/task
WORKDIR $HOME/task

RUN npm install

CMD ["npm", "start"]
#ENTRYPOINT ["/usr/local/bin/npx", "aws-lambda-ric"]
#CMD ["app.handler"]

Loading
Loading