Skip to content

Commit

Permalink
Merge branch 'app' into app-publish
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscant committed Jun 26, 2023
2 parents 1182be3 + 743571e commit 0c9e022
Show file tree
Hide file tree
Showing 124 changed files with 326 additions and 149 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "org.ilovefreegle.direct"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1202
versionName "3.0.2"
versionCode 1203
versionName "3.0.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
12 changes: 6 additions & 6 deletions api/BaseAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useAuthStore } from '~/stores/auth'
import { useMobileStore } from '~/stores/mobile'
import { useMiscStore } from '~/stores/misc'

let timer = 0
// let timer = 0

// We add fetch retrying.
// Note that $fetch and useFetch cause problems on Node v18, so we don't use them.
Expand Down Expand Up @@ -270,11 +270,11 @@ export default class BaseAPI {
}

async $requestv2(method, path, config, logError = true, body = null) {
timer++
const timerLabel = path + ' api-' + timer
// timer++
// const timerLabel = path + ' api-' + timer

console.log('Start ', timerLabel)
console.time(timerLabel)
// console.log('Start ', timerLabel)
// console.time(timerLabel)

let status = null
let data = null
Expand Down Expand Up @@ -404,7 +404,7 @@ export default class BaseAPI {
)
}

console.timeEnd(timerLabel)
// console.timeEnd(timerLabel)

return data
}
Expand Down
3 changes: 2 additions & 1 deletion api/ChatAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ export default class ChatAPI extends BaseAPI {
return this.$getv2(`/chat/${chatid}/message`)
}

