Compare commits
1 Commits
developmen
...
master
Author | SHA1 | Date |
---|---|---|
reddigriz | 3c26215da3 | 2 years ago |
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 2.5 MiB |
@ -1,46 +0,0 @@
|
|||||||
{
|
|
||||||
"history": [
|
|
||||||
{
|
|
||||||
"id": 1,
|
|
||||||
"text": "🐱⛸️➡️?",
|
|
||||||
"is_user": false,
|
|
||||||
"seen": false,
|
|
||||||
"date": "22/09 12:12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 2,
|
|
||||||
"text": "🐱⛸️➡️?",
|
|
||||||
"is_user": true,
|
|
||||||
"seen": true,
|
|
||||||
"date": "22/09 12:12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 3,
|
|
||||||
"text": "🐱⛸️➡️?",
|
|
||||||
"is_user": false,
|
|
||||||
"seen": true,
|
|
||||||
"date": "22/09 12:12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 4,
|
|
||||||
"text": "🐱⛸️➡️?",
|
|
||||||
"is_user": true,
|
|
||||||
"seen": true,
|
|
||||||
"date": "22/09 12:12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 5,
|
|
||||||
"text": "🐱⛸️➡️?",
|
|
||||||
"is_user": false,
|
|
||||||
"seen": false,
|
|
||||||
"date": "22/09 12:12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 6,
|
|
||||||
"text": "🐱⛸️➡️?",
|
|
||||||
"is_user": true,
|
|
||||||
"seen": true,
|
|
||||||
"date": "22/09 12:12"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69" xmlns:v="https://vecta.io/nano"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>
|
After Width: | Height: | Size: 308 B |
@ -1,12 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="keyboard-word">
|
<div id="ChatHistory">
|
||||||
<p>placeholder word</p>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {},
|
components: {},
|
||||||
|
setup() {},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
@ -0,0 +1,19 @@
|
|||||||
|
<script setup>
|
||||||
|
import Keyboard from "./Keyboard.vue";
|
||||||
|
import ChatHistory from "./ChatHistory.vue";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<ChatHistory />
|
||||||
|
<v-if="writeMessage" Keyboard />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
setup() {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped></style>
|
@ -1,32 +0,0 @@
|
|||||||
<template>
|
|
||||||
<header>
|
|
||||||
<div v-if="headerChat" id="header-chat">
|
|
||||||
<div class="chat-picture">
|
|
||||||
<figure>
|
|
||||||
<img src="chat-picture" alt="The chat picture" />
|
|
||||||
</figure>
|
|
||||||
</div>
|
|
||||||
<div class="chat-name">
|
|
||||||
<h3>{{ chatName }}</h3>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div v-else>
|
|
||||||
<div id="header">
|
|
||||||
<p>Geografia</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
setup() {},
|
|
||||||
props: {
|
|
||||||
ChatPicture: { type: String, default: "" },
|
|
||||||
chatName: { type: String, default: "" },
|
|
||||||
headerChat: { type: Boolean, default: true },
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped></style>
|
|
@ -0,0 +1,17 @@
|
|||||||
|
<template>
|
||||||
|
<div class="msg-composition">
|
||||||
|
<KeyboardWord type="subject" />
|
||||||
|
<KeyboardWord type="object" />
|
||||||
|
<KeyboardWord type="verb" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import KeyboardWord from "./KeyboardWord.vue";
|
||||||
|
export default {
|
||||||
|
components: { KeyboardWord },
|
||||||
|
setup() {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped></style>
|
@ -0,0 +1,15 @@
|
|||||||
|
<template>
|
||||||
|
<div class="msg-composition">
|
||||||
|
<KeyboardWord />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import KeyboardWord from "./KeyboardWord.vue";
|
||||||
|
export default {
|
||||||
|
components: { KeyboardWord },
|
||||||
|
setup() {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped></style>
|
@ -1,16 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="keyboard" @click="selectWord">
|
|
||||||
<p>I'm writing hereee</p>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
selectedWord() {
|
|
||||||
this.$emit("selectedWord", "a");
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<style scoped></style>
|
|
@ -1,31 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import Keyboard from "./Keyboard.vue";
|
|
||||||
import KeyboardWord from "./KeyboardWord.vue";
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<KeyboardWord :key="soggetto" @click="test" />
|
|
||||||
<KeyboardWord :key="oggetto" @click="test" />
|
|
||||||
<KeyboardWord :key="verbo" @click="test" />
|
|
||||||
<Keyboard @selectedWord="selectedWord" />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return { focus: "" };
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
test(e) {
|
|
||||||
console.log(e);
|
|
||||||
},
|
|
||||||
selectedWord() {
|
|
||||||
console.log("selectedWord");
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped></style>
|
|
@ -1,31 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import ChatMsg from "./ChatMsg.vue";
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<!-- Modificare la proprieta' css z-index
|
|
||||||
per permettero lo scrolling e una dimensione fissa -->
|
|
||||||
|
|
||||||
<div id="ChatHistory">
|
|
||||||
<ChatMsg
|
|
||||||
v-for="message in $options.demo_messages.history"
|
|
||||||
:key="message.id"
|
|
||||||
:message-text="message.text"
|
|
||||||
:is-user="message.is_user"
|
|
||||||
:message-seen="message.seen"
|
|
||||||
:message-date="message.date"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import demo_messages_json from "@/assets/demo_messages.json";
|
|
||||||
export default {
|
|
||||||
demo_messages: demo_messages_json,
|
|
||||||
props: {
|
|
||||||
chatId: Number,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped></style>
|
|
@ -1,37 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import MessageComposition from "../keyboard/MessageComposition.vue";
|
|
||||||
import ChatHistory from "./ChatHistory.vue";
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!-- Move this button in the header -->
|
|
||||||
<div id="chat-view" v-show="!writeMessage">
|
|
||||||
<button alt="Back" name="Back" @click="this.$emit('hideChat')">←</button>
|
|
||||||
<ChatHistory :chat-id="chatId" />
|
|
||||||
<button
|
|
||||||
alt="write message"
|
|
||||||
name="write-message"
|
|
||||||
@click="this.writeMessage = true"
|
|
||||||
>
|
|
||||||
+
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<MessageComposition
|
|
||||||
v-if="writeMessage"
|
|
||||||
:chat-id="chatId"
|
|
||||||
@hideMessageHistory="this.writeMessage = false"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return { writeMessage: false };
|
|
||||||
},
|
|
||||||
props: { chatId: Number },
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped></style>
|
|
@ -1,7 +1,12 @@
|
|||||||
import { createApp } from "vue";
|
import { createApp } from "vue";
|
||||||
|
import { createPinia } from "pinia";
|
||||||
|
|
||||||
import App from "./App.vue";
|
import App from "./App.vue";
|
||||||
|
|
||||||
import "./assets/main.css";
|
import "./assets/main.css";
|
||||||
|
|
||||||
const app = createApp(App);
|
const app = createApp(App);
|
||||||
|
|
||||||
|
app.use(createPinia());
|
||||||
|
|
||||||
app.mount("#app");
|
app.mount("#app");
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
function updateChats(){
|
|
||||||
//vue local msg store
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
import './errors.json'
|
|
||||||
|
|
||||||
function translateToText(chat_message){
|
|
||||||
console.log(chat_message)
|
|
||||||
}
|
|
||||||
|
|
||||||
function translateToDrawnings(chat_message){
|
|
||||||
console.log(chat_message)
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"errors": {
|
|
||||||
"ER01": {"messageConsole":"ER01 - Message destination unknown ","messageUser":"🚫 ER01! 📞👨💻🙏"}
|
|
||||||
"ER02": {"messageConsole":"ER02 - Message channel unknown ","messageUser":"🚫 ER02! 📞👨💻🙏"}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,8 +0,0 @@
|
|||||||
import './telegram_exit'
|
|
||||||
import './errors.json'
|
|
||||||
|
|
||||||
function send(chat_message) {
|
|
||||||
if (chat_message == 'tg') {
|
|
||||||
telegram_exit.send(chat_message)
|
|
||||||
} //error ER02
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
import { Airgram, Auth, prompt, toObject } from 'airgram'
|
|
||||||
|
|
||||||
const airgram = new Airgram({
|
|
||||||
apiId: process.env.APP_ID | undefined,
|
|
||||||
apiHash: process.env.APP_HASH,
|
|
||||||
command: process.env.TDLIB_COMMAND,
|
|
||||||
logVerbosityLevel: 2
|
|
||||||
})
|
|
||||||
|
|
||||||
airgram.use(new Auth({
|
|
||||||
code: () => prompt(`Please enter the secret code:\n`),
|
|
||||||
phoneNumber: () => prompt(`Please enter your phone number:\n`)
|
|
||||||
}))
|
|
||||||
|
|
||||||
void (async () => {
|
|
||||||
const me = toObject(await airgram.api.getMe())
|
|
||||||
console.log(`[Me] `, me)
|
|
||||||
})
|
|
||||||
|
|
||||||
// Getting all updates
|
|
||||||
airgram.use((ctx, next) => {
|
|
||||||
if ('update' in ctx) {
|
|
||||||
console.log(`[all updates][${ctx._}]`, JSON.stringify(ctx.update))
|
|
||||||
}
|
|
||||||
return next()
|
|
||||||
})
|
|
||||||
|
|
||||||
// Getting new messages
|
|
||||||
airgram.on('updateNewMessage', async ({ update }) => {
|
|
||||||
const { message } = update
|
|
||||||
console.log('[new message]', message)
|
|
||||||
})
|
|
||||||
|
|
||||||
// Getting new messages
|
|
||||||
airgram.on('sendNewMessage', async ({ update }) => {
|
|
||||||
const { message } = update
|
|
||||||
console.log('[new message]', message)
|
|
||||||
})
|
|
@ -1,23 +0,0 @@
|
|||||||
import { ref, onMounted, onUnmounted } from 'vue'
|
|
||||||
import './internetto_exit/internetto_main'
|
|
||||||
import './ccq_exit'
|
|
||||||
import './errors.json'
|
|
||||||
/*
|
|
||||||
ER01 = Errore Rotodona 01 - Message destination unknown
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Internal function - here messages are translated
|
|
||||||
function message_delivery(chat_message) {
|
|
||||||
try {
|
|
||||||
if (chat_message.destination == 'external') {
|
|
||||||
return internetto_exit.send(ccq_exit.translateToText(chat_message))
|
|
||||||
} else if (chat_message.destination == 'internal') {
|
|
||||||
return app.receive(ccq_exit.translateToDrawnings(chat_message))
|
|
||||||
} else {
|
|
||||||
throw errors.E01.messageConsole + chat_message
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.error(e)
|
|
||||||
return e.messageUser
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,24 +0,0 @@
|
|||||||
/*
|
|
||||||
VueRouter inutile fino allo sviluppo dell'handler dei messaggi
|
|
||||||
e solo nel caso si voglia supportare l'uso di url nella versione web
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { createRouter, createWebHashHistory } from "vue-router";
|
|
||||||
|
|
||||||
2; // 1. Define route components.
|
|
||||||
const ChatList = { template: "./components/ChatList.vue" };
|
|
||||||
// const ChatView = { template: "./components/ChatView.vue" };
|
|
||||||
// const MessageComposition = { template: "./components/MessageComposition.vue" };
|
|
||||||
|
|
||||||
// 2. Define some routes
|
|
||||||
const routes = [
|
|
||||||
{ path: "/", component: ChatList },
|
|
||||||
// { path: "/chat_view", component: ChatView },
|
|
||||||
// { path: "/chat_view/write", component: MessageComposition },
|
|
||||||
];
|
|
||||||
|
|
||||||
// 3. Create the router instance and pass the `routes` option
|
|
||||||
export const router = createRouter({
|
|
||||||
history: createWebHashHistory(),
|
|
||||||
routes,
|
|
||||||
});
|
|
Loading…
Reference in New Issue