Sponsored Content
Top Forums Web Development Turning jQuery Code into Vue.js Post 303025735 by Neo on Saturday 10th of November 2018 09:02:44 PM
Old 11-10-2018
Note:

The interesting news is that we are now back on the cutting edge of web dev technology with Vue.

The good news is that Vue.js web dev is both powerful and really fun.

I encourage others to learn Vue with us and help us build new components for the forums or for your business or or personal web sites.

OBTW: Here is the current working code with setInterval(). Yes, we could move this function inside of vue (or alias vm.$children["0"]), but I am still looking for a better solution where setInterval() is not required and we can use vue to bind directly to changes in an external var (changes in the dev console, not when a page reloads).

Code:
Vue.component("unix-navbar", {
  template: `<div class="neo-table-border vue-navbar"> 
	<div  class="vue-site-info">
                <a class="vue-site-link" :href="url">{{name}}</a>
              </div>
              <div id="avatar"  v-html="theavatar" @click="OpenMemberPanel()"></div>
            </div>`,

  data() {
    return {
      name: "The UNIX and Linux Forums",
      url: "https://www.unix.com/",
      id: vbuserId,
      avatar: vbtheURL
    };
  },
  computed: {
    theavatar: function() {
      if (this.id > 0)
        return '<img id="avatar-img" src="' + this.avatar + '"></img>';
      else return '<i id="avatar-icon" class="fas fa-user"></span>';
    }
  },
  methods: {
    OpenMemberPanel() {
      if (this.id > 0) openMemberPanel();
      else openLogin();
    }
  }
});

var vm = new Vue({
  el: "#vue-navbar"
});

var timerID = setInterval(getUpdate, 1000);
function getUpdate() {
  vm.$children["0"].id = vbuserId;
}

Also note that it has been nearly 24 hours and no one has responded to my question on this over in the vue forums, but it's the weekend so like here, maybe people are offline:

Bind Vue.js variable to external Javascript variable for reactivity - Get Help - Vue Forum
 

6 More Discussions You Might Find Interesting

1. What is on Your Mind?

JQuery and CSS Flex Code for Responsive WOL Page

I have just wrote this jQuery to the WOL page, so the table of users on line will not need scrollbars and will instead transform into a responsive table: <script> jQuery(document).ready(function (){ jQuery("#neo-who-flex-tcat"). css({"display":"flex","flex-flow":"row wrap", ... (0 Replies)
Discussion started by: Neo
0 Replies

2. What is on Your Mind?

JQuery and CSS Flex Code for Responsive Forum Home Page

So far, I have completed making the home page more responsive (except for the forum stats at the top and the WOL box at the bottom, they still use scroll bars). xevV3_iZ8-s For full screen use the link below and set your YT resolution to 1080p60 HD https://youtu.be/xevV3_iZ8-s Here is... (1 Reply)
Discussion started by: Neo
1 Replies

3. What is on Your Mind?

JQuery to Add Code Tags to Selected Text

Hey. Someone find or write some jQuery code where we can select text with our mouse and then click or double click the highlighted / selected text and then it will wrap code tags around the highlighted text (in our editors). :) (0 Replies)
Discussion started by: Neo
0 Replies

4. Web Development

Simple Vue.js Component to Redirect to External Web Page Using Vue Router

Vue Router has some quirks and on of the quirks is that it is not reliable when adding external links using the vue-router library. After struggling with many solutions, I have found that creating a simple Vue.js component like this one seems to work the best (so far): Component Example: ... (0 Replies)
Discussion started by: Neo
0 Replies

5. Web Development

Vue JS 2 Tutorial by The Net Ninja: A Recommended Vue.js Video Tutorial Series

A number of people have asked me how to get started with Vue.js and my reply before today was to Google "Vue.js". That has changed and my recommendation to anyone who wants to learn the fastest growing, easiest to learn and use Vue.js web dev framework is to watch this video tutorial series: ... (0 Replies)
Discussion started by: Neo
0 Replies

6. Web Development

Vue.js component: Beautiful code highlighter

Sooner than later I will render forum discussions in Vue.js to complement the standard way of showing forum threads. Today, I ran across this component, vue-code-highlight Beautiful code syntax highlighting as Vue.js component. https://www.unix.com/members/1-albums225-picture1199.jpg ... (1 Reply)
Discussion started by: Neo
1 Replies
Net::Google::Code(3pm)					User Contributed Perl Documentation				    Net::Google::Code(3pm)

NAME
Net::Google::Code - a simple client library for google code SYNOPSIS
use Net::Google::Code; my $project = Net::Google::Code->new( project => 'net-google-code' ); $project->load; # load its metadata, e.g. summary, owners, members, etc. print join(', ', @{ $project->owners } ); # return a Net::Google::Code::Issue object, of which the id is 30 $project->issue( id => 30 ); # return a Net::Google::Code::Download object, of which the file name is # 'FooBar-0.01.tar.gz' $project->download( name => 'FooBar-0.01.tar.gz' ); # return a Net::Google::Code::Wiki object, of which the page name is 'Test' $project->wiki( name => 'Test' ); # loads all the downloads $project->load_downloads; my $downloads = $project->downloads; # loads all the wikis $project->load_wikis; my $wikis = $project->wikis; DESCRIPTION
Net::Google::Code is a simple client library for projects hosted in Google Code. Since 0.15, Net::Google::Code offers google's official issues api support. Besides the new "Net::Google::Code::Issue::list", "Net::Google::Code::Issue::Comment::list" and <Net::Googlel::Code::Issue::load_comments> methods, which use the api from start, you can set $Net::Google::Code::Issue::USE_HYBRID to true to load, create and update issue with the api too. But the official api is not function complete yet( e.g. no attachment support, can't merge, etc. ), Net::Google::Code will back to the scraping way to accomplish those stuff. ATTRIBUTES
project the project name email, password user's email and password, used to authenticate base_url the project homepage base_svn_url the project svn url (without trunk) base_feeds_url the project feeds url summary description labels owners members INTERFACE
load load project's home page, and parse its metadata parse acturally do the parse job, for load(); load_downloads load all the downloads, and store them as an arrayref in $self->downloads load_wikis load all the wikis, and store them as an arrayref in $self->wikis issue return a new Net::Google::Code::Issue object, arguments will be passed to Net::Google::Code::Issue's new method. download return a new Net::Google::Code::Download object, arguments will be passed to Net::Google::Code::Download's new method. wiki return a new Net::Google::Code::Wiki object, arguments will be passed to Net::Google::Code::Wiki's new method. DEPENDENCIES
Any::Moose, HTML::TreeBuilder, WWW::Mechanize, Params::Validate XML::FeedPP, DateTime, JSON, URI::Escape, MIME::Types, File::MMagic INCOMPATIBILITIES
None reported. BUGS AND LIMITATIONS
No bugs have been reported. This project is very very young, and api is not stable yet, so don't use this in production, at least for now. AUTHOR
sunnavy "<sunnavy@bestpractical.com>" Fayland Lam "<fayland@gmail.com>" LICENCE AND COPYRIGHT
Copyright 2008-2010 Best Practical Solutions. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-04-26 Net::Google::Code(3pm)
All times are GMT -4. The time now is 05:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy