Skip to content

Instantly share code, notes, and snippets.

import axios from 'axios'
import { Message, MessageBox } from 'element-ui'
import { UserModule } from '@/store/modules/user'
const service = axios.create({
baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url
timeout: 5000
// withCredentials: true // send cookies when cross-domain requests
})
<template>
<div class="app-container">
<el-dropdown trigger="click" @command="handleSetChannel">
<div>
<el-col :span="4" class="text-center">
<router-link class="pan-btn green-btn" to="/table/complex-table">
Select Channel
</router-link>
</el-col>
</div>
@mazz
mazz / add_playlist.ex
Last active November 9, 2019 23:53
how to make a list of maps/structs
def add_playlist(
ordinal,
basename,
small_thumbnail_path,
med_thumbnail_path,
large_thumbnail_path,
banner_path,
media_category,
localized_titles,
channel_id
@mazz
mazz / channel.ex
Last active November 8, 2019 04:03
defmodule Db.Schema.Channel do
use Ecto.Schema
import Ecto.Changeset
alias Db.Type.ChannelHashId
@derive {Jason.Encoder, only: [
:basename,
:ordinal,
:small_thumbnail_path,
:med_thumbnail_path,
@mazz
mazz / query.ex
Created November 2, 2019 20:01
field `taskcategories` in `select` is a virtual field in schema Db.Schema.Task in query:
query =
from(task in Task,
join: org in Org,
join: rubric in Rubric,
join: coursecode in CourseCode,
join: task_category in TaskCategory,
where: org.uuid == ^org_uuid,
where: org.id == task.org_id,
where: rubric.id == task.rubric_id,
where: coursecode.id == task.coursecode_id,
@mazz
mazz / query.ex
Created November 2, 2019 19:07
query the task_category list and then do this query?
query =
from(task in Task,
join: org in Org,
join: rubric in Rubric,
join: coursecode in CourseCode,
join: task_category in TaskCategory,
where: org.uuid == ^org_uuid,
where: org.id == task.org_id,
where: rubric.id == task.rubric_id,
where: coursecode.id == task.coursecode_id,
@mazz
mazz / query.ex
Created November 1, 2019 01:13
** (Ecto.Query.CompileError) `from_struct(rubric)` is not a valid query expression.
query =
from(task in Task,
join: org in Org,
join: rubric in Rubric,
where: org.uuid == ^org_uuid,
where: org.id == task.org_id,
where: rubric.id == task.rubric_id,
select: %{
title: task.task_title,
uuid: task.uuid,
let databasePool: DatabasePool = self.userService.rawDatabasePool()
let coursesObservation = ValueObservation.tracking { db -> [MbyCourse] in
var courses: [MbyCourse] = []
do {
let mbyCourses = try MbyCourse
.filter(Column("orgUuid") == self.orgUuid.value) // also tried removing this filter line
.filter(Column("archived") == false) // also tried removing this filter line
.fetchAll(db)
courses = mbyCourses
Attaching to faithfulword-phx_proxy_1, faithfulword-phx_postgres_1, faithfulword-phx_faithful_word_1
proxy_1 | time="2019-10-09T02:19:28Z" level=info msg="Traefik version v1.7.18 built on 2019-09-26_01:56:30PM"
proxy_1 | time="2019-10-09T02:19:28Z" level=info msg="\nStats collection is disabled.\nHelp us improve Traefik by turning this feature on :)\nMore details on: https://docs.traefik.io/v1.7/basics/#collected-data\n"
proxy_1 | time="2019-10-09T02:19:29Z" level=info msg="Preparing server http &{Address::80 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc0009500e0} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
proxy_1 | time="2019-10-09T02:19:29Z" level=info msg="Preparing server https &{Address::443 TLS:0xc0004b4480 Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc0009501a0} with readTimeout=0s writeTimeout=0s
public func fetchCourses() -> Single<[MbyCourse]> {
return Single.create { [unowned self] single in
do {
var fetchCourses: [MbyCourse] = []
// let chapters: [Org]!
try self.dbPool.read { db in
fetchCourses = try MbyCourse.fetchAll(db)
}
single(.success(fetchCourses))
} catch {