Connect to v1 server
This commit is contained in:
parent
e9fdba58b3
commit
7daf646488
@ -58,7 +58,6 @@
|
||||
vm = this
|
||||
animes = @$store.state.animes
|
||||
resultado = -1
|
||||
console.log animes
|
||||
for anime in animes
|
||||
console.log "Param is #{@$route.params.nombre}"
|
||||
if anime.link is "/Anime/" + @$route.params.nombre
|
||||
|
@ -52,33 +52,27 @@
|
||||
"https://www.youtube.com/results?search_query=" + (encodeURIComponent "#{nombre} - #{artista}")
|
||||
mounted: ->
|
||||
vm = this
|
||||
fetch "#{this.$store.state.servidor}/op/#{this.anime_ID}",
|
||||
method: "POST"
|
||||
headers:
|
||||
"Content-Type": "application/x-www-form-urlencoded"
|
||||
fetch "#{this.$store.state.servidor2}/op/#{this.anime_ID}"
|
||||
.then (res) ->
|
||||
data = YAML.parse(await res.text())
|
||||
vm.estadoOp =
|
||||
if data.exito
|
||||
vm.ops = data.payload
|
||||
if res.status == 200
|
||||
vm.ops = data
|
||||
1
|
||||
else
|
||||
console.error data.error
|
||||
console.error "Error recuperando OPs", data
|
||||
-1
|
||||
.catch (err) -> console.log "Error :c #{err}"
|
||||
|
||||
fetch "#{this.$store.state.servidor}/ed/#{this.anime_ID}",
|
||||
method: "POST"
|
||||
headers:
|
||||
"Content-Type": "application/x-www-form-urlencoded"
|
||||
fetch "#{this.$store.state.servidor2}/ed/#{this.anime_ID}"
|
||||
.then (res) ->
|
||||
data = YAML.parse(await res.text())
|
||||
vm.estadoEd =
|
||||
if data.exito
|
||||
vm.eds = data.payload
|
||||
if res.status == 200
|
||||
vm.eds = data
|
||||
1
|
||||
else
|
||||
console.error data.error
|
||||
console.error "Error recuperando EDs", data
|
||||
-1
|
||||
.catch (err) -> console.log "Error :c #{err}"
|
||||
#
|
||||
|
@ -45,7 +45,7 @@
|
||||
escala = if escala is 1 then 0.3 else 1
|
||||
), 500
|
||||
|
||||
ruta = if @suscrito then "/n/desubscribir/" else "/n/subscribir/"
|
||||
ruta = @$store.state.servidor + if @suscrito then "/n/desubscribir/" else "/n/subscribir/"
|
||||
|
||||
res = await fetch ruta,
|
||||
method: "POST"
|
||||
|
@ -102,7 +102,6 @@
|
||||
vm.mostrarSpinnerParaCargaDeEps = false
|
||||
vm.datos = opciones.map (opcion) =>
|
||||
episodios = eps.filter (ep) => ep.opcion_id == opcion.opcion_id
|
||||
console.log episodios
|
||||
{ eps: episodios, opcion... }
|
||||
|
||||
vm.datosCorrectos = true
|
||||
|
@ -15,6 +15,7 @@ almacenarEnLocalStorage = (clave, valor, fnActualizar) =>
|
||||
export default new Vuex.Store
|
||||
state:
|
||||
servidor: ""
|
||||
servidor2: "http://localhost:3485"
|
||||
|
||||
animes:
|
||||
if localStorage?
|
||||
|
Loading…
Reference in New Issue
Block a user