Skip to content

Instantly share code, notes, and snippets.

// ส่วนข้อความขึ้นต้น Task List
const changeHead = (boardName: string, changeDate: string) => ([
{
"type": "text",
"text": `ข้อมูล Change ของ ${boardName} ณ.วันที่ ${changeDate}`,
"size": "xs",
"color": "#8C8C8C",
},
])
export const webhookLINE = functions.region(REGION).https.onRequest( async(req, res) => {
console.log('🚀 Start Webhook!!', JSON.stringify(req.body) )
if(!req.body.events) { res.status(200).end()}
const event = req.body.events[0]
if(typeof(event) === 'undefined') { res.status(200).end()}
try {
await util_line.verify_signature(req, res)
let replyMessage: any = null
// ส่วน Carousel
const boardMain = (boardItems: any) => ([{
"type": "flex",
"altText": "My Board",
"contents": {
"type": "carousel",
"contents": boardItems,
},
}])
{
"model": {
"name": "Test",
"id": "5e9460..........cbab52c1",
},
"action": {
"appCreator": null,
"data": {
"card": {
"name": "card2",
export const webhookTrello = functions.region(REGION).https.onRequest( async(req, res) => {
const action = req.body.action
if(action && action.display.translationKey !== 'unknown') {
const data = {
action: action,
changeTime: Date.now() + 25200000,
}
const board = action.data.board
board.changeTime = Date.now() + 25200000
await firestore.collection('board').doc(action.data.board.id).set(board)
{
"type": "bubble",
"size": "giga",
"body": {
"type": "box",
"layout": "vertical",
"contents": [
{
"type": "box",
"layout": "vertical",
import * as functions from 'firebase-functions';
import * as admin from 'firebase-admin';
admin.initializeApp();
const db = admin.firestore();
// Start writing Firebase Functions
// https://firebase.google.com/docs/functions/typescript
export const helloWorld = functions.https.onRequest((request, response) => {
functions.logger.info("Hello logs!", {structuredData: true});
@PamornT
PamornT / test
Created September 30, 2020 17:40
test
{
"fields": [
{
"fields": [
{
"name": "id",
"type": "string"
},
{
"name": "text",
const REGION = "asia-northeast1"
import * as functions from 'firebase-functions'
exports.importInsight = functions.region(REGION).pubsub.schedule('every 10 minutes').onRun((context) => {
})