async listChats(since, search, logError) {
async listChats(since, search, logError, empty) {
return await this.$getv2(
'/chat',
{
since,
search,
empty,
},
logError
)
Expand Down
33 changes: 20 additions & 13 deletions components/AdaptiveMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,24 +132,30 @@
</b-input-group>
</div>
</div>
<div
v-if="
<NoticeMessage v-if="noneFound">
<p>
Sorry, we didn't find anything. Things come and go quickly, though,
so you could try later. Or you could:
</p>
<GiveAsk class="bg-info" />
</NoticeMessage>
<NoticeMessage
v-else-if="
mapVisible && !postsVisible && messagesOnMap && messagesOnMap.length
"
class="d-flex justify-content-center mt-1 mb-1"
variant="info"
>
<NoticeMessage variant="info">
<v-icon icon="angle-double-down" class="pulsate" />
Scroll down to see
<span v-if="searchOn"
>results for "<strong>{{ searchOn }}</strong
>"</span
><span v-else>the posts</span>.
<v-icon icon="angle-double-down" class="pulsate" />
</NoticeMessage>
</div>
<v-icon icon="angle-double-down" class="pulsate" />
Scroll down to see
<span v-if="searchOn"
>results for "<strong>{{ searchOn }}</strong
>"</span
><span v-else>the posts</span>.
<v-icon icon="angle-double-down" class="pulsate" />
</NoticeMessage>
<MessageList
v-model:visible="postsVisible"
v-model:none="noneFound"
:selected-group="selectedGroup"
:selected-type="selectedType"
:messages-for-list="filteredMessages"
Expand Down Expand Up @@ -390,6 +396,7 @@ export default {
],
selectedGroup: 0,
context: null,
none: false,
}
},
computed: {
Expand Down
2 changes: 2 additions & 0 deletions components/AddToCalendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export default {
},
methods: {
async download(e) {
// https://www.npmjs.com/package/save-file
console.log("AddToCalendar download")
e.preventDefault()
e.stopPropagation()
const blob = new Blob([this.ics], { type: 'text/calendar;charset=utf-8' })
Expand Down
13 changes: 9 additions & 4 deletions components/ChatHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
v-if="chat && (chat.chattype !== 'User2User' || otheruser?.info)"
class="outer position-relative"
>
<div class="nameinfo pt-1 pb-1 pl-1" @click="showInfo">
<div class="nameinfo pt-1 pb-1 pl-1">
<ProfileImage
v-if="chat.icon"
:image="chat.icon"
class="pr-1 profile"
class="pr-1 profile clickme"
is-thumbnail
size="xl"
border
@click="showInfo"
/>
<div class="font-weight-bold black text--large name pl-1">
<div class="name font-weight-bold black text--large pl-1">
{{ chat.name }}
</div>
<div
Expand Down Expand Up @@ -45,6 +46,7 @@
<strong class="ml-1">{{ replytime }}</strong
>.
</div>
<br class="d-block d-md-none" />
<div v-if="milesaway" class="d-inline d-md-block">
About <strong>{{ milesstring }}</strong
>.
Expand Down Expand Up @@ -387,13 +389,16 @@ export default {
}
.userinfo {
grid-column: 2 / 4;
grid-column: 1 / 4;
grid-row: 2 / 3;
color: $colour-info-fg;
padding-top: 0.5rem;
@include media-breakpoint-up(md) {
grid-row: 1 / 2;
grid-column: 2 / 4;
padding-top: 2rem;
padding-left: 0.25rem;
}
}
}
Expand Down
5 changes: 4 additions & 1 deletion components/ChatListEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
<SupporterInfo v-if="chat.supporter" class="mr-3 mb-1 small" />
</div>
<div class="small text-muted" :title="dateFormatted">
{{ timeago(chat.lastdate) }}
<span v-if="chat.lastdate">
{{ timeago(chat.lastdate) }}
</span>
<span v-else> &nbsp; </span>
</div>
<div>
<b-badge v-if="chat.replyexpected" variant="danger">
Expand Down
10 changes: 10 additions & 0 deletions components/ChatMessagePromised.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@
</h4>
</nuxt-link>
<AddToCalendar v-if="tryst" :ics="tryst.ics" class="mr-2" />
<notice-message
v-if="refmsg.outcomes?.length || refmsg.deleted"
class="mt-2 mb-2"
>
<v-icon icon="info-circle" />
<span v-if="refmsg.type === 'Offer'">
This is no longer available.
</span>
<span v-else> They are no longer looking for this. </span>
</notice-message>
</b-card-title>
<b-card-text>
<div :class="emessage ? 'media-body chatMessage' : 'media-body'">
Expand Down
6 changes: 2 additions & 4 deletions components/ChatMessageSummary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@
</div>
</div>
<notice-message
v-if="
(message.outcomes && message.outcomes.length) || message.deleted
"
v-if="message.outcomes?.length || message.deleted"
class="mt-2 mb-2"
>
<v-icon icon="info-circle" />
Expand All @@ -45,7 +43,7 @@
</span>
<span v-else> They are no longer looking for this. </span>
</notice-message>
<div v-if="message.promised">
<div v-else-if="message.promised">
<div v-if="message.fromuser === myid">
<notice-message>
<div v-if="promisedToThem">
Expand Down
4 changes: 2 additions & 2 deletions components/EmailBelongsToSomeoneElse.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<NoticeMessage>
<p>
You are logged in
You are logged in with
<!-- eslint-disable-next-line -->
<strong v-if="ours">with {{ ours }}</strong><strong v-else>as <v-icon icon="hashtag" class="text-muted fa-0-8x" />{{ myid }}</strong>, but <strong>{{ theirs }}</strong> belongs to another account.
<strong v-if="ours">{{ ours }}</strong><strong v-else>as <v-icon icon="hashtag" class="text-muted fa-0-8x" />{{ myid }}</strong>, but <strong>{{ theirs }}</strong> belongs to another account.
</p>
<p>
If they are both yours, you can ask the volunteers to merge your accounts
Expand Down
16 changes: 14 additions & 2 deletions components/GroupHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@
</div>
</div>
<div class="group-description">
<p v-if="!group.description">
<p v-if="!description">
Give and get stuff for free with {{ group.namedisplay }}. Offer things
you don't need, and ask for things you'd like. Don't just recycle -
reuse with Freegle!
</p>
<!-- eslint-disable-next-line -->
<span v-if="group.description" v-html="group.description"/>
<span v-else="description" v-html="description"/>
</div>
<div v-if="showGiveFind" class="d-flex justify-content-between flex-wrap">
<b-button to="/give" class="mt-1" size="lg" block variant="primary">
Expand Down Expand Up @@ -188,6 +188,18 @@ export default {
amAMember() {
return this.authStore?.member(this.group?.id)
},
description() {
let description = this.group?.description
if (description) {
// Remove some whitespace which appears in some group descriptions.
description = description.replace(/<p><br><\/p>/g, '')
description = description.replace(/<p><\/p>/g, '')
}
console.log('Return', description)
return description
},
},
methods: {
async leave() {
Expand Down
12 changes: 10 additions & 2 deletions components/IsochronePostMapAndList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,15 @@
</b-input-group>
</div>
</div>
<NoticeMessage v-if="noneFound">
<p>
Sorry, we didn't find anything. Things come and go quickly, though,
so you could try later. Or you could:
</p>
<GiveAsk class="bg-info" />
</NoticeMessage>
<div
v-if="!postsVisible && messagesOnMap?.length"
v-else-if="!postsVisible && messagesOnMap?.length"
class="d-flex justify-content-center mt-1 mb-1"
>
<NoticeMessage variant="info">
Expand All @@ -140,11 +147,11 @@
<v-icon icon="angle-double-down" class="pulsate" />
</NoticeMessage>
</div>

<h2 class="visually-hidden">List of wanteds and offers</h2>
<MessageList
v-if="updatedMessagesOnMap || messagesOnMap.length"
v-model:visible="postsVisible"
v-model:none="noneFound"
:selected-group="selectedGroup"
:selected-type="selectedType"
:messages-for-list="filteredMessages"
Expand Down Expand Up @@ -321,6 +328,7 @@ export default {
],
selectedGroup: null,
context: null,
noneFound: false,
}
},
computed: {
Expand Down
2 changes: 1 addition & 1 deletion components/JobOne.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default {
return val
.replace(/\\n/g, '\n')
.replace(/<br>/g, '\n')
.replace('£', '£')
.replace(/£/g, '£')
.trim()
.normalize('NFD')
.replace(/[\u0300-\u036F]/g, '')
Expand Down
23 changes: 16 additions & 7 deletions components/LoginModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@
<template #title>
<h2>Let's get freegling!</h2>
</template>
<div v-if="signUp" class="d-flex justify-content-around mb-2">
<b-button
variant="link"
class="font-weight-bold pl-1 py-0 border-0 align-top d-block d-md-none"
@click="clickShowSignIn"
>
Already a freegler? Log in
</b-button>
</div>
<p v-if="signUp" class="text-center">
You'll get emails. Name, approximate location, and profile picture are
public - you can hide your real name and picture from Settings. Logging in
Expand Down Expand Up @@ -197,22 +206,22 @@
<p class="mb-0 text-center">
<b-button
variant="link"
class="pl-1 pr-0 py-0 border-0 align-top"
class="ps-1 pe-0 py-0 border-0 align-top"
@click="clickShowSignUp"
>
New freegler? Register
</b-button>
</p>
</div>
<p v-if="signUp" class="text-center font-weight-bold">
<div v-if="signUp" class="d-flex justify-content-around">
<b-button
variant="link"
class="font-weight-bold pl-1 py-0 border-0 align-top"
class="font-weight-bold pl-1 py-0 border-0 align-top d-none d-md-block"
@click="clickShowSignIn"
>
Already a freegler? Log in
</b-button>
</p>
</div>
</b-form>
</div>
</div>
Expand Down Expand Up @@ -924,7 +933,7 @@ $color-apple: #000000;
.social-button {
display: flex;
align-items: center;
min-width: 250px;
min-width: 315px;
border-radius: 3px;
padding: 0;
margin: 0 auto 20px;
Expand Down Expand Up @@ -964,9 +973,9 @@ $color-apple: #000000;
.social-button--google {
border: 2px solid $color-google;
background-color: #dadce0;
background-color: $color-white;
width: 100%;
min-height: 44px;
min-height: 47px;
}
.social-button--google-app {
border: 2px solid $color-google;
Expand Down
1 change: 0 additions & 1 deletion components/MessageExpanded.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
class="messagemap"
:height="150"
/>
<div v-else style="height: 150px" />
</div>
<MessageHistoryExpanded :id="id" class="d-block d-md-none mt-2 mt-md-0" />
<MessageReplySection
Expand Down
Loading

0 comments on commit 0c9e022

Please sign in to comment.